:root {
    --primary-color: #FFD700; /* Yellow / Gold */
    --primary-hover: #F9A825;
    --dark-bg: #ffffff; /* Changed to White */
    --light-bg: #f4f4f4; /* Light Grey for alternate sections */
    --header-bg: #000000; /* Black for header to support white logo */
    --card-bg: #ffffff;
    --text-color: #333333; /* Dark text */
    --text-muted: #666666;
    --white: #ffffff;
    --black: #000000;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow: 0 5px 20px rgba(0,0,0,0.1); /* Softer shadow for light theme */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, 
.btn, .nav-link {
    font-family: var(--font-heading);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.section-padding {
    padding: 100px 0;
}

/* About & Services Sections */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}
.working-hours-box {
    display: inline-block;
    background: #fdfdfd;
    padding: 30px 60px;
    border-radius: 25px;
    border: 1px solid #eee;
    margin-top: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}
.working-hours-box h4 {
    margin-bottom: 25px;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.working-hours-box h4 i {
    margin-right: 15px;
    color: var(--primary-color);
}
.working-hours-box p {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.1rem;
}
.services {
    background-color: #fafafa;
}

.text-primary {
    color: #ccac00; /* Slightly darker gold for readability on white */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--black);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.nav-link.btn-outline {
    padding: 10px 35px; /* Mais largo */
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    transition: all 0.3s ease;
    min-width: 160px; /* Garante largura mínima */
    text-align: center;
}

.nav-link.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--black);
}

.full-width {
    width: 100%;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Top Bar */
.top-bar {
    background-color: #f8f8f8;
    color: var(--text-color);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-weight: 600;
}

.top-info i {
    color: #000;
}

.top-promo strong {
    color: #000;
    background-color: var(--primary-color);
    padding: 2px 6px;
    border-radius: 3px;
}

/* Main Header */
.main-header {
    background-color: var(--header-bg); /* Black background for logo visibility */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Navigation (for principal.html) */
.nav {
    position: relative;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-menu li {
    display: inline-block;
    position: relative;
}
.nav-link {
    color: var(--white);
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-link:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-link:not(.btn):hover::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Products & Gallery */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.product-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
}
.product-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 6px; margin-bottom: 12px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.gallery-grid img { width: 100%; height: 140px; object-fit: cover; border-radius: 6px; }

/* Responsive nav */
@media (max-width: 880px) {
    .nav-menu { 
        position: fixed; 
        right: -100%; 
        top: 0; 
        background: rgba(0,0,0,0.98); 
        padding: 80px 40px; 
        flex-direction: column; 
        width: 100%; 
        height: 100vh;
        transition: 0.4s ease-in-out;
        display: flex; /* Always flex but hidden via right */
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
    }
    .nav-menu.show { 
        right: 0; 
    }
    .nav-toggle { 
        display: none !important; 
    }
    .header-flex {
        justify-content: center !important;
    }
    .nav-link { 
        color: #fff; 
        padding: 15px 0; 
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-link.btn {
        margin-top: 20px;
        border-bottom: none;
        background: var(--primary-color);
        color: #000;
    }
}

@media (max-width: 640px) {
    .hero { height: 470px; }
    .hero h1 { font-size: 2rem; }
}

/* Hero Section */
.hero {
    position: relative;
    height: 720px;
    background: url('../imagens/hero.png'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: -1px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.rating-badge {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.rating-badge .stars {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.rating-badge .score {
    font-weight: 700;
    margin-right: 5px;
    color: #fff;
}

.rating-badge .reviews {
    font-size: 0.8rem;
    color: #ddd;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 90%;
    color: #f0f0f0;
    font-weight: 500;
}

.hero-trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.trust-item div {
    line-height: 1.2;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.trust-item small {
    font-weight: 400;
    color: #ddd;
    font-size: 0.85rem;
}

/* Features Bar */
.features-bar {
    background-color: var(--primary-color);
    color: var(--black);
    padding: 20px 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bar-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.bar-item i {
    font-size: 1.5rem;
    color: var(--black);
}

/* Services */
.services {
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    color: #555;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 800;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    aspect-ratio: 1 / 1;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.highlight-card {
    border: 2px solid var(--primary-color) !important;
    background: #fff;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

/* Ajuste específico para cards com muito conteúdo (Landing Pages) */
.services-intro-split + .services-wrapper .service-card {
    aspect-ratio: auto;
    min-height: 450px;
    padding: 40px 25px;
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--black);
    font-weight: 800;
    line-height: 1.2;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.service-card .link-btn {
    margin-top: 15px;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.service-card h4 {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    width: 100%;
}

.service-list li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Testimonials */
.testimonials.dark-bg {
    background-color: var(--light-bg); /* Now light grey */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #f0f0f0;
}

.client-rating {
    color: #eebf00; /* Gold */
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.testimonial-box p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info strong {
    display: block;
    color: var(--black);
    font-size: 1rem;
}

.client-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Reasons */
.reasons {
    background-color: var(--white);
    background-image: radial-gradient(#eee 1px, transparent 1px);
    background-size: 20px 20px;
}

.reasons-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.reasons-header h2 span {
    color: #000;
    background: var(--primary-color);
    padding: 0 10px;
    display: inline-block;
    transform: skew(-5deg);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.reason-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.reason-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); /* Increased shadow on hover */
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.icon-box {
    min-width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.reason-content h4 {
    margin-bottom: 8px;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.reason-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Contact */
.contact-section {
    background-color: #f9f9f9;
    padding: 100px 0;
    border-top: 1px solid #eee;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-text {
    flex: 1;
    min-width: 300px;
}

.contact-text h3 {
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-text h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-text p {
    color: #555;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.method-item:hover {
    transform: translateX(5px);
}

.method-item i {
    font-size: 1.8rem;
    color: #333;
}

.method-item strong {
    display: block;
    color: var(--black);
}

.method-item span {
    color: #666;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Stronger shadow for floating effect on white */
}

.contact-form-wrapper h3 {
    color: var(--black);
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-family: inherit;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #000;
    padding: 50px 0;
    color: #999;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-links a {
    color: #bbb;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        height: auto;
        padding: 100px 0;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .top-bar .container {
        justify-content: center;
        gap: 5px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: jump-pulse 3s infinite;
}

.whatsapp-float-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    animation: none;
}

@keyframes jump-pulse {
    0% { transform: translateY(0); }
    5% { transform: translateY(-10px); }
    10% { transform: translateY(0); }
    15% { transform: translateY(-5px); }
    20% { transform: translateY(0); }
    100% { transform: translateY(0); }
}

/* Mini Chat Widget con Logo WhatsApp */
.mini-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 9998;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.mini-chat-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: #25d366; /* WhatsApp Green */
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-agent {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-agent i {
    font-size: 24px;
}

.chat-agent span {
    font-size: 1rem;
    font-weight: 700;
}

.close-chat-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-body {
    padding: 20px;
    background: #e5ddd5; /* WhatsApp Chat Background */
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
}

.chat-body p {
    margin-bottom: 10px;
    background: white;
    padding: 12px;
    border-radius: 10px;
    border-top-left-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.chat-footer {
    padding: 15px;
    background: white;
    text-align: center;
}

.chat-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.chat-cta-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
}
.google-logo-review {
    height: 20px;
    margin-top: 5px;
    display: block; 
}


/* Privacy Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    z-index: 10001;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    overflow-y: auto;
    padding-right: 15px;
    margin-top: 20px;
    text-align: left;
    color: #333;
    line-height: 1.6;
}

.modal-body h2 {
    color: var(--black);
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
    display: inline-block;
}

.modal-body h3 {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #444;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 5px;
}



/* --- MOBILE OPTIMIZATION OVERHAUL (Improved) --- */
@media (max-width: 768px) {
    
    /* Global Container */
    .container {
        padding: 0 20px;
    }

    /* Top Bar - Hide non-essential info to save space */
    .top-bar .container {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .top-info span {
        margin: 0 5px;
        font-size: 0.7rem;
    }
    
    /* Header - Sticky and Compact */
    .main-header {
        padding: 10px 0;
    }

    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-area {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .site-logo {
        max-height: 40px; /* Smaller logo */
    }

    /* Hero Section - Better Readability */
    .hero {
        height: auto;
        min-height: 85vh; /* Takes most of the screen */
        padding: 60px 0;
        text-align: center;
        background-position: center center; /* Adjust image center */
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%); /* Darker for readability */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .rating-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .rating-badge img {
        height: 18px !important;
    }

    .hero h2 {
        font-size: 1.1rem;
        margin-bottom: 25px;
        color: #e0e0e0;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0 auto 30px auto;
        color: #ddd;
    }

    .btn-primary {
        width: 100%; /* Full width button */
        padding: 18px;
        font-size: 1rem;
    }

    /* Trust Badges - Grid instead of stack */
    .hero-trust-badges {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        width: 100%;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        background: rgba(255,255,255,0.05); /* Subtle background */
        padding: 10px;
        border-radius: 8px;
    }

    .trust-item i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .trust-item div {
        font-size: 0.9rem;
    }

    /* Services Intro Split */
    .services-intro-split {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .intro-image {
        width: 100%;
        margin-bottom: 10px;
        box-shadow: none; /* Removed shadow for cleaner look with cutouts/transparent images */
        background: transparent;
        display: flex;
        justify-content: center;
    }
    
    .intro-image img {
        height: auto;
        max-height: 300px;
        width: 100%;
        object-fit: contain; /* Shows full image without cropping */
        border-radius: 10px;
    }

    .since-badge {
        padding: 8px 12px;
        right: 10px;
        bottom: 10px;
    }
    
    .intro-text .section-title {
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 20px;
    }

    .intro-text p {
        text-align: center;
        font-size: 0.95rem;
        color: #555;
    }

    /* Service Cards - Stacked Vertically for Mobile */
    .services-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-bottom: 0;
        margin: 0; 
        padding-left: 0;
        padding-right: 0;
        overflow-x: visible;
    }
    
    .services-wrapper::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        min-width: unset; 
        width: 100%;
        scroll-snap-align: none;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* More visible shadow */
        flex-shrink: 0;
    }

    /* Features Bar - Stacked and Readable for Mobile */
    .features-bar .container {
        overflow-x: visible;
        white-space: normal;
        padding-bottom: 0;
    }
    
    .bar-grid {
        display: flex;
        flex-direction: column; /* Stack vertically */
        justify-content: center;
        gap: 15px;
    }
    
    .bar-item {
        width: 100%;
        background: rgba(255,255,255,0.15); /* Slight box to separate */
        padding: 15px;
        border-radius: 8px;
        white-space: normal; /* Allow text wrapping */
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Align left looks better for reading */
        text-align: left;
    }
    
    .bar-item i {
        min-width: 30px; /* Ensure icon has space */
    }
    
    .bar-item p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    /* Reasons Section */
    .reasons-header h2 {
        font-size: 1.6rem;
    }
    
    .reasons-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .reason-card {
        flex-direction: row; /* Icon left, text right */
        align-items: center;
        text-align: left;
        padding: 20px;
        gap: 15px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .reason-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .reason-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Testimonials - Swipeable */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        margin: 0 -20px;
        padding: 0 20px 20px 20px;
    }

    .testimonial-box {
        min-width: 85%;
        scroll-snap-align: center;
        background: #fff;
        border: 1px solid #ddd;
    }

    /* Contact Section */
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-section {
        padding: 50px 0 120px 0; /* Huge bottom padding for floaters */
    }
    
    .contact-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .contact-text h3, .contact-text p {
        text-align: center;
    }

    .contact-methods {
        gap: 15px;
    }

    .method-item {
        flex-direction: row; /* Keep icon left */
        align-items: center;
        text-align: left;
        padding: 15px;
    }

    /* Footer */
    footer {
        padding: 30px 0 100px 0;
        text-align: center;
    }

    /* Floating Elements - Optimized */
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 25px;
        right: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .mini-chat-widget {
        width: auto;
        left: 20px;
        right: 20px;
        bottom: 90px;
    }
}

/* Netflix Catalog Styles - Horizontal Scrolling Cards */
#servicos [style*="overflow-x: auto"] {
    margin: 0 -20px;
}

#servicos [style*="overflow-x: auto"]::-webkit-scrollbar {
    height: 8px;
}

#servicos [style*="overflow-x: auto"]::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

#servicos [style*="overflow-x: auto"]::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

#servicos [style*="overflow-x: auto"]::-webkit-scrollbar-thumb:hover {
    background: #F9A825;
}

/* Card Hover Effects */
#servicos div[style*="flex: 0 0 280px"] {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#servicos div[style*="flex: 0 0 280px"]:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3) !important;
}

#servicos div[style*="border-radius: 15px"] a {
    transition: all 0.3s ease;
}

#servicos div[style*="flex: 0 0 280px"]:hover a {
    background: var(--primary-color);
    color: #000 !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}


/* Gallery Styles */
.gallery-thumb {
    height: 80px; 
    border-radius: 8px; 
    overflow: hidden; 
    cursor: pointer; 
    border: 2px solid transparent; 
    transition: all 0.3s ease;
}
.gallery-thumb:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.gallery-thumb img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.7; 
    transition: opacity 0.3s;
}
.gallery-thumb:hover img {
    opacity: 1;
}

.tiktok-video-container {
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); 
    width: 100%;
    max-width: 320px; 
    aspect-ratio: 9/16; 
    background: #000;
    margin: 0 auto;
}

