﻿:root {
            --primary-color: #003388;
            --secondary-color: #ffab00;
            --secondary-color-hover: #e69a00;
            --accent-color: #9d7512;
            --text-dark: #212529;
            --text-light: #6c757d;
            --bg-light: #f8f9fa;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }

        .text-primary-custom { color: var(--primary-color) !important; }
        .text-secondary-custom { color: var(--secondary-color) !important; }
        .text-accent-custom { color: var(--accent-color) !important; }
        
        .bg-primary-custom { background-color: var(--primary-color) !important; }
        .bg-secondary-custom { background-color: var(--secondary-color) !important; }
        .bg-accent-custom { background-color: var(--accent-color) !important; }

        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #002255;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            color: var(--text-dark);
            border: none;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: var(--secondary-color-hover);
            color: var(--text-dark);
            transform: translateY(-2px);
        }

        /* Navbar */
        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 15px 0;
            background-color: white;
        }
        .navbar-brand img {
            max-height: 50px;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        /* Hero Carousel */
        .hero-section {
            position: relative;
            margin-top: 80px; /* Offset for fixed navbar */
        }
        .carousel-item {
            height: 75vh;
            min-height: 600px;
        }
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.35));
            z-index: 1;
        }
        .carousel-caption {
            z-index: 2;
            bottom: 0;
            top: 0;
            display: flex !important;
            align-items: center;
            text-align: left;
            padding-bottom: 0;
        }
        .hero-content {
            max-width: 800px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.2rem; }
            .carousel-caption {
                text-align: center;
                align-items: center;
                justify-content: center;
            }
            .hero-section .carousel-caption .container {
                text-align: center;
            }
            .hero-section .carousel-caption .hero-content {
                margin: 0 auto;
                width: 100%;
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-section .carousel-caption .hero-title,
            .hero-section .carousel-caption .hero-subtitle {
                text-align: center;
                width: 100%;
            }
            .hero-section .carousel-caption .btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                white-space: nowrap;
                font-size: 0.9rem;
                padding: 0.75rem 1.25rem;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-section .carousel-caption .btn i {
                flex-shrink: 0;
            }
        }

        /* Stats Section */
        .stats-section {
            background-color: var(--primary-color);
            color: white;
            padding: 40px 0;
            position: relative;
            z-index: 10;
        }
        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            font-weight: 800;
        }

        /* Sections General */
        .section-padding { padding: 80px 0; }
        .section-title {
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .text-start .section-title::after {
            left: 0;
            transform: none;
        }

        /* Differentials/Benefits */
        .icon-box {
            padding: 30px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s ease;
            border-bottom: 4px solid transparent;
        }
        .icon-box:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--secondary-color);
        }
        .icon-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Cases Gallery */
        .case-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .case-card:hover {
            transform: scale(1.03);
        }
        .case-card img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--accent-color);
            height: 100%;
        }
        .quote-icon {
            color: rgba(157, 117, 18, 0.2);
            font-size: 3rem;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 51, 136, 0.1);
            color: var(--primary-color);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }

        /* Contact Section */
        .contact-info-box {
            background-color: var(--primary-color);
            color: white;
            padding: 40px;
            border-radius: 10px;
            height: 100%;
        }
        .contact-info-box i {
            color: var(--secondary-color);
            width: 30px;
            font-size: 1.2rem;
        }
        .form-control {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 51, 136, 0.25);
        }

        /* Footer */
        footer {
            position: relative;
            overflow: hidden;
            background-color: #001a44;
            background-image:
                linear-gradient(
                    rgba(0, 26, 68, 0.82),
                    rgba(0, 26, 68, 0.88)
                ),
                url('../../imgs/galpao-de-lona-4.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #e0e0e0;
            padding: 60px 0 20px;
        }
        footer > .container {
            position: relative;
            z-index: 1;
        }
        footer a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        /* Floating WhatsApp */
        @keyframes shadow-pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
            100% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); }
        }
        .float-whatsapp {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50%;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1050;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            text-decoration: none;
            animation: shadow-pulse 2s infinite;
            border: none;
            cursor: pointer;
        }
        .float-whatsapp:hover {
            transform: scale(1.1);
            color: white;
        }

/* Builder overrides */
/* Builder Page global overrides — não editar manualmente; gerenciado por BuilderPageHtmlOverrides.php */
.carousel-item {
    height: 75vh;
    min-height: 600px;
    max-height: 600px;
}

/* Section styles */
#quemsomos .anim-fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    #quemsomos .anim-fade-in-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    #quemsomos .is-visible {
        opacity: 1 !important;
        transform: translate(0, 0) !important;
    }
    #quemsomos .delay-1 { transition-delay: 0.1s; }
    #quemsomos .delay-2 { transition-delay: 0.2s; }
    #quemsomos .delay-3 { transition-delay: 0.3s; }
    #quemsomos .delay-4 { transition-delay: 0.4s; }

#quemsomos i.fas {
            color: #000000 !important;
            transition: transform 0.3s ease;
        }
        #quemsomos .hover-fx {
            transition: transform 0.3s ease, background-color 0.3s ease;
            padding: 6px 10px;
            border-radius: 6px;
            margin-left: -10px;
        }
        #quemsomos .hover-fx:hover {
            transform: translateX(8px);
            background-color: rgba(0, 0, 0, 0.04);
        }
        #quemsomos .hover-fx:hover i.fas {
            transform: scale(1.1);
        }
        #quemsomos .hover-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        #quemsomos .hover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
        }

.stats-section .stat-item h3 {
            animation: popIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }
        .stats-section .stat-item:nth-child(1) h3 { animation-delay: 0.1s; }
        .stats-section .stat-item:nth-child(2) h3 { animation-delay: 0.3s; }
        .stats-section .stat-item:nth-child(3) h3 { animation-delay: 0.5s; }
        .stats-section .stat-item:nth-child(4) h3 { animation-delay: 0.7s; }

        @keyframes popIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

#solucoes {
                position: relative;
                background-image: url('../../imgs/bg-solucoes.jpg');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                z-index: 1;
            }
            #solucoes::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(255, 255, 255, 0.88);
                z-index: -1;
            }
            #solucoes .card {
                transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                background-color: rgba(255, 255, 255, 0.95) !important;
            }
            #solucoes .card:hover {
                transform: translateY(-12px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
            }
            #solucoes .card-body {
                align-items: center;
                text-align: center;
            }
            #solucoes .icon-wrapper {
                transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            }
            #solucoes .card:hover .icon-wrapper {
                transform: scale(1.15);
            }
            
            @keyframes slideInLeftCard {
                from { opacity: 0; transform: translateX(-100px); }
                to { opacity: 1; transform: translateX(0); }
            }
            @keyframes slideInBottomCard {
                from { opacity: 0; transform: translateY(100px); }
                to { opacity: 1; transform: translateY(0); }
            }
            @keyframes slideInRightCard {
                from { opacity: 0; transform: translateX(100px); }
                to { opacity: 1; transform: translateX(0); }
            }

            #solucoes .row > div:nth-child(1) {
                animation: slideInLeftCard 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
                opacity: 0;
            }
            #solucoes .row > div:nth-child(2) {
                animation: slideInBottomCard 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
                opacity: 0;
                animation-delay: 0.2s;
            }
            #solucoes .row > div:nth-child(3) {
                animation: slideInRightCard 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
                opacity: 0;
                animation-delay: 0.4s;
            }

#diferenciais {
        position: relative;
        z-index: 1;
        overflow: hidden;
        background-image:
            linear-gradient(
                rgba(0, 51, 136, 0.82),
                rgba(0, 51, 136, 0.88)
            ),
            url('../../imgs/galpoes-especiais-01.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    #diferenciais > .container {
        position: relative;
        z-index: 1;
    }

#diferenciais .hover-card {
            transition: all 0.3s ease;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid transparent;
            height: 100%;
        }
        #diferenciais .hover-card:hover {
            transform: translateY(-8px);
            background-color: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        #diferenciais .hover-card .bg-secondary-custom {
            transition: transform 0.3s ease;
        }
        #diferenciais .hover-card:hover .bg-secondary-custom {
            transform: scale(1.1);
        }
        #diferenciais .btn-secondary-custom {
            transition: all 0.3s ease;
        }
        #diferenciais .btn-secondary-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

 