 :root {
            --primary-red: #E63946;
            --dark-blue: #0A1128;
            --light-bg: #FFF;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, var(--primary-red) 0%, #8B1E3F 100%);
            padding: 1rem 0;
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 1rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .navbar-nav .nav-link:hover {
            transform: translateY(-2px);
        }

        .btn-simulation {
            background: #25D366;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            border: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-simulation:hover {
            background: #1fb855;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
/* WhatsApp Float */
.chat_online {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 989;
}

.chat_online img {
    width: 60px;
    height: 60px;
}

.chat_online:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(253, 181, 21, 0.4);
}

/* Pulse Animation */
.pulse {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

        /* Hero Section */
        .hero-section {
            background-color: linear-gradient(180deg, var(--dark-blue) 0%, var(--dark-blue) 100%);
            /* min-height: 600px; */
            position: relative;
            overflow: hidden;
            padding-top: 33px;
            /* padding: 4rem 0; */
    background-image: url(src/background-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: white;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            color: #ddd;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .character-img {
            max-width: 400px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Reduce Bill Section */
        /* Reduce Bill Section */
        .reduce-bill-section {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3a7a 100%);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
            padding-top: 120px;
            padding-bottom: 100px;
        }

        .reduce-bill-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .house-model {
            max-width: 500px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .reduce-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 2rem;
        }

        .benefits-checklist {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
        }

        .check-icon {
            background: var(--primary-red);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .benefit-text {
            color: white;
            margin: 0;
            font-size: 1rem;
            line-height: 1.4;
        }

        .benefit-text strong {
            color: var(--primary-red);
            font-weight: 600;
        }

        .cta-box {
            background: var(--primary-red);
            padding: 1.5rem;
            border-radius: 25px;
            display: inline-block;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
            transition: all 0.3s ease;
        }

        .cta-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
        }

        .cta-box p {
            color: white;
            margin: 0;
            font-size: 1.1rem;
        }

        .btn-arrow {
            background: white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .btn-arrow:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
        }

        @media (max-width: 768px) {
            .reduce-title {
                font-size: 2rem;
            }

            .benefit-item {
                padding: 0.8rem;
            }

            .benefit-text {
                font-size: 0.9rem;
            }

            .check-icon {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
        }

        /* Info Banner */
        .info-banner {
            background: linear-gradient(135deg, #1a2456 0%, var(--dark-blue) 100%);
            padding: 3rem 0;
        }

        .info-title {
            font-size: 2rem;
            font-weight: bold;
            color: white;
        }

        .info-subtitle {
            color: #ddd;
            font-size: 1.1rem;
        }

        /* Clients Section */
       .clients-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0A1128 0%, #1a2344 100%);
            padding-top: 140px;
        }

        .clients-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .clients-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #f0f0f0;
            margin-bottom: 120px;
        }

        .client-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: visible;
        }

        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .savings-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #E63946 0%, #c72d3a 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
            z-index: 10;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .savings-text {
            color: white;
            font-weight: bold;
            font-size: 0.75rem;
            text-align: center;
            line-height: 1.2;
        }

        .savings-value {
            color: white;
            font-weight: 900;
            font-size: 1.1rem;
            margin-top: 2px;
        }

        .client-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .client-info {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .client-info::before {
            content: "📍";
            margin-right: 5px;
        }

        .client-quote {
            font-size: 1rem;
            color: #34495e;
            line-height: 1.6;
            font-style: italic;
        }

        .client-quote::before {
            content: '"';
            font-size: 3rem;
            color: #E63946;
            margin-right: 5px;
            line-height: 0;
            vertical-align: middle;
        }

        .energy-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px dashed #e0e0e0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #95a5a6;
            text-transform: uppercase;
        }

        .stat-value {
            font-size: 1.1rem;
            font-weight: bold;
            color: #E63946;
        }

        .stat-value.new {
            color: #27ae60;
        }

        @media (max-width: 768px) {
            .clients-title {
                font-size: 2rem;
            }
            
            .client-card {
                margin-bottom: 40px;
            }

            .savings-badge {
                width: 80px;
                height: 80px;
                top: -15px;
                right: -15px;
            }

            .savings-value {
                font-size: 0.9rem;
            }
        }
/* Invest Section */
        .invest-section {
            background: var(--primary-red);
            padding: 3rem 0;
            color: white;
            background-image: url('src/background-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        /* Opcional: adicionar uma camada de sobreposição para melhorar a legibilidade do texto */
        .invest-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(220, 38, 38, 0.7); /* Sobreposição vermelha semi-transparente */
            z-index: 1;
        }

        .invest-section .container {
            position: relative;
            z-index: 2;
        }

        .invest-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .invest-subtitle {
            font-size: 2rem;
            font-weight: bold;
            font-style: italic;
        }

        /* Areas Section */
        
        .areas-section {
            background: var(--dark-blue);
            padding: 80px 0;
            color: white;
            padding-top: 163px;
        }

        .areas-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
            color: white;
        }

        .state-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 3rem;
        }

        .state-badge {
            background: var(--primary-red);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .state-badge:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cities-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .state-section {
            margin-bottom: 2rem;
        }

        .state-section:last-child {
            margin-bottom: 0;
        }

        .state-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .state-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ffd700;
            margin: 0;
        }

        .state-tag {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #1e3c72;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .cities-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-left: 0;
            list-style: none;
        }

        .city-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.95rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .city-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        .brazil-map {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }

        .brazil-map:hover {
            transform: scale(1.05);
        }

        .map-container {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        @media (max-width: 991px) {
            .areas-title {
                font-size: 2rem;
            }

            .map-container {
                margin-top: 3rem;
            }
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-logo {
            height: 60px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-title {
            font-weight: bold;
            margin-bottom: 1rem;
            color: white;
        }

        .contact-info {
            color: #ddd;
        }

        .contact-info p {
            margin-bottom: 0.8rem;
        }

        .contact-info i {
            color: var(--primary-red);
            margin-right: 0.5rem;
            width: 20px;
        }

        .developer-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #999;
            font-size: 0.85rem;
            margin-top: 1rem;
        }

        .developer-badge img {
            height: 25px;
            width: auto;
        }

        /* Modal */
        .modal-dialog {
            max-width: 700px;
        }

        .modal-content {
            border-radius: 15px;
            border: none;
            overflow: hidden;
        }

        .modal-body {
            padding: 0;
        }

        .modal-image-section {
            background: linear-gradient(135deg, var(--primary-red) 0%, #8B1E3F 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image-section img {
            max-width: 100%;
            height: auto;
        }

        .modal-form-section {
            padding: 2rem;
        }

        .modal-title-custom {
            color: var(--dark-blue);
            font-weight: bold;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-control:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
        }

        .btn-send {
            background: #25D366;
            color: white;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0 auto;
        }

        .btn-send:hover {
            background: #1fb855;
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .character-img {
                max-width: 250px;
            }

            .reduce-title {
                font-size: 1.8rem;
            }

            .house-model {
                max-width: 100%;
            }

            .invest-title, .invest-subtitle {
                font-size: 1.8rem;
            }

            .navbar-brand img {
                height: 40px;
            }
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }
        .img-fluid{
            /* border-radius: 30px;
            border-top-left-radius: 190px;
            border-bottom-right-radius: 290px; */
        }
        /* Tamanhos do botão */
.btn-simulation.big-1 {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-simulation.big-2 {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.btn-simulation.big-3 {
    padding: 1.5rem 3.5rem;
    font-size: 1.5rem;
}

/* Ajuste do ícone para os tamanhos maiores */
.btn-simulation.big-2 i,
.btn-simulation.big-3 i {
    font-size: 1.3em;
    margin-right: 0.75rem;
}

/* Marquee */
.marquee-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--primary-yellow);
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeMove 12s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    padding-right: 50px;
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 700;
    color: #000;
}

@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0 40px;
    background: var(--dark-bg);
}

    /* Animações */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate-on-scroll.animate-visible {
            opacity: 1;
        }

        /* Fade In Up */
        .fade-in-up {
            transform: translateY(50px);
        }

        .fade-in-up.animate-visible {
            transform: translateY(0);
        }

        /* Fade In Left */
        .fade-in-left {
            transform: translateX(-50px);
        }

        .fade-in-left.animate-visible {
            transform: translateX(0);
        }

        /* Fade In Right */
        .fade-in-right {
            transform: translateX(50px);
        }

        .fade-in-right.animate-visible {
            transform: translateX(0);
        }

        /* Zoom In */
        .zoom-in {
            transform: scale(0.8);
        }

        .zoom-in.animate-visible {
            transform: scale(1);
        }

        /* Stagger Animation para listas */
        .stagger-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .stagger-item.animate-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Delays para efeito cascata */
        .stagger-item:nth-child(1) { transition-delay: 0.1s; }
        .stagger-item:nth-child(2) { transition-delay: 0.2s; }
        .stagger-item:nth-child(3) { transition-delay: 0.3s; }
        .stagger-item:nth-child(4) { transition-delay: 0.4s; }
        .stagger-item:nth-child(5) { transition-delay: 0.5s; }
        .stagger-item:nth-child(6) { transition-delay: 0.6s; }

        .marquee-wrap {
            width: 100%;
            overflow: hidden;
            background: var(--primary-red);
            padding: 6px 0;
            position: relative;
        }

        .marquee-track {
            display: flex;
            white-space: nowrap;
            animation: marqueeMove 12s linear infinite;
        }

        .marquee-item {
            flex-shrink: 0;
            padding-right: 50px;
            font-size: clamp(14px, 2.5vw, 22px);
            font-weight: bold;
            color: var(--dark-text);
        }

        @keyframes marqueeMove {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }











        /* Slider Styles */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            animation: float 3s ease-in-out infinite;
            border-radius: 30px;
            border-bottom-right-radius: 60px;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Slider Controls */
        .slider-arrow_ {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(230, 57, 70, 0.9);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 1.2rem;
        }

        .slider-arrow_:hover {
            background: var(--primary-red);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.5);
        }

        .slider-arrow_.prev {
            left: -5px;
        }

        .slider-arrow_.next {
            right: -5px;
        }

        /* Slider Indicators */
        .slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-red);
            width: 30px;
            border-radius: 6px;
        }

        .animate-on-scroll.animate-visible {
            opacity: 1;
        }

        .fade-in-left {
            transform: translateX(-50px);
        }

        .fade-in-left.animate-visible {
            transform: translateX(0);
        }

        .fade-in-right {
            transform: translateX(50px);
        }

        .fade-in-right.animate-visible {
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .slider-container {
                height: 350px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .slider-arrow.prev {
                left: 10px;
            }

            .slider-arrow.next {
                right: 10px;
            }
        }