/* Dark Premium Leads Page Sytles */
:root {
    --navy-deep: #001220;
    /* Background Principal: Quase preto */
    --navy-card: #022038;
    /* Cards: Azul Profundo */
    --navy-light: #003366;
    /* Highlights */
    --orange-neon: #FF6600;
    /* Neon Orange Primary */
    --orange-glow: #FF8C00;
    /* Secondary glow */
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --glass-bg: rgba(2, 32, 56, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Reset & Base */
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    background-color: var(--navy-deep);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 102, 0, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 51, 102, 0.2) 0%, transparent 20%);
    background-attachment: fixed;
}

/* Header Specifics */
.leads-header {
    background-color: rgba(0, 18, 32, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo-text,
.nav-list a {
    color: var(--text-white) !important;
}

.nav-list a:hover {
    color: var(--orange-neon) !important;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.header-cta-btn {
    background: linear-gradient(135deg, var(--orange-neon), var(--orange-glow));
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
    border: none;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.5);
}

/* Hero Section */
/* Hero Section */
.hero-leads {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    background: url('../img/slide-1.jpg') no-repeat center center/cover;
    align-items: center;
}

/* Dark Gradient Overlay */
.hero-leads::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #001220 40%, rgba(0, 18, 32, 0.85) 100%);
    z-index: 1;
}

.hero-container-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Left Column: Text */
.hero-text-col {
    width: 55%;
    color: white;
}

/* Reset Layout for Full Width */
.hero-content {
    display: none !important;
}

.hero-content::before {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-headline .highlight-text {
    color: #ffffff !important;
    font-style: normal;
    font-weight: 800;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    border: none !important;
    padding: 0 !important;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.9;
}

/* Right Column: Form Card */
.hero-form-col {
    width: 45%;
    min-width: 400px;
    display: flex;
    justify-content: flex-end;
}

.hero-form-card {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 450px;
    border-top: 4px solid var(--orange-neon);
}

.form-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-label-dark {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.form-input-leads {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}

/* Hide Old Visual Column */
.hero-visual,
.hero-visual::after {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-leads {
        padding-top: 120px;
        height: auto;
        min-height: auto;
    }

    .hero-container-grid {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-col,
    .hero-form-col {
        width: 100%;
        text-align: center;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-form-card {
        margin: 0 auto;
    }

    .mobile-only {
        display: inline-block !important;
        margin-bottom: 30px;
    }

    /* On mobile, keep form visible or stack it */
    .hero-form-col {
        display: block;
    }
}



.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    border: none;
    padding-left: 0;
}

/* Buttons */
.btn-cta-main {
    background: linear-gradient(45deg, var(--orange-neon), var(--orange-glow));
    color: var(--text-white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    width: fit-content;
    display: inline-block;
}

.btn-cta-main:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
}
}

.btn-cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-cta-main:hover::before {
    left: 100%;
}

.btn-cta-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
}

/* Differentials */
.differentials {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.diff-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--navy-card);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.diff-item:hover {
    transform: translateY(-10px);
    border-color: var(--orange-neon);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.15);
}

.diff-icon {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--orange-neon), #FF3300);
    -webkit-background-clip: text;
    background-clip: text;
    /* Added standard property */
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.5));
}

.diff-title {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 700;
}

.diff-text {
    color: var(--text-gray);
}

/* Showcase Materials */
.showcase {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.section-title-leads {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.section-subtitle-leads {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 10px;
}

.material-card {
    background: var(--navy-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
    position: relative;
}

.material-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange-neon);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.material-card:hover::after {
    transform: scaleX(1);
}

.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.material-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8) contrast(1.1);
    transition: 0.4s;
}

.material-card:hover .material-img {
    filter: brightness(1) contrast(1.2);
}

.material-info {
    padding: 25px;
    text-align: center;
}

.material-title {
    font-size: 1.3rem;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Video Section (Shorts) */
.video-section {
    padding: 80px 0;
    background-color: var(--navy-deep);
    position: relative;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.77%;
    /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--orange-neon);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* Architects Section */
.architect-section {
    background: linear-gradient(180deg, var(--navy-deep), #000);
    color: var(--text-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.architect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-neon), transparent);
}

.architect-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FFFFFF, #B0B0B0);
    -webkit-background-clip: text;
    background-clip: text;
    /* Added standard property */
    -webkit-text-fill-color: transparent;
}

.architect-btn {
    margin-top: 40px;
    background: transparent;
    border: 2px solid var(--orange-neon);
    color: var(--orange-neon);
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.1);
    display: inline-block;
}

.architect-btn:hover {
    background: var(--orange-neon);
    color: var(--text-white);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.4);
}

/* Infinite Carousel */
.carousel-section {
    padding: 60px 0;
    overflow: hidden;
    background: var(--navy-deep);
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-section:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-item {
    width: 350px;
    height: 250px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
    cursor: pointer;
}

.carousel-item:hover {
    transform: scale(1.05);
    border-color: var(--orange-neon);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 5 - 100px));
        /* Adjust based on item count */
    }
}

/* Social Proof Enhanced */
.reviews-header {
    margin-bottom: 50px;
}

.google-badge {
    background: white;
    color: #333;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.review-card {
    padding: 35px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 2rem;
    color: var(--orange-neon);
    opacity: 0.5;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--navy-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--orange-neon);
    border: 1px solid var(--glass-border);
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Conversion Footer */
.conversion-footer {
    background: linear-gradient(0deg, #000000 0%, var(--navy-deep) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.conversion-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: var(--navy-card);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

/* Orange top border for form */
.conversion-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange-neon), #FF3300);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

.form-label-dark {
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-input-leads {
    width: 100%;
    padding: 18px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--text-white);
    font-family: inherit;
    transition: 0.3s;
}

.form-input-leads:focus {
    outline: none;
    border-color: var(--orange-neon);
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
}

/* Responsive */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

@media (max-width: 900px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .leads-header {
        padding: 10px 0;
    }

    .header-cta-btn {
        display: none;
    }

    .hero-container-grid {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text-col,
    .hero-form-col {
        width: 100%;
        text-align: center;
    }

    .hero-text-col {
        margin-bottom: 20px;
    }

    .hero-form-card {
        margin: 0 auto;
    }

    /* Deprecated classes cleanup */
    .hero-content,
    .hero-visual {
        display: none !important;
    }

    .hero-headline {
        font-size: 1.5rem;
        /* Checked font size */
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .sticky-mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 18, 32, 0.95);
        backdrop-filter: blur(10px);
        padding: 15px;
        border-top: 1px solid var(--orange-neon);
        z-index: 2000;
        display: flex;
        justify-content: center;
    }

    .btn-sticky-whatsapp {
        background: linear-gradient(90deg, #25D366, #128C7E);
        color: white;
        width: 100%;
        padding: 14px;
        text-align: center;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1rem;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .conversion-footer {
        padding-bottom: 100px;
    }

    .conversion-form {
        padding: 30px 20px;
    }
}