/* ===========================
   Responsividade - Revita Odontologia
   =========================== */

/* Tablet e dispositivos menores (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-title .highlight-gold {
    color: var(--color-gold);
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    margin-top: 10px;
    letter-spacing: 2px;
    }
    
    .diferenciais-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .tecnologia-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .testimonial-card {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-buttons {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
        --container-padding: 1rem;
    }
    
    .section {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    /* ============ HEADER ============ */
    .header {
        padding: var(--spacing-sm) 0;
    }
    
    .header-content {
        padding: 0 var(--spacing-lg);
    }
    
    .logo {
        height: 80px;
    }
    
    .logo-img {
        max-height: 80px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .nav.active {
        max-height: 300px;
        padding: var(--spacing-lg);
    }
    
    .nav-link {
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid var(--color-border);
        font-size: var(--font-size-base);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* ============ HERO ============ */
    .hero {
        min-height: 100vh;
        padding-top: 35px;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        line-height: var(--line-height-tight);
    }
    
    .hero-title .highlight-gold {
    color: var(--color-gold);
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    margin-top: 10px;
    letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* ============ SECTION HEADERS ============ */
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .section-subtitle-large {
        font-size: var(--font-size-xl);
    }
    
    .section-description {
        font-size: var(--font-size-base);
    }
    
    /* ============ AVALIAÇÕES ============ */
    .evaluation-slide {
        flex: 0 0 calc(50% - var(--spacing-md));
        min-width: 150px;
    }
    
    /* ============ GRIDS ============ */
    .results-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .results-grid2 {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .results-title {
        font-size: var(--font-size-2xl);
    }
    
    /* ============ DIFERENCIAIS ============ */
    .diferenciais-list li {
        margin-bottom: var(--spacing-md);
    }
    
    /* ============ CARROSSEL ============ */
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-2xl);
    }
    
    .carousel-btn-prev {
        left: var(--spacing-sm);
    }
    
    .carousel-btn-next {
        right: var(--spacing-sm);
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    /* ============ FAQ ============ */
    .faq-question {
        padding: var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    .faq-answer p {
        padding: var(--spacing-lg);
    }
    
    /* ============ LOCALIZAÇÃO ============ */
    .map-container {
        height: 300px;
    }
    
    .location-buttons {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .location-buttons .btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    /* ============ CTA FINAL ============ */
    .cta-title {
        font-size: var(--font-size-3xl);
    }
    
    .cta-text {
        font-size: var(--font-size-base);
    }
    
    /* ============ FOOTER ============ */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-credit {
        font-size: var(--font-size-xs);
    }
}

/* Mobile pequeno (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        --spacing-3xl: 2rem;
        --spacing-2xl: 1.5rem;
    }
    
    .section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
 
    .results-grid2 {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .solution-text {
        font-size: var(--font-size-xl);
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-title .highlight-gold {
    font-size: 3.5rem;
    font-weight: 400;
    margin-top: 3px;
    letter-spacing: 2px;
    }
    
    .section-subtitle-large {
        font-size: var(--font-size-xl);
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
    }
    
    .benefit-card {
        padding: var(--spacing-lg);
    }
    
    .benefit-icon {
        font-size: var(--font-size-4xl);
    }
    
    .benefit-title {
        font-size: var(--font-size-xl);
    }
    
    .result-highlight {
        font-size: var(--font-size-xl);
    }
    
    .subsection-title {
        font-size: var(--font-size-lg);
    }
    
    .sobre-quote {
        font-size: var(--font-size-lg);
        padding: var(--spacing-lg);
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-image {
        height: 200px;
    }
    
    .testimonial-text {
        font-size: var(--font-size-base);
    }
    
    .faq-question {
        font-size: var(--font-size-base);
        padding: var(--spacing-md);
    }
    
    .faq-answer p {
        padding: var(--spacing-md);
    }
    
    .map-container {
        height: 250px;
    }
    
    .cta-title {
        font-size: var(--font-size-2xl);
    }
    
    .cta-text {
        font-size: var(--font-size-sm);
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-xl);
    }
    
    .evaluation-slide {
        flex: 0 0 calc(100% - var(--spacing-md));
        min-width: 100%;
    }
}

/* Landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
}

/* Ajustes para impressão */
@media print {
    .header {
        position: static;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero-video {
        display: none;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .btn {
        border: 2px solid var(--color-primary);
    }
}

/* Suporte para telas muito grandes */
@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
    
    .section {
        padding: var(--spacing-4xl) var(--spacing-lg);
    }
    .proporcao-1-1 {
  width: 70%; /* Ajuste o tamanho da largura conforme necessário */
  aspect-ratio: 1 / 1; /* Define a proporção */
  object-fit: cover;  /* Garante que a imagem preencha sem distorcer */
}
}

