/* Reset e Configurações Globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #044992;
  --primary-dark: #023165;
  --primary-light: #0d6ecc;
  --secondary-color: #e26fae;
  --accent-color: #ff6b35;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --gray-light: #f5f7fa;
  --gray-medium: #e0e6ed;
  --gray-dark: #64748b;
  --success: #10b981;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--gray-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Menu de Navegação */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--text-light);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./imgs/B52AB642-D7B3-489C-A763-016765D5525C.PNG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(4, 73, 146, 0.85) 0%, rgba(2, 49, 101, 0.75) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  max-width: 150px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 25px;
  animation: pulse 2s infinite;
}

@media (min-width: 768px) {
  .logo {
    max-width: 200px;
    margin-bottom: 30px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 15px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.date-icon {
  font-size: 1.5rem;
}

.date-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Countdown Timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .countdown {
    gap: 20px;
    margin: 40px 0;
  }
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 18px;
  border-radius: 12px;
  min-width: 75px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .countdown-item {
    padding: 25px 30px;
    border-radius: 15px;
    min-width: 120px;
  }
}

.countdown-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.countdown-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

@media (min-width: 768px) {
  .countdown-value {
    font-size: 3rem;
  }
}

.countdown-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .countdown-label {
    font-size: 0.9rem;
    margin-top: 8px;
    letter-spacing: 1px;
  }
}

/* Botões */
.btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (min-width: 768px) {
  .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
  }

  .btn:hover {
    transform: translateY(-3px);
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c61 100%);
  color: var(--text-light);
}

@media (min-width: 768px) {
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  }
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-icon {
  font-size: 1.5rem;
}

/* Seções */
section {
  padding: 50px 15px;
}

@media (min-width: 768px) {
  section {
    padding: 80px 20px;
  }
}

.section-light {
  background: var(--text-light);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--text-light);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-title-white {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-light);
  position: relative;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .section-title-white {
    font-size: 2.5rem;
  }
}

.section-title-white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--text-light), var(--accent-color));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin-bottom: 50px;
  font-weight: 300;
}

.section-subtitle-white {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

/* Inscrição */
.inscricao {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: none;
  border-top: 6px solid var(--primary-color);
  padding: 25px 20px;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .inscricao {
    border-left: 6px solid var(--primary-color);
    border-top: none;
    padding: 40px;
    margin: 50px auto;
  }
}

.inscricao:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.inscricao h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  text-align: center;
}

.categorias_ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.categorias_ul li {
  font-size: 1.2rem;
  padding: 15px 20px;
  background: var(--text-light);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.categorias_ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(4, 73, 146, 0.2);
}

.cat-icon {
  font-size: 1.5rem;
}

.link-inscricao {
  text-align: center;
  margin: 40px 0;
}

.btn-inscricao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .btn-inscricao {
    padding: 18px 50px;
    font-size: 1.2rem;
    width: auto;
  }

  .btn-inscricao:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4, 73, 146, 0.4);
  }
}

.taxa {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  background: var(--gray-light);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

/* Premiações */
.premio-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin: 50px 0 30px 0;
  color: var(--primary-color);
}

.categorias {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.categoria {
  background: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-top: 6px solid var(--primary-color);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .categoria:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
}

.categoria h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-align: center;
}

.categoria-sub {
  text-align: center;
  color: var(--gray-dark);
  margin-bottom: 25px;
  font-size: 1rem;
}

.premio {
  padding: 15px;
  margin: 10px 0;
  background: var(--gray-light);
  border-radius: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.premio:hover {
  background: var(--gray-medium);
  transform: translateX(5px);
}

.premio-icon {
  font-size: 1.5rem;
}

/* Camiseta */
.camisa {
  text-align: center;
}

.camisa-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  margin-top: 30px;
  transition: transform 0.3s ease;
}

.camisa-img:hover {
  transform: scale(1.05);
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
}

.info-card {
  background: var(--text-light);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

@media (min-width: 768px) {
  .info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
}

.info-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.info-text {
  color: var(--gray-dark);
  margin-bottom: 10px;
  font-size: 1rem;
}

.info-highlight {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Percursos */
.percursos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .percursos {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
}

.percurso-card {
  background: var(--text-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
}

@media (min-width: 768px) {
  .percurso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
}

.percurso-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.percurso-badge-pro {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: var(--text-light);
}

.percurso-badge-sport {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: var(--text-light);
}

.percurso-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.percurso-info {
  padding: 30px;
}

.percurso-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.percurso-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  justify-content: space-around;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  font-size: 1.8rem;
}

.stat-value {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.btn-percurso {
  display: block;
  text-align: center;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-percurso:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Sliders */
.slider-container {
  position: relative;
  max-width: 900px;
  height: 300px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .slider-container {
    height: 500px;
    margin: 40px auto;
    border-radius: 20px;
  }
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.slide.active {
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 10;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .slider-btn {
    font-size: 2rem;
    padding: 15px 20px;
    border-radius: 10px;
  }
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 8px;
}

.slider-btn.next {
  right: 8px;
}

@media (min-width: 768px) {
  .slider-btn.prev {
    left: 20px;
  }
  
  .slider-btn.next {
    right: 20px;
  }
}

/* Mapa */
.mapa {
  padding: 60px 20px;
}

.mapa-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-top: 30px;
}

.mapa-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Patrocinadores */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
  }
}

.grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: var(--text-light);
  border-radius: 12px;
  padding: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.grid img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.apoio-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin: 60px 0 30px 0;
  color: var(--primary-color);
}

.apoio-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  background: var(--text-light);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #000 100%);
  color: var(--text-light);
  padding: 50px 20px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  text-align: center;
}

.footer-logo-img {
  width: 80px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

.footer-info {
  text-align: center;
}

.footer-date,
.footer-location {
  font-size: 1rem;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-social {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-link {
  display: inline-block;
  padding: 12px 30px;
  background: #25d366;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #128c7e;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--primary-dark);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .categorias {
    flex-direction: column;
  }

  .categoria {
    border-left: none;
    border-top: 6px solid var(--primary-color);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero {
    min-height: 90vh;
  }

  .date-text {
    font-size: 1.1rem;
  }

  .hero-date {
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .logo {
    max-width: 130px;
  }

  .countdown-item {
    min-width: 70px;
    padding: 12px 10px;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }

  .section-title,
  .section-title-white {
    font-size: 1.5rem;
  }

  .nav-container {
    padding: 0.8rem 1rem;
  }

  .nav-logo-img {
    width: 40px;
    height: 40px;
  }

  .nav-title {
    font-size: 1.1rem;
  }

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