/* ================= GLOBAL ================= */
body {
    font-family: "Roboto Condensed", sans-serif;
}

/* ================= HEADER ================= */
#header {
  transition: background .4s ease, backdrop-filter .4s ease;
  background: transparent;
}
#header #logo-svg{
  width:100px;
}
.nav-link {
  position: relative;
  padding: 6px 0;
  color: #fdd800;
  font-size: 1.1rem;
}
#header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}
#header.scrolled .nav-link {
  color: #021b3f!important;
}


.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fdd800;
  transition: width .3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: #021b3f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-secondary {
  background: #fdd800;
  color: #021b3f;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  width: 140px;
}

/* ================= BADGE ================= */
.badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #fdd800;
  color: #021b3f;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .4s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.mobile-menu-links a {
  font-size: 1.4rem;
  font-weight: 600;
}

.mobile-menu-social {
  position: fixed;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 32px;
}



/* ================= HERO ================= */
.hero-section,
.hero-slide {
  height: 100vh;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,27,63,0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 720px;
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-highlight {
  color: #fdd800;
}
.sub-h1 {
  font-size: 1.3rem;
}


.swiper-button-next,
.swiper-button-prev {
  color: #fdd800;
  opacity: .9;
  transition: opacity .3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

.swiper-pagination-bullet {
  background: #fdd800;
  opacity: .9;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-content {
    margin-left: 40px;
    margin-right: 40px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.6rem;
  }
}

/* ================= COUNTDOWN ================= */
.countdown-section {
  padding: 100px 0;
  background: #DE8700;
  background: linear-gradient(135deg,rgba(222, 135, 0, 1) 0%, rgba(253, 216, 0, 1) 100%);
}

.countdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ESQUERDA */
.countdown-info .countdown-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #fdd800;
  font-weight: 700;
}

.countdown-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 16px 0;
  color: #021b3f;
  line-height: 2.7rem;
}

.countdown-info p {
  font-size: 1.1rem;
  color: #555;
}

/* DIREITA */
.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.time-box {
  background: white;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgb(255 255 255 / 60%);
}

.time-box span {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 800;
  color: #021b3f;
  display: block;
}

.time-box small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .countdown-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= ABOUT + CONTESTS ================= */
.about-section {
  padding: 120px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ESQUERDA */
.about-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #021b3f;
  margin-top: 32px;
  line-height: 1.1;
}

.about-content h2 span {
  color: #fdd800;
}

.about-content p {
  margin: 24px 0 32px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  max-width: 520px;
}

.about-image {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* BOTÃO */
.btn-primary {
  display: inline-block;
  background: #021b3f;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #02142f;
}

/* DIREITA */
.about-contests {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contest-card {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.contest-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #021b3f;
  margin-bottom: 12px;
}

.contest-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.contest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    text-align: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .about-contests {
    grid-template-columns: 1fr;
  }
}

/* ================= EXHIBITORS ================= */
.exhibitors-section {
  padding: 120px 0;
  background: #f8f9fb;
}

.exhibitors-header {
  text-align: center;
  margin-bottom: 60px;
}

.exhibitors-header span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.exhibitors-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #021b3f;
  margin-top: 12px;
}

/* SWIPER */
.exhibitors-swiper {
  overflow: hidden;
}

.exhibitor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.exhibitor-logo img {
  max-width: 160px;
  max-height: 160px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.exhibitor-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .exhibitors-header h2 {
    font-size: 2rem;
  }
}

/* ================= SCHEDULE ================= */
.schedule-section {
  padding: 120px 0;
  background: #ffffff;
}

.schedule-header {
  text-align: center;
  margin-bottom: 50px;
}

.schedule-header span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.schedule-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #021b3f;
  margin-top: 12px;
}

/* TABS */
.schedule-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 50px;
  border: 1px solid #e5e7eb;
}

.tab-btn {
  border-radius: 0;
  padding: 24px 16px;
  background: #f8f9fb;
  color: #021b3f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  border-right: 1px solid #e5e7eb;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn strong {
  font-size: 1rem;
  font-weight: 700;
}

.tab-btn span {
  font-size: 0.75rem;
  color: #666;
}

.tab-btn.active,
.tab-btn:hover {
  background: #021b3f;
  color: #fdd800;
}

/* TABLE */
.schedule-table {
  display: none;
}

.schedule-table.active {
  display: block;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table thead {
  background: #021b3f;
  color: white;
}

.schedule-table th,
.schedule-table td {
  padding: 18px 16px;
  text-align: left;
  font-size: 0.95rem;
}

.schedule-table tbody tr {
  border-bottom: 1px solid #eee;
}

.schedule-table tbody tr:hover {
  background: #f8f9fb;
}

.schedule-day-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #021b3f;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .schedule-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .schedule-table th:nth-child(1),
  .schedule-table td:nth-child(1) {
    display: none;
  }
}

/* ================= TICKETS ================= */
.tickets-section {
  padding: 120px 0;
  background: #f8f9fb;
}

.tickets-header {
  text-align: center;
  margin-bottom: 60px;
}

.tickets-header span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.tickets-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #021b3f;
  margin-top: 12px;
}

/* GRID */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.ticket-card {
  background: white;
  border-radius: 18px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.3s ease;
}

.ticket-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #021b3f;
  margin-bottom: 16px;
}

.ticket-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #021b3f;
  margin-bottom: 24px;
}

.ticket-card ul {
  margin-bottom: 32px;
}

.ticket-card ul li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

/* BOTÕES */
.btn-outline {
  display: inline-block;
  border: 2px solid #021b3f;
  color: #021b3f;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #021b3f;
  color: white;
}

/* DESTAQUE */
.ticket-card.featured {
  border: 2px solid #fdd800;
  transform: translateY(-20px);
}

.ticket-card.featured .ticket-price {
  color: #fdd800;
}

.badge {
  position: absolute;
  top: -10px;
  left: 85%;
  transform: translateX(-50%);
  background: #fdd800;
  color: #021b3f;
  padding: 1px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* HOVER */
.ticket-card:hover {
  transform: translateY(-10px);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }

  .ticket-card.featured {
    transform: none;
  }
}

/* ================= MAP & AMENITIES ================= */
.location-section {
  padding: 120px 0;
  background: #ffffff;
}

.location-header {
  text-align: center;
  margin-bottom: 60px;
}

.location-header span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.location-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #021b3f;
  margin-top: 12px;
}

/* GRID */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* MAP */
.map-wrapper {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* AMENITIES */
.amenities {
  display: grid;
  gap: 24px;
}

.amenity-card {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.amenity-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #021b3f;
  margin: 16px 0 8px;
}

.amenity-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #021b3f;
  color: #fdd800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HOVER */
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 360px;
  }
}

/* ================= NUMBERS ================= */
.numbers-section {
  padding: 120px 0;
  background: #021b3f;
}

.numbers-header {
  text-align: center;
  margin-bottom: 70px;
}

.numbers-header span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.numbers-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  margin-top: 12px;
}

/* GRID */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.number-card {
  text-align: center;
}

.number-card strong {
  display: block;
  font-size: 3.4rem;
  font-weight: 800;
  color: #fdd800;
}

.number-card span {
  margin-top: 12px;
  display: block;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* ================= SPONSORS ================= */
.sponsors-section {
  padding: 120px 0;
  background: #ffffff;
}

.sponsors-header {
  text-align: center;
  margin-bottom: 60px;
}

.sponsors-header span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.sponsors-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #021b3f;
  margin-top: 12px;
}

/* SWIPER */
.sponsors-swiper {
  overflow: hidden;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}

.sponsor-logo img {
  max-width: 180px;
  max-height: 90px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sponsor-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ================= NEWSLETTER ================= */
.newsletter-section {
  background: #021b3f;
  padding: 120px 0;
}

.newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.newsletter-text span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 16px 0;
  line-height: 1.2;
}

.newsletter-text p {
  color: #dbe2f0;
  max-width: 480px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 20px;
  font-size: 1rem;
  border: none;
  outline: none;
}

.newsletter-form button {
  background: #fdd800;
  color: #021b3f;
  font-weight: 700;
  padding: 0 32px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #e6c300;
}

/* MOBILE */
@media (max-width: 768px) {
  .newsletter-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    margin: 0 auto;
  }
}

/* ================= PAST EVENTS ================= */
.past-events-section {
  padding: 120px 0;
  background: #f8f9fb;
}

.past-events-header {
  text-align: center;
  margin-bottom: 60px;
}

.past-events-header span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.past-events-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #021b3f;
  margin-top: 12px;
}

/* CARD FLIP */
.event-card {
  perspective: 1200px;
}

.event-card-inner {
  position: relative;
  width: 100%;
  height: 360px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.event-card:hover .event-card-inner {
  transform: rotateY(180deg);
}

.event-card-front,
.event-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.event-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-back {
  background: #021b3f;
  color: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.event-card-back h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.event-card-back p {
  font-size: 0.95rem;
  color: #dbe2f0;
  margin-bottom: 20px;
}

.event-btn {
  background: #fdd800;
  color: #021b3f;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.event-btn:hover {
  transform: translateY(-2px);
}

/* NAVIGATION */
.past-events-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.past-prev,
.past-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #021b3f;
  cursor: pointer;
  position: relative;
}

.past-prev::before,
.past-next::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #021b3f;
  border-right: 2px solid #021b3f;
  transform: translate(-50%, -50%) rotate(225deg);
}

.past-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ================= CONTACT ================= */
.contact-section {
  padding: 120px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info span {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fdd800;
  font-weight: 700;
}

.contact-info h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #021b3f;
  margin: 16px 0;
}

.contact-info p {
  max-width: 480px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #021b3f;
  margin-bottom: 20px;
}

.contact-details svg {
  width: 22px;
  height: 22px;
  color: #fdd800;
}

/* FORM */
.contact-form {
  background: #f8f9fb;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #021b3f;
}

.contact-form button {
  background: #021b3f;
  color: #ffffff;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #031f50;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-details li {
    justify-content: center;
  }
}

/* ================= FOOTER ================= */
.footer-section {
  background: #021b3f;
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-col p {
  color: #dbe2f0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-col ul li a {
  color: #dbe2f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fdd800;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fdd800;
  color: #021b3f;
  border-color: #fdd800;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #dbe2f0;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
