:root {
    /* Cores Premium do Logotipo (Preto e Branco com acentos cinza) */
    --primary-color: #1a1a1a;
    --primary-hover: #333333;
    --text-dark: #111111;
    --text-medium: #555555;
    --bg-light: #f4f4f4;
    --white: #ffffff;
    --whatsapp-green: #25d366;

    --font-heading: "Poppins", sans-serif;
    --font-body: "Inter", sans-serif;
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
.section {
    padding: 100px 0;
}
.bg-light {
    background-color: var(--bg-light);
}
.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
h1 {
    font-size: 2.8rem;
    letter-spacing: -1px;
}
h2 {
    font-size: 2.2rem;
}
h3 {
    font-size: 1.4rem;
}

/* Reset Global de Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

p {
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
}

/* Sticky Bar */
.sticky-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1002;
}
.sticky-bar p {
     margin-bottom: 0.01rem;
}
.sticky-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}
.sticky-bar a:hover {
    opacity: 0.8;
}

/* Header - Fixo no topo */
.header {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    max-height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
}
.nav-link:hover {
    color: var(--text-medium);
}
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Contentores de Botões - Centralização */
.action-wrapper,
.section-footer,
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 35px;
    margin-bottom: 10px;
}
.section-header {
    text-align: center !important;
}
.product-content .action-wrapper,
.about-text .action-wrapper {
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: auto;
    max-width: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-sm {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 10px 22px;
    font-size: 0.8rem;
    width: auto;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero */
.hero {
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-left: 8px solid var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}
.hero-actions {
    justify-content: flex-start;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 40px;
}
.about-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Products/Services */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.product-item:nth-child(even) {
    direction: rtl;
}
.product-item:nth-child(even) .product-content {
    direction: ltr;
}
.product-img {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.product-img:hover img {
    transform: scale(1.05);
}
.benefits-list {
    list-style: none;
    margin: 30px 0;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
}
.benefits-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}
.feature-card:hover {
    transform: translateY(-10px);
}
.icon-box {
    width: 60px;
    height: 60px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}
/* Grid de Serviços em Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 5px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 0.5fr);
    gap: 20px;
    margin-top: 30px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
}
.stars {
    color: #ffb300;
    margin-bottom: 20px;
}
.client-name {
    display: block;
    margin-top: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.google-link {
    font-size: 0.75rem;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}
.google-link:hover {
    color: var(--primary-color);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 40px auto;
}
details {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
summary {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    color: var(--primary-color);
}
summary::after {
    content: "+";
    font-size: 1.5rem;
}
details[open] summary::after {
    content: "-";
}
.faq-content {
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

/* Contact/Map */
.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}
.location-info {
    padding: 30px;
    background: var(--white);
}
.location-map {
    min-height: 450px;
}
.contact-list {
    list-style: none;
    margin-bottom: 30px;
}
.contact-list li {
    margin-bottom: 15px;
}
.location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}
.badge {
    background: #eee;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #ccc;
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}
.footer h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.footer-logo {
    margin-bottom: 10px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
}
.footer-bottom p {
    margin-bottom: 0;
} /* Remove margem extra no rodapé */

/* NOVO: Link de Privacidade no Rodapé */
.footer-privacy-link {
    text-decoration: underline !important; /* Força o sublinhado */
    color: #999;
    margin-left: 5px;
    font-weight: 500;
}

.footer-privacy-link:hover {
    color: var(--white); /* Cor de destaque no hover */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-links a {
    font-size: 2.5rem;
    color: var(--white);
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    padding: 20px;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    max-height: 85vh;
    max-width: 90%;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Mobile */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    .about-grid,
    .location-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .section-header {
        text-align: left !important;
    }
    .text-center,
    .section-footer {
        text-align: left !important;
    }
    .about-text,
    .product-content {
        text-align: left !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        border-top: 1px solid #eee;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }

    .hero-content {
        border-left: 5px solid var(--white);
        padding: 25px;
        border-radius: 0 var(--radius) var(--radius) 0;
        text-align: left !important;
    }

    .btn {
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
        font-size: 0.6rem;
        padding: 14px 20px;
    }
    .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 0.5fr);
    gap: 20px;
    margin-top: 30px;
}
    .action-wrapper,
    .section-footer,
    .hero-actions {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom p {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    .header-logo {
        max-height: 60px;
        width: auto;
    }
    .footer-logo {
        max-height: 100px;
        width: auto;
    }
    .services-grid { grid-template-columns: 1fr; }
}