:root {
    /* Colors */
    --primary-color: #0c2b4c; /* Deep Navy Blue */
    --secondary-color: #d4af37; /* Sophisticated Gold / Wood tone */
    --accent-color: #25D366; /* WhatsApp Green */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #111827;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: var(--bg-white);
}

.grid-3, .grid-4 {
    display: grid;
    gap: 30px;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #20b858;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Header Adjustments */
.header-info-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    flex-grow: 1;
    padding-left: 30px;
}
.header-info-group a, .header-info-group span {
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: var(--transition);
}
.header-info-group a:hover {
    color: var(--accent-color);
}
.header-info-group i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.brand-logo {
    height: 85px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.02);
}

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

.nav-menu ul {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('assets/images/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 43, 76, 0.9) 0%, rgba(12, 43, 76, 0.6) 50%, rgba(12, 43, 76, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    max-width: 650px;
    color: white;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-perks {
    list-style: none;
    margin-bottom: 30px;
}

.hero-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    opacity: 0.95;
}

.hero-perks li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-brands {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-brands img {
    height: 45px; /* Increased a bit for visibility */
    opacity: 1; /* removed the invert filter to ensure they show up in their true colors */
    background: white; /* optional: ensures visibility if they have transparent dark logos */
    padding: 5px 10px;
    border-radius: 4px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Sections Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--secondary-color);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Benefits */
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(12, 43, 76, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.benefit-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: white;
}

.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services */
.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 80px;
}

.service-features li {
    margin-bottom: 10px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--secondary-color);
}

.cta-banner {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    color: white;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"/%3E%3C/svg%3E');
}

.cta-banner h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
    margin-bottom: 50px;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: var(--secondary-color);
}

.prev-btn {
    left: -15px;
}

.next-btn {
    right: -15px;
}

.testimonials-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    padding: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 380px;
    max-width: 450px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: center;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin: 0 0 2px 0;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fbbc04;
    font-size: 0.85rem;
    margin-top: 4px;
}

.stars .date {
    color: var(--text-muted);
    margin-left: 8px;
    font-size: 0.8rem;
}

.google-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: #4285F4;
    font-size: 1.5rem;
}

.testimonial-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Trust / Clientes */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.logo-section {
    text-align: center;
    margin-top: 60px;
}

.logo-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.logo-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* Trust / Clientes Marquee (Static Horizontal Scroll) */
.logo-marquee {
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: thin; /* Firefox */
    text-align: center; /* Center the track if it doesn't overflow */
}

/* Custom Scrollbar */
.logo-marquee::-webkit-scrollbar {
    height: 8px;
}
.logo-marquee::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
.logo-marquee::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
.logo-marquee::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

.logo-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.logo-track img {
    height: 75px; 
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) opacity(80%);
    transition: var(--transition);
    vertical-align: middle;
    flex-shrink: 0; /* Prevent shrinking in flex container */
    border-radius: 12px; /* Smoothly rounds square logos like Itaú/TOTVS */
}

.logo-track img:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.1);
}


/* Pagamento */
.pagamento {
    padding: 60px 0;
}

.pagamento-content {
    text-align: center;
}

.pagamento-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.method {
    background-color: rgba(255,255,255,0.1);
    padding: 15px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.method i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: #061525;
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 145px;
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

.footer-logo .logo-icon {
    color: var(--secondary-color);
}

.footer-brand p {
    color: #a0aec0;
    max-width: 400px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links a {
    color: #a0aec0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #a0aec0;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-contact a {
    color: #a0aec0;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Galeria / Ambientes Transformados */
.ambientes {
    background-color: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #1e293b;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.06);
}

.gallery-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-badge i {
    color: #38bdf8;
}

.gallery-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gallery-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.gallery-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: var(--transition);
}

.gallery-link:hover {
    color: #25d366;
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .header-info-group {
        font-size: 0.8rem;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-contact {
        flex-direction: column;
        gap: 5px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .header-info-group {
        padding-left: 0;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-left: 0;
    }
    
    .header-info-group span {
        text-align: center;
    }

    .hide-mobile {
        display: none !important;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(12, 43, 76, 0.9) 0%, rgba(12, 43, 76, 0.8) 100%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
