* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    position: relative;
}

header {
    position: fixed;
    top: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 100;
    transition: height 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.952);
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 150px;
    flex-shrink: 0;
}

.logo {
    width: 250%;
    height: auto;
    margin: 0;
    display: block;
    max-width: 150x;
    transition: transform 0.0s ease;
    padding: 10px 10px;
}

.logo-link:hover .logo {
    transform: scale(1.1);
}

.logo-link.touch-feedback-active .logo {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    gap: 20px;
    margin-top: 3px;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Espaçamento entre o menu, toggle e o carrinho */
    margin-right: 20px;
    /* Margem da borda direita da tela */
}

nav a {
    color: #000000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    transform: scale(1);
    display: inline-block;
}

/* === NOVA COR === */
nav a:hover {
    color: #0D47A1;
    transform: scale(1.05);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    /* === NOVA COR === */
    background-color: #0D47A1;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link i {
    font-size: 28px;
    line-height: 0;
}

.whatsapp-link span {
    font-size: 20px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 11;
}

.menu-toggle span {
    height: 3px;
    width: 30px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#produtos,
#sobre,
#proposito,
#contato,
#endereco {
    scroll-margin-top: 100px;
}

.hero-section {
    height: 120vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2vw;
    color: #020202;
    position: relative;
    background-image: url('background-hero-desktop.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-background-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 45%;
    z-index: 6;
    text-align: center;
    align-items: center;
    padding-left: 10px;
    transform: translateY(-50px);
}

.hero-content h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0px;
    width: 100%;
    color: #000000;
    text-align: center;
    border-radius: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

.hero-content p {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #000000;
    text-align: center;
    width: 100%;
    border-radius: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-content-p-hilight {
    color: #2196F3;
    font-weight: bold;

}

.hero-content h1,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content.visible h1,
.hero-content.visible p,
.hero-content.visible .btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.visible p {
    transition-delay: 0.2s;
}

.hero-content.visible .btn {
    transition-delay: 0.4s;
}

/* === NOVAS CORES DOS BOTÕES === */
.btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    color: #ffffff;
    background: linear-gradient(90deg, #1976D2, #0D47A1);
    /* Tom de azul */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.btn:hover {
    transition-duration: 0.05s;
    transition-timing-function: ease-out;
    background: linear-gradient(90deg, #2196F3, #1E88E5);
    box-shadow: 0 0 20px rgba(25, 118, 210, 0.7);
    /* Sombra correspondente */
}

/* Estilos da nova seção de produtos */
.products-container {
    background-color: #f4f4f9;
    padding: 80px 20px;
    text-align: center;
    min-height: 100vh;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 1rem;
    color: #6c757d;
    flex-grow: 1;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    width: 100%;
    margin-top: auto;
}

.about-us-section {
    display: flex;
    min-height: 82vh;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
}

.about-us-logo {
    max-width: 150px;
    width: 150%;
    height: auto;
    margin-bottom: 30px;
}

.about-us-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
}

.about-us-section p {
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: justify;
}

.purpose-section {
    padding: 80px 30px;
    text-align: center;
    background-color: #f4f4f9;
}

.purpose-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 20px;
}

.purpose-section p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.purpose-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.purpose-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.purpose-card-content {
    padding: 35px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.purpose-icon {
    font-size: 3rem;
    /* === NOVA COR === */
    color: #1976D2;
    margin-bottom: 20px;
    line-height: 1;
}

.purpose-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #343a40;
    margin-bottom: 15px;
}

.purpose-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    flex-grow: 1;
}

.address-section {
    height: 90vh;
    padding: 30px 30px;
    text-align: center;
    margin-bottom: 1px;
}

.address-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 10px;
}

#endereco-link {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

#endereco-link:hover {
    color: #000;
    transform: scale(1.05);
}

#endereco-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #333;
    transition: width 0.3s ease;
}

#endereco-link:hover::after {
    width: 100%;
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 410px;
    border-radius: 15px;
    top: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.map-overlay::after {
    content: 'Clique aqui para interagir com o mapa';
    font-weight: 600;
}

.map-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.contact-section {
    height: auto;
    min-height: 90vh;
    padding: 30px 30px;
    text-align: center;
    background-color: #f4f4f9;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.contact-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    margin-top: 10px;
}

.contact-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-card p {
    color: #000000;
}

.contact-card .btn {
    opacity: 1;
    transform: none;
    margin-top: 20px;
    display: inline-block;
}

.social-bar {
    position: fixed;
    bottom: 20px;
    left: 52%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 15px;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    background-color: #2e2e2eab;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-bar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-bar .facebook-icon:hover {
    background-color: #004eb4;
}

.social-bar a[href*="wa.me"]:hover {
    background-color: #25D366;
}

.social-bar .instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

footer {
    padding: 40px 20px;
    padding-bottom: 80px;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
}

.legal-page-content {
    background-color: #ffffff;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 50px 20px;
}

.legal-page-content h1 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.legal-page-content>p:first-of-type {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.legal-page-content h2 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 1.9rem;
    margin-top: 45px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
}

.legal-page-content p,
.legal-page-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    color: #343a40;
    margin-bottom: 1.2em;
}

.legal-page-content ul,
.legal-page-content ol {
    padding-left: 25px;
    margin-bottom: 1.2em;
}

.legal-page-content li {
    margin-bottom: 0.8em;
}

.legal-page-content strong {
    color: #000;
}

/* === NOVA COR === */
.legal-page-content a {
    color: #0D47A1;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted #0D47A1;
    transition: all 0.3s ease;
}

.legal-page-content a:hover {
    color: #ffffff;
    background-color: #0D47A1;
    border-bottom-color: #0D47A1;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 90%;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #535353;
    border-top: none;
    padding: 20px 30px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

#consent-banner.hidden {
    transform: translateY(150%);
}

.consent-text {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === NOVA COR === */
.consent-text a {
    color: #64B5F6;
    text-decoration: underline;
    font-weight: 600;
}

.consent-text a:hover {
    color: #fff;
}

#accept-consent-btn {
    flex-shrink: 0;
    opacity: 1;
    transform: none;
}

/* Estilos para o ícone do carrinho */
.cart-icon {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.2rem;
    color: #000000;
    margin-right: 20px;
    transition: transform 0.2s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 5px;
    right: -10px;
    background-color: #1976D2;
    /* === NOVA COR === */
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
}

/* Estilos do modal do carrinho */
.cart-modal {
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cart-modal.hidden {
    display: none;
}

.cart-modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
}

.cart-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-name {
    font-weight: 600;
    flex: 1;
}

.cart-item-price {
    font-weight: 500;
    color: #555;
    margin-left: 20px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: red;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}

.cart-summary {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 2px solid #ccc;
    padding-top: 15px;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
}

.empty-cart-message {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 30px;
}

.checkout-form {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.checkout-form-section {
    margin-bottom: 20px;
}

.checkout-form-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.form-group-radio {
    display: flex;
    gap: 20px;
}

.form-group-radio label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.address-fields {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    transition: opacity 0.4s ease, max-height 0.4s ease;
    opacity: 1;
    max-height: 1000px;
    /* Altura suficiente para conter os campos */
    overflow: hidden;
}

.address-fields.hidden {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    margin-top: 0;
    pointer-events: none;
    /* Impede interação quando escondido */
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:read-only {
    background-color: #f4f4f4;
    cursor: not-allowed;
}

#cep-loader {
    font-style: italic;
    color: #0D47A1;
    font-size: 0.8rem;
    margin-top: 5px;
}

#cep-loader.hidden {
    display: none;
}

.form-group-inline {
    display: flex;
    gap: 15px;
}

.form-group-inline .form-group {
    flex: 1;
}


@media (max-width: 992px) {
    header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        padding: 0 15px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.952);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        z-index: 101;
    }

    header nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.952);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        padding: 20px 0;
        box-shadow: none;
        z-index: 100;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    header.open {
        height: 80px;
        flex-wrap: nowrap;
        /* Impede a quebra de linha */
        padding-bottom: 0;
    }

    header.open nav {
        display: flex;
        width: 100%;
        order: 3;
        margin-top: 20px;
    }

    header.open nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
        padding-left: 0;

    }

    header.open nav ul li:not(:last-child) {
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);

        padding-bottom: 15px;
        margin-bottom: 0;

    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .logo-link {
        flex-shrink: 0;
        max-width: 120px;
        width: auto;
        padding: 0;
    }

    .logo {
        width: 100%;
        max-width: 120px;
        padding: 0;
    }

    .menu-toggle {
        display: flex;
        position: static;
        margin: 0;
        order: 2;
    }

    .cart-icon {
        position: relative;
        margin: 0;
        font-size: 1.9rem;
        z-index: auto;
        background: none;
        border: none;
        color: #000;
        order: 1;
    }

    .cart-count {
        top: 0px;
        right: -5px;
    }

    .cart-modal-content {
        width: 95%;
        padding: 20px;
    }

    /* ================================== */
    /* AJUSTES GERAIS DAS SEÇÕES */
    /* ================================== */

    #produtos,
    #sobre,
    #proposito,
    #contato,
    #endereco {
        scroll-margin-top: 80px;
    }

    .hero-section {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        box-sizing: border-box;
        background: none;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('background-hero-mobile.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 160px;
    }

    .hero-content-p-hilight {
        color: #ffffff;
        font-weight: bold;

    }

    .hero-content h1 {
        font-size: 1.6rem;
        text-align: center;
        color: #ffffff;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
        margin-bottom: 3px;
    }

    .hero-content p {
        font-size: 1rem;
        text-align: center;
        color: #000000;
        margin-bottom: 5px;
    }

    .hero-content .btn {
        width: 70%;
        max-width: 300px;
        padding: 15px 10px;
    }

    .products-container {
        padding: 60px 10px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .product-grid {
        gap: 20px;
    }

    .product-card {
        padding: 15px;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .add-to-cart-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .about-us-section {
        padding: 40px 20px;
    }

    .about-us-section h2 {
        font-size: 2rem;
    }

    .about-us-section p {
        font-size: 1rem;
    }

    .purpose-section {
        padding: 60px 20px;
    }

    .purpose-section h2 {
        font-size: 2.2rem;
    }

    .purpose-section p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .purpose-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .purpose-card {
        max-width: 300px;
    }

    .address-section {
        height: auto;
        padding: 60px 20px;
        margin: 0;
    }

    .address-section h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    #endereco-link {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

    .map-container {
        height: 280px;
        top: 15px;
    }

    .map-overlay::after {
        font-size: 1rem;
        padding: 10px;
    }

    .contact-section {
        height: auto;
        padding: 60px 20px;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .contact-card {
        width: 95%;
        max-width: 320px;
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .contact-card .btn {
        width: 70%;
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    /* ================================== */
    /* FOOTER, SOCIAL E CONSENTIMENTO */
    /* ================================== */

    footer {
        padding: 40px 20px;
        padding-bottom: 80px;
        /* Espaço para a social bar não cobrir */
    }

    footer p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .social-bar {
        bottom: 10px;
        gap: 10px;
    }

    .social-bar a {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    #consent-banner {
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }

    .consent-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    #accept-consent-btn {
        width: 80%;
        max-width: 280px;
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* ==================================================================== */
/* CORREÇÃO DO HERO PARA CELULAR DEITADO (MODO PAISAGEM)                */
/* Cole este bloco no final do seu arquivo style.css                    */
/* ==================================================================== */

@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 40px;
        align-items: flex-start;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('background-hero-desktop.jpg');
        background-size: cover;
        background-position: center;
    }



    .hero-content {
        text-align: center;
        align-items: center;
        top: 15px;

    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 5px;
        color: white;
    }


    .hero-content p {
        font-size: 0.6rem;
        text-align: center;
        margin-bottom: 10px;
        color: white;
    }
}