@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
  --c-brand: #f58532;
  --c-primary: #056a86;
  --c-secondary: #0089b8;
  --c-gray: #a9a8aa;
  --c-dark: #333;
  --c-black: #000;
  --c-body: #666;
  --c-white: #fff;
  --c-light: #f8f8f8;

  --f-base: 'Ubuntu', sans-serif;
  --n-height: 100px;
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--c-body);
  font-family: var(--f-base);
  line-height: 1.8;
  background-color: white;
  /* background-image: url(../images/back.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right; */
}

/* HEADING */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 400;
}

.heading-m {
  font-size: clamp(30px, 5vw, 80px);
}

.heading-x {
  font-size: clamp(36px, 7vw, 90px);
}

.heading-xl {
  font-size: clamp(44px, 10vw, 120px);
}

.heading-1 {
  font-size: clamp(32px, 6vw, 54px);
}

.heading-2 {
  font-size: clamp(28px, 4vw, 36px);
}

.heading-3 {
  font-size: 20px;
}

.heading-4 {
  font-size: 18px;
  font-weight: 200;
  padding: 0 10px 0 10px;
}

.heading-4 {
  font-size: 13px;
  font-weight: 200;
}

.heading-desc {
  color: var(--c-gray);
  font-weight: 200;
}

/* text */

.primary {
  color: var(--c-primary);
  display: contents;
  font-weight: 440;
}

.secondary {
  color: var(--c-brand);
  display: contents;
  font-weight: 440;
}

/* margin - padding */

.mt-2 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 4rem;
}

a {
  color: var(--c-dark);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: var(--c-brand);
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

section {
  padding: 120px 0 55px 0;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-full {
  max-width: 100%;
  width: 100%;
  margin: none auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.text-right {
  display: flex;
  /* align-items: right; */
  align-self: flex-end;
  padding: 0 2rem 2rem 0;
}

.btn-sm {
  max-width: 140px;
  max-height: 50px;
  font-size: 1rem !important;
  font-weight: 300 !important;
}

.btn {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--c-brand);
  color: var(--c-black);
  font-family: var(--f-base);
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
}

.btn:hover {
  background-color: var(--c-brand);
  color: var(--c-white);
}

.btn-primary {
  padding: 0 25px;
  outline: none !important;
  /* box-shadow: none !important; */
  width: fit-content;
  height: 58px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-out;

  color: var(--c-white);
  background-color: var(--c-brand);
  border: none;
  /* box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6); */
}

.btn-primary:hover {
  padding: 0 25px;
  outline: none !important;
  /* box-shadow: none !important; */
  width: fit-content;
  height: 58px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-out;
  cursor: pointer;

  color: var(--c-white);
  background-color: var(--c-brand);
  border: none;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-transparent {
  padding: 10px 25px;
  height: 58px;
  line-height: 1.7rem;
  border-radius: 6px;
  border: 1px solid var(--c-brand);
  font-size: 1rem;
  font-weight: 600;
}

.btn-transparent:hover {
  background-color: var(--c-brand);
  color: var(--c-white) !important;
  border: 1px solid var(--c-brand);
}

/* Navbar */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--n-height);
  display: flex;
  z-index: 999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  height: 45px;
  width: 120px;
  background-image: url(../images/logo_white.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-clip: padding-box;
}

.nav-links {
  display: flex;
}

.nav-links li:not(:last-child) {
  margin-right: 44px;
}

.nav-links li a {
  color: var(--c-white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links li a:hover {
  color: var(--c-brand);
}

.nav-links li.active a {
  box-shadow: 0 2px var(--c-brand);
}

.hamburguer {
  display: block;
  cursor: pointer;
  display: none;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-links li a {
  color: var(--c-dark);
}

.navbar.scrolled .nav-links li a:hover {
  color: var(--c-brand);
}

.hamburguer span {
  display: block;
  width: 34px;
  height: 2px;
  background-color: var(--c-white);
  margin: 8px auto;
  transition: all 0.4s ease;
}

.hamburguer.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hamburguer.active span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

.scrolled {
  background-color: var(--c-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.32);
}

.scrolled .brand {
  height: 45px;
  width: 120px;
  background-image: url(../images/logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-clip: padding-box;
}

.scrolled .nav-links li a {
  color: var(--c-dark);
}

.scrolled .nav-links li a:hover {
  color: var(--c-brand);
}

.scrolled .btn-transparent:hover {
  color: var(--c-white);
}

.scrolled .hamburguer span {
  background-color: var(--c-dark);
}

/* HERO */

#hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
    url(../images/herosection.jpg);
  background-position: center;
  background-size: cover;
  display: grid;
  place-content: center;
  text-align: center;
}

#hero h1 {
  color: var(--c-white);
}

@keyframes scrolltodown {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }

  50% {
    transform: translateY(-30%);
    opacity: 1;
  }

  100% {
    transform: translateY(60%);
    opacity: 0;
  }
}

.scroll-to-dow {
  width: 45px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 28px;
  color: var(--c-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: absolute;
  bottom: 48px;
  left: 50%;
}

.scroll-to-dow .las {
  animation: scrolltodown 2s ease infinite;
}

/* Section Title */

.section-intro {
  text-align: center;
  margin-bottom: 30px;
}

/* Grid */
.grid {
  display: grid;
  gap: 25px;
  width: 100%;
}

.gradient {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #056a86 -3.65%, #0089b8 101.98%);
}

.gradient-inverse {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #0089b8 -3.65%, #056a86 101.98%);
}

.two-col-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 25px;
}

.three-col-grid {
  grid-template-columns: repeat(3, 1fr);
}

.four-col-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

@media screen and (max-width: 1025px) {
  .grid {
    /* display: grid; */
    gap: 24px;
  }

  .three-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .four-col-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .omni-item {
    display: table;
    margin: 0 auto;
  }

  .omni-empty {
    display: none;
  }

  .integra {
    padding: 15px;
  }

  .integra-empty {
    display: none;
  }
}

/* OMINI */

/* .bg-back {
    background-image: url(../images/back.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}  */

.center {
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

#omnis .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#omnis .section-intro {
  text-align: center;
  width: 100%;
}

.omni-item {
  /* visibility: hidden; */
  align-self: center;
  display: table;
  justify-content: center;
  color: var(--c-brand);
  background-color: var(--c-white);
  padding: 10px;
  margin: auto auto;
  width: 180px;
  border: 1px solid var(--c-white);
  border-radius: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.omni-item p {
  color: var(--c-dark);
}

.omni-empty {
}

.omni-item:hover {
  align-self: center;
  display: block;
  justify-content: center;
  color: var(--c-brand);
  /* background-color: var(--c-brand); */
  padding: 10px;
  margin: auto auto;
  width: 180px;
  border: 0;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border: 1px solid var(--c-brand);
  scale: 1.1;
}

.omni-item .icon {
  height: 100%;
  text-align: center;
}

.omni-item p {
  text-align: center;
  font-weight: 500;
}

.omni-item .icon {
  font-size: 3.5rem;
}

/* Serviços */

#info .grid {
  gap: 0;
  /* display: flex; */
}

.service:nth-child(odd) {
  background-color: var(--c-light);
}

.service {
  /* visibility: hidden; */
  padding: 15px;
  width: 280px;
  min-width: 280px;
  border: 1px solid var(--c-white);
  text-align: center;
}

.service p {
  font-size: 14px;
  text-align: center;
}

.service .icon {
  font-size: 88px;
  color: var(--c-brand);
  text-align: center;
}

.service:hover {
  border: 1px solid var(--c-brand);
}

/* Card Slider */

.bori {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  padding: 0 35px;
  background: linear-gradient(
    to left top,
    var(--c-primary),
    var(--c-secondary)
  );
}

.slider-wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;
}

.slider-wrapper i {
  height: 50px;
  width: 50px;
  background: var(--c-brand);
  color: var(--c-white);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 1.25rem;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.slider-wrapper i:first-child {
  left: -22px;
}

.slider-wrapper i:last-child {
  right: -2px;
}

.slider-wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 2) - 12px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: 0;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel :where(.slider-card, .img) {
  display: flex;
  align-items: start;
  justify-content: start;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel .slider-card {
  scroll-snap-align: start;
  height: 420px;
  font-weight: 390;
  /* width: 460px; */
  list-style: none;
  background: var(--c-white);
  border-radius: 48px;
  display: flex;
  cursor: pointer;
  padding-bottom: 26px;
  align-items: left;

  justify-content: center;
  flex-direction: column;

  background-image: url('../images/iconmonstr-quote-3.svg');
  background-repeat: no-repeat;
  background-position: 95% 15%;
  background-size: 20%;
}

.carousel .slider-header {
  display: flex;
  padding: 2.5rem 2.5rem 1.5rem 4rem;
}

.carousel .heading-3 {
  font-weight: 550 !important;
  margin-bottom: 0.2rem !important;
}

.carousel .slider-text {
  padding-top: 2rem;
  padding-left: 0.6rem;
}

.slider-body {
  margin: 1.8rem;
  quotes: initial;
  padding: 5px;
  text-align: left;
}

.slider-card .img {
  /* background-color: var(--c-brand); */
  width: 128px;
  height: 128px;
  border-radius: 50%;
  padding-top: 2rem;
  position: initial;
}

.slider-card .img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--c-brand);
}

.naoSelecionavel {
  -webkit-touch-callout: none;
  /* iPhone OS, Safari */
  -webkit-user-select: none;
  /* Chrome, Safari 3 */
  -khtml-user-select: none;
  /* Safari 2 */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  user-select: none;
  /* Possível implementação no futuro */
  /* cursor: default; */
}

@media screen and (max-width: 1025px) {
  .slider-wrapper .carousel {
    grid-auto-columns: calc((100% / 1) - 9px);
  }
}

/* Proposta */

#proposal .grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 500px;
}

.proposal-intro {
  background: linear-gradient(#008ab841, #056a865b),
    url(../images/message_section.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.proposal-intro-bg {
  /* background: linear-gradient(#008ab841, #056a865b); */
  max-width: fit-content;
  align-items: start;
  justify-content: center;
  display: flex;
  align-content: center;
  padding-left: 10px;
}

.proposal-intro-bg img {
  border-radius: 5px;
  width: 90%;
}

.section-body {
  margin-left: 25px;
  color: var(--c-body);
  font-size: 1.4rem;

  i {
    color: #00d7a0;
    font-size: 1rem;
    padding: 3px;
    border: 0.4px solid #00d7a0;
    border-radius: 50%;
  }
}

.proposal-wrapper {
  background: linear-gradient(to left top, var(--c-primary), var(--c-secondary)),
    url(../images/bg.png);
  padding-left: 1rem;
  padding-right: 1rem;
  align-items: center;
}

.proposal-wrapper-round {
  /* background: linear-gradient(to left top, var(--c-primary), var(--c-secondary)) ,url(../images/bg.png); */
  padding-left: 1rem;
  padding-right: 1rem;
  align-items: center;
  border-radius: 20px;
}

.proposal-form {
  max-width: 780px;
}

.proposal-form .section-intro {
  padding-top: 3rem;
}

.proposal-form .heading-2 {
  color: var(--c-white);
}

.proposal-form .form-group {
  color: var(--c-white);
}

.proposal-form .form-group.error input {
  border-color: #ff3b25 !important;
}

.proposal-form .proposal-input {
  width: 100%;
  height: 48px;
  border: 1px;
  border-radius: 20px;
  padding: 1rem;
}

.proposal-form .proposal-input:hover {
  border: none !important;
}

/* Contato */

#contact .grid {
  grid-template-columns: 1fr 1.7fr;
}

form {
  width: 100%;
}

.contact-widget {
  margin-bottom: 44px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group a {
  visibility: hidden;
}

.form-group.error input {
  border-color: #ff3b25 !important;
}

.form-group.error a {
  color: #ff3b25;
  visibility: visible;
}

.form-group .form-input {
  display: block;
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 0;
  border: none;
  font-family: var(--f-base);
  border-radius: 25px;
  border: 1px solid var(--c-brand);
}

.form-group .form-input:focus {
  outline: none;
}

/* FOOTER */

footer {
  padding: 80px;
  background-color: var(--c-dark);
  font-family: var(--f-base);
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer p,
a {
  color: var(--c-white);
}

footer .social-icons a {
  font-size: 24px;
}

footer .social-icons a:not(:last-child) {
  margin-right: 24px;
}

/* ====================== POR QUE */

#hero-pq {
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
    url(../images/hero_pq.jpg);
  background-position: top;
  background-size: cover;
  display: grid;
  place-content: left;
  text-align: left;
}

.container-pq {
  padding-top: 180px;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-pq h1 {
  margin: 0 !important;
  color: var(--c-white);
}

.navbar-pq {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--n-height);
  display: flex;
  z-index: 999;
}

.navbar-pq .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.benefits {
  display: flex;
  padding: 5px 15px 5px 15px;
  width: 100%;
  border: 1px solid var(--c-gray);
  border-radius: 20px;
  align-self: center;
  text-align: left;
  cursor: pointer;
}

.benefits:hover {
  border: 1px solid var(--c-brand);
  box-shadow: 3px 3px 5px 3px rgba(0, 0, 0, 0.069);

  .bene-icon {
    color: var(--c-brand);
  }
}

.bene-texts {
  display: table;
  width: 90%;
  margin-top: 8px;
}

.benefits .bene-icon {
  font-size: 48px;
  color: var(--c-body);
  text-align: center;
}

#facil .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.facil-col {
  display: flex;
}

.facil-itens ul {
  text-align: left;
}

/* Button to Top */

.btn-top {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: var(--c-white);
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  display: none;
  transition: 0.4s all;
}

.btn-top:hover {
  opacity: 1;
}

.show-button .btn-top {
  display: flex;
  transition: 0.4s all;
}

/* Whatsapp BTN */

#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 30px;
  background: rgb(2, 192, 43);
  margin: 0 20px;
  width: 195px;
  height: 38px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.5s all ease-in-out;
}

#whatsapp-btn.shrink {
  width: 50px;
  transition: 0.5s all ease-in-out;
  overflow: hidden;
}

#whatsapp-btn img {
  width: 20px;
  height: 20px;
  margin: 7px 5px 7px 0px;
}

#whatsapp-btn a .flex-itens {
  display: flex;
  align-items: center;
}

#whatsapp-btn a .flex-itens span {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  color: var(--c-white);
  font-size: 14px;
  min-width: 120px;
  opacity: 0;
  transition: 0.5s ease-in-out;

  /* background-color: #00d7a0; */
}

#whatsapp-btn a .flex-itens span.aparecer {
  transition: 0.5s ease-in-out;
  opacity: 1;
}

.float {
  animation-name: float;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@keyframes float {
  from {
    transform: translate3d(0, 0, 0);
    filter: brightness(100%);
  }

  to {
    transform: translate3d(0, -4px, 0);
    filter: brightness(100%);
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--n-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 0 24px;
    height: 0;
    overflow: hidden;
    background-color: var(--c-white);
    justify-content: center;
    transition: all 0.6s ease-in-out;
  }

  .nav-links li a {
    color: var(--c-dark);
  }

  .nav-links.active {
    height: 290px;
  }

  .nav-links li {
    padding: 10px 0;
  }

  .hamburguer {
    display: block;
  }

  .btn-transparent {
    display: initial;
  }
  .grid {
    /* display: grid; */
    gap: 24px;
  }

  .three-col-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .four-col-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  #contact .grid {
    grid-template-columns: 1fr;
  }

  .omni-empty {
    display: none;
  }

  .two-col-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }

  .integra {
    padding: 25px;
  }

  .integra-empty {
    display: none;
  }

  .service {
    padding: 3px;
    width: auto;
    min-width: auto;
    border: 1px solid var(--c-white);
    text-align: center;
  }

  .service p {
    font-size: 12px;
    text-align: center;
  }

  .service .icon {
    font-size: 68px;
    color: var(--c-brand);
    text-align: center;
  }

  .service:hover {
    border: 1px solid var(--c-brand);
  }

  .slider-wrapper .carousel {
    grid-auto-columns: 100%;
  }

  .proposal-intro {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: start;
  }
  #whatsapp-btn {
    bottom: 5px;
    left: 0px;
    padding: 0 5px;
  }
}

@media screen and (max-width: 1025px) {
  .btn-transparent {
    display: none;
  }
}
/ *   F o o t e r   * / 
 f o o t e r   { 
         b a c k g r o u n d - c o l o r :   v a r ( - - c - p r i m a r y ) ; 
         c o l o r :   v a r ( - - c - w h i t e ) ; 
         p a d d i n g :   4 0 p x   0   2 0 p x ; 
 } 
 
 . f o o t e r - c o n t e n t   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 5 0 p x ,   1 f r ) ) ; 
         g a p :   2 0 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . f o o t e r - s e c t i o n   h 3 ,   . f o o t e r - s e c t i o n   h 4   { 
         m a r g i n - b o t t o m :   1 5 p x ; 
         c o l o r :   v a r ( - - c - w h i t e ) ; 
 } 
 
 . f o o t e r - s e c t i o n   u l   { 
         l i s t - s t y l e :   n o n e ; 
         p a d d i n g :   0 ; 
 } 
 
 . f o o t e r - s e c t i o n   u l   l i   { 
         m a r g i n - b o t t o m :   8 p x ; 
 } 
 
 . f o o t e r - s e c t i o n   u l   l i   a   { 
         c o l o r :   v a r ( - - c - w h i t e ) ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 
 . f o o t e r - s e c t i o n   u l   l i   a : h o v e r   { 
         c o l o r :   v a r ( - - c - b r a n d ) ; 
 } 
 
 . s o c i a l - i c o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 5 p x ; 
 } 
 
 . s o c i a l - i c o n s   a   { 
         c o l o r :   v a r ( - - c - w h i t e ) ; 
         f o n t - s i z e :   2 0 p x ; 
 } 
 
 . s o c i a l - i c o n s   a : h o v e r   { 
         c o l o r :   v a r ( - - c - b r a n d ) ; 
 } 
 
 . f o o t e r - b o t t o m   { 
         b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         p a d d i n g - t o p :   2 0 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
 } 
 
 
/* Media queries para footer responsivo */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

