@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --secondary-color:      #3498db;
    --accent-color:         #e74c3c;
    --light-color:          #ecf0f1;
    --dark-color:           #004aad;
    --primary-color:        #FF9800;
    --white-color:          #ffffff;
    --blue-color:           #0C54C9;
    --clear-color:          #0088e2;
    --about-bg-color:       #f2f2f2;
    --gray-color:           #909090;
    --link-color:           #5a5a5a;
    --p-color:              #666262;
    --base-font-family:     'Poppins', sans-serif;
    --font-weight-bold:     bold;
    --font-weight-normal:   normal;
    --font-weight-light:    300;
    --font-weight-thin:     100;
    --h1-font-size:         48px;
    --h2-font-size:         36px;
    --h3-font-size:         28px;
    --h4-font-size:         24px;
    --h5-font-size:         22px;
    --h6-font-size:         22px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;
    --border-radius-large:  100%;
    --border-radius-small:  2px;
}

body {
    font-family: var(--base-font-family);
    color: var(--dark-color);
    line-height: 1.6;
}

p {
    color: var(--p-color);
}

/* --- Navbar --- */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

/* Navegação */
.navbar {
    background-color: var(--dark-color) !important;
    padding: 15px 20px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.445);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Seção Hero - Estilo padrão (Web) */
.hero-section {
    position: relative;
    color: white;
    padding: 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/assets/images/hero-bj.jpg') no-repeat center center fixed;
    background-size: cover;
    
    /* Adicionando suporte para backdrop-filter (desfoque moderno) */
    @supports (backdrop-filter: blur(5px)) or (-webkit-backdrop-filter: blur(10px)) {
        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 0;
        }
    }
}

/* Estilo para Mobile */
@media only screen and (max-width: 768px) {
    .hero-section {
        background: linear-gradient(90deg, #00319b 0%, #008fe2 50%, #0061e0 100%);
        background-size: 250% 250%;
        animation: gradientMove 6s infinite ease-in-out, pulseOpacity 6s infinite ease-in-out;
        will-change: background-position, opacity;
        transition: all 0.3s ease-in-out;
    }
    
    /* Se precisar definir as animações */
    @keyframes gradientMove {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    @keyframes pulseOpacity {
        0% { opacity: 0.95; }
        50% { opacity: 1; }
        100% { opacity: 0.95; }
    }

    .lead {
        display: none;
    }
}

/* Padrão/textura sutil sobreposta */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none; 
}

.hero-content {
    position: relative;
    z-index: 2; 
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Botão CTA */
.hero-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color, #ff6b6b);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: transparent;
    border-color: white;
}

/* Formulário */
.form-container {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
    position: relative;
    z-index: 10;
    margin: 20px 0;
    color: var(--dark-color);
}

.form-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: var(--h3-font-size);
    text-align: center;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-control, .form-select {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 12px 15px;
    width: 100%;
    font-size: var(--base-font-size);
    transition: all 0.3s ease;
    background-color: #fff !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
    outline: 2px solid var(--primary-color);
}

textarea.form-control {
    height: auto;
    min-height: 120px;
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Lista de benefícios */

#benefits h2 {
    font-size: var(--h2-font-size);
    color: var(--p-color);
    margin-bottom: 30px;
    text-align: center;
}

.benefits-list {
    list-style-type: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '\2713'; 
    font-family: 'poppins', sans-serif;
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.social-proof {
    background-color: var(--light-color);
    padding: 60px 0;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
}


#products h2 {
    font-size: var(--h2-font-size);
    color: var(--p-color);
    margin-bottom: 30px;
    text-align: center;
}

.cta-final {
    background-color: #0088e2;
}

.cta-final a {
    background-color: #0088e2;;
    color: white;
    transition: all 0.3s ease;
}

.cta-final a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/*---------------------------------------
Footer 
-----------------------------------------*/

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

.footer a {
    color: #ffffffb4;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer p {
    color: #ffffffb4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul {
    color: #ffffffb4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}