/* subpaginacss.css - Estilo exclusivo para subpáginas Neuro Lions */

/* =================== TOP BAR STYLES =================== */
.top-bar {
    background: linear-gradient(45deg, var(--dark-blue), var(--dark-brown));
    color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 999;
    border-bottom: 2px solid var(--light-brown);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 181, 149, 0.08), transparent);
    animation: shimmer-top 6s infinite;
    opacity: 0.7;
}

@keyframes shimmer-top {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-info-top {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item-top i {
    color: var(--light-brown);
    font-size: 1.1rem;
    min-width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item-top a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-top:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.contact-item-top a:hover {
    color: var(--light-brown);
}

.delivery-info-top {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 181, 149, 0.2);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(200, 181, 149, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.delivery-info-top:hover {
    background: rgba(200, 181, 149, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.delivery-info-top i {
    color: var(--light-brown);
    font-size: 1.2rem;
    animation: pulse-delivery 2s infinite;
}

@keyframes pulse-delivery {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.delivery-text-top {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

.delivery-text-top strong {
    color: var(--light-brown);
    font-weight: 700;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* =================== RESPONSIVE TOP BAR =================== */
@media (max-width: 900px) {
    .top-bar {
        padding: 8px 0;
        min-height: 50px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .contact-info-top {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .contact-item-top {
        font-size: 0.85rem;
        white-space: nowrap;
        padding: 4px 8px;
    }
    
    .delivery-info-top {
        padding: 6px 14px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .delivery-text-top {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
        min-height: 48px;
    }
    
    .top-bar-content {
        padding: 0 12px;
        gap: 8px;
    }
    
    .contact-info-top {
        gap: 1rem;
    }
    
    .contact-item-top {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    .delivery-info-top {
        padding: 5px 12px;
    }
    
    .delivery-text-top {
        font-size: 0.8rem;
    }
    
    .delivery-text-top strong {
        display: inline;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 5px 0;
        border-bottom: 1px solid var(--light-brown);
        min-height: 45px;
    }
    
    .top-bar-content {
        gap: 8px;
        padding: 0 8px;
    }
    
    .contact-info-top {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item-top {
        font-size: 0.75rem;
        gap: 5px;
        justify-content: center;
        padding: 2px 5px;
    }
    
    .contact-item-top i {
        font-size: 0.9rem;
        min-width: 14px;
    }
    
    .delivery-info-top {
        padding: 4px 10px;
        border-radius: 18px;
        gap: 6px;
    }
    
    .delivery-info-top i {
        font-size: 1rem;
    }
    
    .delivery-text-top {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .delivery-text-top strong {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .top-bar {
        padding: 3px 0;
        min-height: 40px;
    }
    
    .top-bar-content {
        gap: 5px;
        padding: 0 5px;
        flex-wrap: wrap;
    }
    
    .contact-info-top {
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .contact-item-top {
        font-size: 0.65rem;
        gap: 3px;
        flex-shrink: 1;
        padding: 1px 3px;
    }
    
    .contact-item-top i {
        font-size: 0.8rem;
        min-width: 12px;
    }
    
    .delivery-info-top {
        padding: 2px 6px;
        width: 100%;
        justify-content: center;
        margin-top: 3px;
        border-radius: 15px;
    }
    
    .delivery-text-top {
        font-size: 0.6rem;
        text-align: center;
    }
    
    .delivery-text-top strong {
        font-size: 0.65rem;
    }
}

:root {
  --dark-blue: #002244;
  --dark-brown: #3F2A0E;
  --light-brown: #C8B595;
  --white: #FFFFFF;
  --light-gray: #f4f4f4;
  --text-dark: #222;
  --text-light: #666;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--light-gray);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden; /* Previne scroll horizontal em mobile */
}

/* ========== OTIMIZAÇÕES GLOBAIS PARA MOBILE ========== */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Prevent zoom on input focus for iOS */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Smooth scrolling for better UX */
html {
  scroll-behavior: smooth;
}

/* Touch-friendly buttons */
button, .btn, .btn-whatsapp, .cta-final-button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Container responsive */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

.main-header {
  background: linear-gradient(90deg, var(--light-brown), var(--dark-brown));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  position: relative;
  z-index: 1000;
}
.logo img {
  height: 100px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.main-nav a, .contato-dropbtn {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
  font-family: 'Inter', Arial, sans-serif;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.main-nav a:hover, .contato-dropbtn:hover {
  color: var(--light-brown);
}
.menu-contato-dropdown {
  position: relative;
}
.contato-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: var(--dark-blue);
  min-width: 180px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.10);
  z-index: 100;
}
.menu-contato-dropdown:hover .contato-dropdown-content,
.menu-contato-dropdown:focus-within .contato-dropdown-content {
  display: block;
}
.contato-dropdown-content a {
  color: var(--white);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.contato-dropdown-content a:hover {
  background: var(--light-brown);
  color: var(--dark-blue);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

main {
  padding: 0;
}
section {
  margin: 0;
  padding: 0;
}

.btn-whatsapp {
  display: inline-block;
  background: linear-gradient(90deg, #3a5a8c, var(--dark-blue) 80%);
  color: var(--white);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(0,34,68,0.13), 0 1.5px 8px rgba(60,90,140,0.10);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 18px;
  border: none;
  letter-spacing: 0.5px;
}
.btn-whatsapp i {
  margin-right: 10px;
  font-size: 1.3em;
  vertical-align: middle;
}
.btn-whatsapp:hover {
  background: linear-gradient(90deg, #4a7bd9, #002244 90%);
  color: #fff;
  transform: scale(1.06);
}

.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 4rem 0 2rem 0;
}

.footer .container {
  padding: 0 20px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo img {
  height: 100px;
  max-width: 220px;
  display: block;
  margin: 0 auto 18px auto;
}
.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col p {
  opacity: 0.9;
  line-height: 1.6;
}
.contato-info a {
    color: var(--white);
}
.contato-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .main-header {
    height: 70px;
  }
  .logo img {
    height: 85px;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--dark-brown);
    padding: 1rem 0;
    gap: 0;
  }
  .main-nav.active {
    display: flex;
  }
  .main-nav a, .main-nav .contato-dropbtn {
    text-align: center;
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(200, 181, 149, 0.2);
  }
  .main-nav .menu-contato-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu-contato-dropdown:hover .contato-dropdown-content {
      display:none;
  }
  .menu-contato-dropdown .contato-dropdown-content {
      position: static;
      display: none;
      flex-direction: column;
      box-shadow: none;
      background: rgba(0,0,0,0.2);
      min-width: 100%;
      border-radius: 0;
      width: 100%;
  }
   .menu-contato-dropdown .contato-dropdown-content.active {
      display: flex;
  }
  .contato-dropdown-content a {
    justify-content: center;
    border-bottom: 1px solid rgba(200, 181, 149, 0.1);
  }
   .contato-dropdown-content a:last-child {
       border-bottom:none;
   }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .footer-content {
    text-align: center;
  }
}

/* ESTILOS PARA O FAQ COM BOTÃO GERAL */
.faq-toggle-button {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  padding: 1rem 1.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: border-radius 0.3s ease;
}

.faq-toggle-button.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-main-title {
  margin: 0;
  font-size: 2rem;
  color: var(--dark-blue);
}

.faq-toggle-icon {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--light-brown);
  transition: transform 0.3s ease;
}

.faq-toggle-button.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 14px rgba(0,0,0,0.05);
}

.faq-content.open {
  display: flex;
}

.faq-item {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.15rem;
  color: #4a3b35;
  margin: 0 0 0.5rem 0;
}

.faq-item h3 i {
  margin-right: 8px;
  color: var(--light-brown);
}

.faq-item p {
  margin: 0;
  padding-left: 28px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 900px) {
    .faq-main-title {
        font-size: 1.5rem;
    }
}

/* ==== ESTILOS PARA OS CARDS DE BENEFÍCIOS ==== */
.beneficio-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação suave */
}

.beneficio-card:hover {
  transform: translateY(-10px); /* Efeito de elevação */
  box-shadow: 0 10px 30px rgba(74, 59, 53, 0.12); /* Sombra mais destacada */
}

.beneficio-card i {
  font-size: 2.5rem;
  color: #795548;
  margin-bottom: 1rem;
}

.beneficio-card h3 {
  color: #4a3b35;
  margin-bottom: 0.5rem;
}

.beneficio-card p {
  color: #555;
  margin: 0;
}

/* ==== ESTILOS PARA CTA FINAL CHAMATIVO ==== */
.cta-final {
  padding: 20px;
  background: radial-gradient(ellipse at center, hsl(210, 100%, 25%), var(--dark-blue) 80%);
  position: relative;
  overflow: hidden;
  animation: pulse-glow 5s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
  from {
    box-shadow: inset 0 0 30px -10px hsla(208, 100%, 60%, 0.4);
  }
  to {
    box-shadow: inset 0 0 50px 10px hsla(208, 100%, 60%, 0.7);
  }
}

.cta-final-link {
  display: block;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.cta-final-link:hover {
  transform: scale(1.02);
  background-color: rgba(0, 0, 0, 0.3);
}

.cta-final-title {
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
}

.cta-final-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-final-button {
  display: inline-block;
  background: linear-gradient(90deg, #4a7bd9, #3a5a8c 90%);
  color: var(--white);
  font-weight: bold;
  font-size: 1.3rem;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(74, 123, 217, 0.4), 0 0 25px rgba(255,255,255,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #5c8ce0;
  letter-spacing: 0.8px;
}

.cta-final-button i {
  margin-right: 12px;
  font-size: 1.4em;
  vertical-align: middle;
}

.cta-final-link:hover .cta-final-button {
  transform: scale(1.1) rotate(-2deg);
  background: linear-gradient(90deg, #5c8ce0, #4a7bd9 90%);
  box-shadow: 0 8px 25px rgba(74, 123, 217, 0.7), 0 0 35px rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
  .cta-final-title {
    font-size: 2.2rem;
  }
  .cta-final-text {
    font-size: 1.1rem;
  }
  .cta-final-button {
    font-size: 1.1rem;
    padding: 14px 28px;
    transform: none !important; /* Remove a rotação no hover em mobile */
  }
  .cta-final-link:hover .cta-final-button {
    transform: scale(1.05) !important;
  }
}

/* ==== BOTÃO FLUTUANTE WHATSAPP ==== */
.whatsapp-flutuante {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-flutuante:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* ESTILOS MOVIDOS DO HTML DAS SUBPÁGINAS */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.info-column h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-brown);
    padding-bottom: 0.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-item i {
    font-size: 1.5rem;
    color: #795548;
    margin-top: 5px;
    width: 25px;
}

.info-item-text strong {
    color: #4a3b35;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.destaques-container .destaque-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    min-height: 60px;
}

.destaques-container .destaque-item:last-child {
    margin-bottom: 0;
}

.destaques-container .destaque-item i {
    color: #795548;
    margin-top: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(121, 85, 72, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
}

.destaques-container .destaque-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    line-height: 1.3;
}

.destaques-container .destaque-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ================== ESTILOS DO NOVO RODAPÉ ================== */
.footer-logo-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 20px 3rem 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px 20px 0 0;
    max-width: 1100px;
    margin: 0 auto 4rem auto;
}

.footer-main-logo {
    height: 160px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.footer-main-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.footer-brand-name {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 1rem 0 0.5rem 0;
    letter-spacing: 3px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.new-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    padding: 0 20px;
    justify-content: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--white);
}

.footer-about-text {
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-schedule {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
}

.footer-schedule li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-schedule span {
    font-weight: 500;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-footer-contato {
    background: #007bff;
    color: white;
    margin-top: auto;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    align-self: flex-start;
}

.btn-footer-contato:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* ================== PRELOADER ================== */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--dark-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================== RESPONSIVIDADE OTIMIZADA 100% ================== */
@media (max-width: 900px) {
    /* Mobile Header Subpáginas */
    .main-header {
        height: 70px;
        padding: 0 1rem;
    }

    .logo img {
        height: 80px;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 0.5rem;
        margin-right: 0.5rem;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--dark-brown);
        padding: 1rem 0;
        gap: 0;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a, .main-nav .contato-dropbtn {
        text-align: center;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(200, 181, 149, 0.2);
        font-size: 1rem;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav .menu-contato-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-contato-dropdown:hover .contato-dropdown-content {
        display: none;
    }

    .menu-contato-dropdown .contato-dropdown-content {
        position: static;
        display: none;
        flex-direction: column;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        min-width: 100%;
        border-radius: 0;
        width: 100%;
    }

    .menu-contato-dropdown .contato-dropdown-content.active {
        display: flex;
    }

    .contato-dropdown-content a {
        justify-content: center;
        border-bottom: 1px solid rgba(200, 181, 149, 0.1);
        font-size: 0.95rem;
    }

    .contato-dropdown-content a:last-child {
        border-bottom: none;
    }

    /* Mobile Sections */
    main {
        padding-top: 0;
    }

    section {
        padding: 2rem 1rem;
    }

    /* Hero Produto Mobile */
    .hero-produto {
        padding: 2rem 1rem 2rem 1rem !important;
        min-height: auto !important;
    }

    .hero-produto .container {
        gap: 2rem !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .hero-produto h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-produto p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-produto .img-area {
        max-width: 100% !important;
        flex: none !important;
    }

    .hero-produto .text-area {
        max-width: 100% !important;
        flex: none !important;
    }

    /* Benefícios Destaque Mobile */
    .beneficios-destaque {
        padding: 2rem 1rem !important;
    }

    .beneficios-destaque h2 {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }

    .beneficios-destaque > .container > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Cards Mobile */
    .beneficio-card,
    .produto-card {
        padding: 1.5rem 1rem;
        margin: 0 auto;
    }

    .beneficio-card h3 {
        font-size: 1.2rem;
    }

    .beneficio-card p {
        font-size: 0.9rem;
    }

    /* Sobre Produto Mobile */
    .sobre-produto {
        padding: 2rem 1rem !important;
    }

    .sobre-produto h2 {
        font-size: 1.8rem !important;
    }

    .sobre-produto .content-wrapper {
        gap: 2rem !important;
        flex-direction: column !important;
    }

    .destaques-container .destaque-item {
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
        align-items: center !important;
    }

    .destaques-container .destaque-item i {
        font-size: 1.3rem !important;
        width: 35px !important;
        height: 35px !important;
    }

    .destaques-container .destaque-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* Info Produto Mobile */
    .info-produto {
        padding: 2rem 1rem !important;
    }

    .info-produto h2 {
        font-size: 1.8rem !important;
    }

    .info-produto .container {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* Modo de Uso Mobile */
    .modo-uso {
        padding: 2rem 1rem !important;
    }

    .modo-uso h2 {
        font-size: 1.8rem !important;
    }

    .modo-uso .container {
        max-width: 100% !important;
    }

    /* Garantia Mobile */
    .garantia {
        padding: 2rem 1rem !important;
    }

    .garantia h2 {
        font-size: 1.8rem !important;
    }

    .garantia .container {
        gap: 2rem !important;
        flex-direction: column !important;
    }

    /* FAQ Mobile */
    .faq {
        padding: 2rem 1rem !important;
    }

    .faq-main-title {
        font-size: 1.6rem !important;
    }

    .faq-item h3 {
        font-size: 1.1rem !important;
    }

    .faq-item p {
        font-size: 0.9rem !important;
        padding-left: 20px !important;
    }

    /* CTA Final Mobile */
    .cta-final {
        padding: 1.5rem 1rem !important;
    }

    .cta-final-title {
        font-size: 2rem !important;
    }

    .cta-final-text {
        font-size: 1rem !important;
    }

    .cta-final-button {
        font-size: 1.1rem !important;
        padding: 14px 28px !important;
    }

    /* WhatsApp Flutuante Mobile */
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    /* Footer Mobile */
    .footer .container {
        max-width: 900px;
        padding: 0 15px;
    }
    
    .footer-main-logo {
        height: 140px;
        max-width: 350px;
    }
    
    .footer-brand-name {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }
    
    .footer-tagline {
        font-size: 1.2rem;
    }
    
    .footer-logo-section {
        padding: 1.5rem 15px 2.5rem 15px;
        margin: 0 auto 3.5rem auto;
        max-width: 900px;
    }
    
    .new-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 15px;
    }
    
    .footer-col {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    /* Tablet Optimizations */
    .main-header {
        height: 65px;
        padding: 0 0.75rem;
    }

    .logo img {
        height: 75px;
    }

    /* Hero Produto Tablet */
    .hero-produto {
        padding: 1.5rem 0.75rem !important;
    }

    .hero-produto h1 {
        font-size: clamp(1.6rem, 4.5vw, 2rem) !important;
        margin-bottom: 1rem !important;
    }

    .hero-produto p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem;
    }

    /* Sections Tablet */
    section {
        padding: 1.5rem 0.75rem;
    }

    .beneficios-destaque h2,
    .sobre-produto h2,
    .info-produto h2,
    .modo-uso h2,
    .garantia h2 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Cards Tablet */
    .beneficio-card {
        padding: 1.25rem 1rem;
        margin-bottom: 1rem;
    }

    .beneficio-card h3 {
        font-size: 1.1rem;
    }

    .beneficio-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .beneficio-card i {
        font-size: 2rem !important;
    }

    /* Info Grid Tablet */
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .info-column h3 {
        font-size: 1.4rem !important;
    }

    .info-item {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }

    .info-item i {
        font-size: 1.3rem !important;
    }

    /* Modo de Uso Tablet */
    .modo-uso .container div {
        font-size: 1rem !important;
        padding: 18px 24px !important;
        max-width: 90% !important;
    }

    .modo-uso .container div i {
        font-size: 1.4rem !important;
    }

    /* FAQ Tablet */
    .faq .container {
        max-width: 95% !important;
    }

    .faq-content {
        padding: 1.25rem !important;
    }

    .faq-item {
        padding: 0.75rem !important;
    }

    /* CTA Final Tablet */
    .cta-final-link {
        padding: 2.5rem 1.5rem !important;
    }

    .cta-final-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }

    .cta-final-text {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }

    .cta-final-button {
        font-size: 1rem !important;
        padding: 12px 24px !important;
    }

    /* WhatsApp Flutuante Tablet */
    .whatsapp-flutuante {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    /* Footer Tablet */
    .footer .container {
        max-width: 700px;
        padding: 0 15px;
    }
    
    .footer-main-logo {
        height: 120px;
        max-width: 280px;
    }
    
    .footer-brand-name {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    .footer-tagline {
        font-size: 1.1rem;
    }
    
    .footer-logo-section {
        margin: 0 auto 3rem auto;
        padding: 1.5rem 15px 2rem 15px;
        max-width: 700px;
    }
    
    .new-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 0 15px;
        max-width: 600px;
    }
    
    .footer-col {
        min-height: auto;
        align-items: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-schedule li {
        justify-content: center;
        gap: 15px;
        text-align: center;
        flex-direction: column;
    }
    
    .footer-schedule li span {
        margin-bottom: 0.25rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-footer-contato {
        align-self: center;
        margin-top: 1rem;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    /* Small Mobile Optimizations */
    .main-header {
        height: 60px;
        padding: 0 0.5rem;
    }

    .logo img {
        height: 70px;
    }

    .mobile-menu-toggle {
        font-size: 1.4rem;
        padding: 0.25rem;
    }

    /* Hero Produto Small Mobile */
    .hero-produto {
        padding: 1.25rem 0.5rem !important;
        min-height: auto !important;
    }

    .hero-produto h1 {
        font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
        padding: 0 0.25rem;
    }

    .hero-produto p {
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
        padding: 0 0.25rem;
        line-height: 1.4;
    }

    .hero-produto .img-area img {
        max-width: 95% !important;
        height: auto !important;
    }

    /* Sections Small Mobile */
    section {
        padding: 1.25rem 0.5rem;
        overflow-x: hidden;
    }

    .beneficios-destaque,
    .sobre-produto,
    .info-produto,
    .modo-uso,
    .garantia,
    .faq {
        padding: 1.25rem 0.5rem !important;
    }

    .beneficios-destaque h2,
    .sobre-produto h2,
    .info-produto h2,
    .modo-uso h2,
    .garantia h2 {
        font-size: 1.4rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.3;
        padding: 0 0.25rem;
    }

    /* Cards Small Mobile */
    .beneficio-card {
        padding: 1rem 0.75rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .beneficio-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .beneficio-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .beneficio-card i {
        font-size: 1.8rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* Info Grid Small Mobile */
    .info-column h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }

    .info-item {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
        gap: 0.75rem !important;
    }

    .info-item i {
        font-size: 1.1rem !important;
        width: 20px !important;
    }

    /* Destaque Items Small Mobile */
    .destaques-container .destaque-item {
        gap: 0.75rem !important;
        margin-bottom: 1.25rem !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }

    .destaques-container .destaque-item i {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem;
        width: 35px !important;
        height: 35px !important;
        background: rgba(121, 85, 72, 0.15) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .destaques-container .destaque-item h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Modo de Uso Small Mobile */
    .modo-uso .container div {
        font-size: 0.95rem !important;
        padding: 16px 20px !important;
        max-width: 95% !important;
        margin: 0 auto;
    }

    .modo-uso .container div i {
        font-size: 1.2rem !important;
    }

    /* FAQ Small Mobile */
    .faq-main-title {
        font-size: 1.4rem !important;
    }

    .faq-toggle-button {
        padding: 0.75rem 1rem !important;
    }

    .faq-content {
        padding: 1rem !important;
        gap: 0.75rem !important;
    }

    .faq-item {
        padding: 0.5rem !important;
    }

    .faq-item h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .faq-item p {
        font-size: 0.85rem !important;
        padding-left: 15px !important;
        line-height: 1.4;
    }

    /* CTA Final Small Mobile */
    .cta-final {
        padding: 1.25rem 0.5rem !important;
    }

    .cta-final-link {
        padding: 2rem 1rem !important;
    }

    .cta-final-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3;
    }

    .cta-final-text {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4;
    }

    .cta-final-button {
        font-size: 0.95rem !important;
        padding: 11px 20px !important;
    }

    /* WhatsApp Flutuante Small Mobile */
    .whatsapp-flutuante {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    /* Ultra Small Mobile - Maximum Optimization */
    .main-header {
        height: 55px;
        padding: 0 0.25rem;
    }

    .logo img {
        height: 65px;
    }

    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 0.15rem;
    }

    /* Hero Ultra Small */
    .hero-produto {
        padding: 1rem 0.25rem !important;
    }

    .hero-produto h1 {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        padding: 0;
    }

    .hero-produto p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
        padding: 0;
        line-height: 1.3;
    }

    /* Sections Ultra Small */
    section {
        padding: 1rem 0.25rem;
    }

    .beneficios-destaque,
    .sobre-produto,
    .info-produto,
    .modo-uso,
    .garantia,
    .faq {
        padding: 1rem 0.25rem !important;
    }

    .beneficios-destaque h2,
    .sobre-produto h2,
    .info-produto h2,
    .modo-uso h2,
    .garantia h2 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3;
    }

    /* Cards Ultra Small */
    .beneficio-card {
        padding: 0.75rem 0.5rem;
        margin-bottom: 0.75rem;
    }

    .beneficio-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .beneficio-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .beneficio-card i {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Info Items Ultra Small */
    .info-column h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .info-item {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
        gap: 0.5rem !important;
    }

    .info-item i {
        font-size: 1rem !important;
        width: 18px !important;
    }

    /* FAQ Ultra Small */
    .faq-main-title {
        font-size: 1.2rem !important;
    }

    .faq-toggle-button {
        padding: 0.5rem 0.75rem !important;
    }

    .faq-content {
        padding: 0.75rem !important;
    }

    .faq-item {
        padding: 0.25rem !important;
    }

    .faq-item h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }

    .faq-item p {
        font-size: 0.8rem !important;
        padding-left: 12px !important;
    }

    /* CTA Final Ultra Small */
    .cta-final-link {
        padding: 1.5rem 0.75rem !important;
    }

    .cta-final-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .cta-final-text {
        font-size: 0.85rem !important;
        margin-bottom: 1.25rem !important;
    }

    .cta-final-button {
        font-size: 0.9rem !important;
        padding: 10px 18px !important;
    }

    /* WhatsApp Ultra Small */
    .whatsapp-flutuante {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 10px;
        right: 10px;
    }

    /* Footer Ultra Small */
    .footer .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .footer-main-logo {
        height: 100px;
        max-width: 220px;
    }
    
    .footer-brand-name {
        font-size: 1.7rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-col {
        min-width: auto;
        padding: 0 0.5rem;
    }
    
    .btn-footer-contato {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .new-footer-grid {
        gap: 2rem;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .footer-bottom {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    }

    .footer-col p,
    .footer-about-text {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }

    .footer-links a {
        font-size: 0.85rem !important;
    }

    .footer-schedule {
        font-size: 0.85rem !important;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* =================== ESTILOS DE ESPAÇAMENTO PARA ARTIGOS DE BLOG =================== */

/* Espaçamento geral do artigo */
.blog-article {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.blog-article p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-article h1 {
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.3;
}

.blog-article h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.blog-article h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-article h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-article ul, 
.blog-article ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Espaçamento para boxes destacados */
.blog-highlight-box {
    margin: 2rem 0;
    padding: 30px;
    border-radius: 15px;
}

.blog-highlight-box h3,
.blog-highlight-box h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.blog-highlight-box p {
    margin-bottom: 1rem;
}

.blog-highlight-box ul {
    margin-bottom: 0;
}

/* Espaçamento para seções específicas */
.blog-intro-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

.blog-image-container {
    text-align: center;
    margin: 3rem 0;
}

.blog-separator {
    margin: 3rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
}

/* Espaçamento para CTAs */
.blog-cta-section {
    margin: 3rem 0;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.blog-cta-section h3 {
    margin-bottom: 1rem;
    margin-top: 0;
}

.blog-cta-section p {
    margin-bottom: 2rem;
}

/* Espaçamento para referências e palavras-chave */
.blog-keywords {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.blog-references {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-references ul {
    font-size: 0.9rem;
    color: #666;
    margin-left: 1rem;
}

.blog-references li {
    margin-bottom: 0.75rem;
}

/* Responsividade para espaçamentos */
@media (max-width: 768px) {
    .blog-article {
        font-size: 1rem;
    }
    
    .blog-article h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .blog-article h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .blog-article h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .blog-highlight-box {
        margin: 1.5rem 0;
        padding: 20px;
    }
    
    .blog-intro-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .blog-image-container {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .blog-article {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .blog-article p {
        margin-bottom: 1.25rem;
    }
    
    .blog-article h1 {
        font-size: 1.8rem;
    }
    
    .blog-article h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .blog-article h3 {
        font-size: 1.2rem;
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-highlight-box {
        margin: 1.25rem 0;
        padding: 15px;
    }
    
    .blog-intro-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}