/* Importação de Fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* Variáveis CSS */
:root {
    --primary-color: #28a745; /* Verde */
    --secondary-color: #007bff; /* Azul */
    --dark-color: #343a40; /* Cinza Escuro */
    --light-color: #f8f9fa; /* Cinza Claro */
    --white-color: #ffffff;
    --text-color: #333333;
    --accent-color: #b3ffb9; /* Cor de destaque verde claro */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

section {
    padding: 80px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.active {
    opacity: 1;
    transform: translateY(0);
}

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

.subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: #555;
}

/* Header e Navegação */
header {
    background: var(--white-color);
    color: var(--text-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

nav .logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    color: var(--white-color);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button img {
    height: 50px;
    width: auto;
    margin-right: 8px;
}

.whatsapp-button:hover {
    opacity: 0.8;
    text-decoration: none;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.burger div {
    width: 30px;
    height: 4px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden;
    margin-top: 70px;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    padding: 20px;
    width: 100%;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 40px;
}

.hero-content p {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

.saiba-mais-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 18px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.saiba-mais-button:hover {
    background-color: #218838;
    text-decoration: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}

.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--white-color);
    border-radius: 50%;
    animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Horário Section */
.horario-section {
    background-color: var(--white-color);
    text-align: center;
    padding: 80px 20px;
}

.horario-section h2 {
    color: #000;
    font-size: clamp(1.2rem, 6vw, 2.1rem);
    margin-bottom: 2.5rem;
}

.horario-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: clamp(25px, 6vw, 40px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horario-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.horario-item img {
    height: 100px;
    width: auto;
    margin-right: 15px;
}

.horario-item h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0;
}

.horario-details p {
    font-size: 1.15rem;
    margin: 8px 0;
}

.horario-details p:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.horario-card .precos {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.horario-button {
    margin-top: 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 14px 35px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.horario-button:hover {
    background-color: #218838;
    transform: translateY(-3px);
    text-decoration: none;
}

/* About Section */
.about-section {
    background-color: var(--accent-color);
    text-align: center;
    padding: 80px 20px;
}

.about-section h2 {
    color: #000;
    font-size: clamp(2.2rem, 6vw, 2.8rem);
    margin-bottom: 2.5rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.about-text {
    text-align: left;
    font-size: 1.2rem;
    flex: 1;
    width: 100%;
}

.about-text p {
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 1.2rem;
}

.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.stat-card {
    background-color: var(--white-color);
    padding: clamp(20px, 5vw, 35px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 320px;
}

.stat-card img {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
}

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

/* Services Section */
.services-section {
    background-color: var(--white-color);
    text-align: center;
    padding: 80px 20px;
}

.services-section h2 {
    color: #000;
    font-size: clamp(2.2rem, 6vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.services-section h3 {
    color: var(--dark-color);
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--accent-color);
    padding: clamp(25px, 5vw, 35px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
    font-weight: 600;
}

.service-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-family: var(--body-font);
}

/* Team Section */
.team-section {
    background-color: var(--accent-color);
    text-align: center;
    padding: 80px 20px;
}

.team-section h2 {
    color: #000;
    font-size: clamp(2.2rem, 6vw, 2.8rem);
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--white-color);
    padding: clamp(25px, 5vw, 35px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
}

.team-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.team-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--accent-color);
    text-align: center;
    padding: 80px 20px;
}

.gallery-section h2 {
    color: #000;
    font-size: clamp(2.2rem, 6vw, 2.8rem);
    margin-bottom: 2.5rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bento Grid Layout - Diferentes tamanhos */
.bento-item-1 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item-2 {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item-5 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item-6 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item-7 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item-8 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item-9 {
    grid-column: span 1;
    grid-row: span 1;
}

/* Contact Section */
.contact-section {
    background-color: var(--white-color);
    text-align: center;
    padding: 80px 20px;
}

.contact-section h2 {
    color: #000;
    font-size: clamp(2.2rem, 6vw, 2.8rem);
    margin-bottom: 2.5rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: var(--white-color);
    padding: clamp(25px, 5vw, 35px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.contact-info-card h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item img {
    height: 45px;
    width: auto;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    margin: 0;
    font-size: 1.15rem;
    flex: 1;
    font-weight: 500;
}

.contact-item .contact-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin-top: 3px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-button-container {
    text-align: center;
    margin-top: 30px;
}

.whatsapp-send-msg-button img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.whatsapp-send-msg-button img:hover {
    transform: scale(1.05);
}

/* Location Section */
.location-section {
    background-color: var(--white-color);
    text-align: center;
    padding: 80px 20px;
}

.location-section h2 {
    color: #000;
    font-size: clamp(2.2rem, 6vw, 2.8rem);
    margin-bottom: 2.5rem;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container,
.video-container {
    flex: 1;
    min-width: 300px;
    background-color: var(--dark-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 350px;
    height: 400px;
}

.map-container #map {
    height: 100%;
    width: 100%;
    display: block;
}

.video-container video {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    display: block;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 50px 20px 25px 20px;
    font-size: 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    text-align: center;
    gap: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-links,
.footer-legal {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links h3,
.footer-legal h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: var(--white-color);
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--white-color);
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    flex: 1;
    min-width: 200px;
    font-size: 1rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cookie-banner button:hover {
    opacity: 0.8;
}

#accept-cookies {
    background-color: var(--primary-color);
    color: white;
}

#manage-cookies {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.cookie-option {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option label {
    cursor: pointer;
    font-size: 1.05rem;
    margin: 0;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: flex-end;
}

.modal-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

#save-cookie-preferences {
    background-color: var(--primary-color);
    color: white;
}

.close-button {
    background-color: transparent;
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
}

/* Legal Pages */
.legal-page-container {
    max-width: 900px;
    margin: 100px auto 50px auto;
    padding: 40px 20px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-page-container h1 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    color: var(--dark-color);
    margin-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

.legal-page-container h2 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    color: var(--dark-color);
    margin-top: 35px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.legal-page-container p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-page-container ul {
    margin-left: 25px;
    margin-bottom: 18px;
    list-style-type: disc;
}

.legal-page-container ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.legal-page-container strong {
    font-weight: 600;
}

/* ========== MEDIA QUERIES - TABLETS (1024px) ========== */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .about-content {
        flex-direction: row;
        gap: 40px;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 240px;
    }
    
    .location-content {
        flex-direction: row;
    }
    
    .map-container,
    .video-container {
        height: 350px;
    }
}

/* ========== MEDIA QUERIES - TABLETS (768px) ========== */
@media (max-width: 768px) {
    nav {
        padding: 0 15px;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: calc(100vh - 70px);
        top: 70px;
        background-color: var(--dark-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 50px;
        gap: 35px;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links li {
        opacity: 0;
        transition: opacity 0.4s ease-in-out 0.2s;
    }

    .nav-links li a {
        color: var(--white-color);
        font-size: 1.25rem;
        font-weight: 600;
        transition: color 0.3s ease;
    }

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

    .nav-active {
        transform: translateX(0%);
    }

    .nav-active li {
        opacity: 1;
    }

    .burger {
        display: flex;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-section {
        min-height: 500px;
        margin-top: 70px;
    }

    .hero-logo {
        max-width: 450px;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .about-image img {
        max-width: 100%;
    }

    .stat-card {
        min-width: 100%;
    }

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

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .bento-item-1 {
        grid-column: span 2;
    }

    .bento-item-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item-6 {
        grid-column: span 2;
    }

    .bento-item-9 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info-card {
        min-width: 100%;
    }

    .location-content {
        flex-direction: column;
    }

    .map-container, .video-container {
        min-width: 100%;
        height: 300px;
        min-height: 300px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .footer-logo {
        width: 100%;
    }

    .footer-links,
    .footer-legal {
        width: 100%;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner button {
        width: 100%;
    }
}

/* ========== MEDIA QUERIES - SMARTPHONES (480px) ========== */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    nav .logo img {
        height: 40px;
    }

    .nav-links li a {
        font-size: 1.15rem;
    }

    .whatsapp-button {
        display: none;
    }

    .whatsapp-button img {
        height: 40px;
        margin-right: 10px;
    }

    .hero-section {
        min-height: 550px;
        margin-top: 60px;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }

    .saiba-mais-button {
        padding: 16px 32px;
        font-size: 1.05rem;
    }

    section {
        padding: 50px 15px;
    }

    .horario-section h2,
    .about-section h2,
    .services-section h2,
    .team-section h2,
    .gallery-section h2,
    .contact-section h2,
    .location-section h2 {
        font-size: 2rem;
        margin-bottom: 1.8rem;
    }

    .services-section h3 {
        font-size: 1.4rem;
    }

    .horario-card {
        padding: 25px;
    }

    .horario-item img {
        height: 45px;
        margin-right: 12px;
    }

    .horario-item h3 {
        font-size: 1.5rem;
    }

    .horario-details p {
        font-size: 1.05rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .bento-item-1,
    .bento-item-6 {
        grid-column: span 2;
    }

    .bento-item-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item-9 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .stat-card {
        min-width: 100%;
        padding: 20px;
    }

    .stat-card img {
        height: 55px;
    }

    .stat-card p {
        font-size: 1rem;
    }

    .contact-info-card {
        min-width: 100%;
        padding: 25px;
    }

    .contact-info-card h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .contact-item img {
        height: 35px;
    }

    .contact-item p {
        font-size: 1.05rem;
    }

    .map-container,
    .video-container {
        height: 280px;
        min-height: 280px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-links h3,
    .footer-legal h3 {
        font-size: 1.1rem;
    }

    .footer-links ul li,
    .footer-legal ul li {
        font-size: 0.95rem;
    }

    .cookie-banner {
        padding: 15px 18px;
        gap: 12px;
    }

    .cookie-banner p {
        font-size: 0.95rem;
        min-width: 100%;
    }

    .cookie-banner button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .cookie-settings-modal .modal-content {
        padding: 30px;
    }

    .cookie-settings-modal h2 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .cookie-settings-modal label {
        font-size: 0.95rem;
    }

    .legal-page-container {
        margin-top: 70px;
        padding: 20px;
    }

    .legal-page-container h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .legal-page-container h2 {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .legal-page-container p,
    .legal-page-container ul li {
        font-size: 1rem;
    }
}

/* ========== MEDIA QUERIES - SMARTPHONES PEQUENOS (360px) ========== */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    nav .logo img {
        height: 35px;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-content p {
        font-size: 1.15rem;
        margin-bottom: 25px;
    }

    .saiba-mais-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .services-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 120px;
    }

    .footer-content {
        gap: 18px;
    }

    .footer-logo img {
        height: 50px;
    }

    .map-container,
    .video-container {
        height: 250px;
        min-height: 250px;
    }
}

/* ========== MEDIA QUERIES - ORIENTAÇÃO LANDSCAPE ========== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
        height: auto;
        padding: 80px 20px;
    }
    
    .hero-logo {
        max-width: 300px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .nav-links {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}