:root {
    /* Color Palette */
    --primary: #0a0a0a;
    --primary-light: #1e1e1e;
    --accent: #ffcc00;
    --accent-dark: #e6b800;
    --secondary: #004aad;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;
    --success: #28a745;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    background-image: url('assets/bg/body-pattern.png');
    background-attachment: fixed;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

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

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

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

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

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--success);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    background-color: #218838;
}

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

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

.btn-large {
    font-size: 1.1rem;
    padding: 20px 45px;
}

.btn-yellow {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.btn-yellow:hover {
    background-color: white;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
    /* White logo on dark hero */
}

.header.scrolled .logo img {
    height: 40px;
    filter: none;
    /* Original colors on white background */
}

.header.scrolled .btn-primary {
    background-color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('assets/bg/hero-bg.png') center/cover no-repeat;
    color: var(--text-light);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.badge {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-header-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.hero-seal {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

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

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.hero-bullets i {
    color: var(--accent);
    font-size: 1.4rem;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Authority Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.authority-image {
    position: relative;
}

.authority-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.authority-seal {
    position: absolute;
    bottom: -20px;
    right: -20px;
    height: 140px;
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    z-index: 5;
    transition: var(--transition);
}

.authority-seal:hover {
    transform: scale(1.1) rotate(5deg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.authority-items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.auth-item {
    display: flex;
    gap: 15px;
}

.auth-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.auth-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.auth-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Service Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.service-card h3 {
    margin-bottom: 15px;
}

.type-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    align-items: flex-start;
}

.type-item i {
    color: var(--success);
    margin-top: 5px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.benefit-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.5;
}

/* Differentials */
.diff-list {
    list-style: none;
    margin-top: 30px;
}

.diff-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.diff-list i {
    color: var(--accent);
    margin-top: 5px;
}

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

.galleria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Target Audience */
.target-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.target-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 200px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.target-item:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.05);
}

.target-item i {
    font-size: 2rem;
}

.target-item span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.client-info {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-info strong {
    display: block;
}

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

/* CTA Final */
.cta-box {
    background: var(--primary);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-subtext {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #050505;
    color: white;
}

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

.footer-brand-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Pure white to match header style */
}

.footer h3,
.footer h4 {
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

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

/* Decorative Section Divider */
.section-divider {
    width: 100%;
    height: 10px;
    background: url('assets/branding/listras-laranja.png') repeat-x;
    background-size: contain;
    margin: 40px 0;
    opacity: 0.6;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Responsive */
@media (max-width: 992px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

    .authority-items {
        grid-template-columns: 1fr;
    }

    .experience-year {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .header .btn-sm {
        display: none;
    }

    .logo img {
        height: 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }
}

/* Location Section */
.location .map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location iframe {
    display: block;
}