
/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1a1a1a;
    --dark: #0d0d0d;
    --white: #ffffff;
    --gold: #c9a84c;
    --gold-light: #d4b76a;
    --gold-dark: #a88a3a;
    --gray-100: #f8f7f4;
    --gray-200: #f0eee8;
    --gray-300: #e5e2da;
    --gray-400: #b8b4aa;
    --gray-500: #8a8578;
    --gray-600: #5c584e;
    --gray-700: #3d3a33;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.faixa-top{
    position: fixed;
    background-color: #c9a84c;
    color: black;
    width: 100%;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.445);

    z-index: 100;
}


/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;

    background-image: url(../img/bc1.png);
    background-size: 100% 100%;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.txt-cta{
    color: white;
    margin-bottom: 30px;
}

.hero-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.hero-cta svg {
    transition: var(--transition);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-right {
    position: relative;
}

.formulario {
    border: 1px solid rgba(255, 255, 255, 0.25); /* Borda um pouco mais sutil */
    padding: 35px 25px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.02); /* Leve fundo para dar profundidade */

    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px black;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaçamento um pouco maior entre os campos */
}

.title-form {
    display: inline-block;
    color: white;
    font-size: 22px; /* Ajustado levemente para não brigar com o título principal */
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
}

form input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 6px; /* Combina com o resto do layout arredondado */
    font-size: 15px;
    color: #333;
}

/* Melhora a visibilidade do placeholder */
form input::placeholder {
    color: #777;
}

form input:focus {
    outline: none;
    border-color: #c9a84c; /* Mostra qual campo está ativo com a cor da marca */
}

#btn-form {
    margin-top: 15px;
    background-color: #c9a84c;
    color: #0d0d0d;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Efeito ao passar o mouse */
#btn-form:hover {
    background-color: #b0913b; 
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--dark);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    z-index: 3;
}

.hero-floating-card .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-floating-card .text {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ============ PROBLEM SECTION ============ */
.problem {
    background: var(--gray-100);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--gold-dark);
    font-style: italic;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.problem-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.problem-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.problem-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ============ SOLUTION SECTION ============ */
.solution {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.solution-left {
    position: relative;
}

.solution-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.solution-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), transparent);
    pointer-events: none;
}

.solution-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.solution-right h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.solution-right h2 span {
    color: var(--gold);
    font-style: italic;
}

.solution-right > p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 36px;
}

.solution-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.solution-pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.26);
    padding: 16px 20px;
    transition: var(--transition);
}

.solution-pillar:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.05);
}

.solution-pillar-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.grid-span{
    display: flex;
    flex-direction: column;
}

.sub-title-span{
    font-size: 12px !important;
    font-weight: 300 !important;
}

.solution-pillar span {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
}

/* ============ PILARS SECTION ============ */
.pillars {
    background: var(--gray-100);
    padding: 100px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pillar-card:hover::before {
    transform: scaleY(1);
}

.pillar-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pillar-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.pillar-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.pillar-card-header h3 span {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.pillar-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.pillar-card ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============ WHO IS IT FOR ============ */
.who {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
}

.who .section-header h2 {
    color: var(--white);
}

.who .section-header p {
    color: var(--gray-400);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.who-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.who-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-4px);
}

.who-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.who-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.who-card p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.55;
}

/* ============ RESULTS SECTION ============ */
.results {
    background: var(--gray-100);
    padding: 100px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.result-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.result-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.result-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.result-card p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ============ BONUS SECTION ============ */
.bonus {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
}

.bonus .section-header h2 {
    color: var(--white);
}

.bonus .section-header p {
    color: var(--gray-400);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
}

.bonus-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.bonus-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.bonus-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 10px;
    line-height: 1.5;
}

.bonus-card ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============ CREATORS SECTION ============ */
.creators {
    background: var(--gray-100);
    padding: 100px 0;
}

.creators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.creator-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 200px 1fr;
}

.creator-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.creator-image {
    position: relative;
    overflow: hidden;
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.creator-card:hover .creator-image img {
    transform: scale(1.05);
}

.creator-info {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creator-info .tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.creator-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.creator-info p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ============ CTA SECTION ============ */
.cta {
    background: var(--dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.cta h2 span {
    color: var(--gold);
    font-style: italic;
}

.cta > div > p {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--dark);
    padding: 22px 48px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(201, 168, 76, 0.35);
}

.cta-btn svg {
    transition: var(--transition);
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

.cta-sub {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.6rem; }
    .section-header h2 { font-size: 2.2rem; }
    .hero-grid { gap: 40px; }
    .solution-grid { gap: 50px; }
    .creators-grid { gap: 30px; }
}

@media (max-width: 900px) {
    .hero {
        background-image: url(../img/backcll.png);
    }
    .navbar-links { display: none; }
    .navbar-mobile-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-right { order: -1; }
    .hero-image-wrapper img { height: 380px; }
    .solution-grid { grid-template-columns: 1fr; }
    .solution-image-wrapper img { height: 380px; }
    .problem-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .creators-grid { grid-template-columns: 1fr; }
    .creator-card { grid-template-columns: 160px 1fr; }
    .cta h2 { font-size: 2.2rem; }
}

@media (max-width: 600px) {

    .faixa-top{
        font-size: 12px;
    }
    .hero { 
        padding-top: 50px !important;
        min-height: auto; 
        padding: 50px 0 60px; 

        background-image: url(../img/backcll.png);
    }

    .formulario{
        margin-top: 40px;
    }

    /* .hero-cta{
        display: none;
    } */

    /* .hero-right{
        order: 1;
    } */
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-header h2 { font-size: 1.8rem; }
    .who-grid { grid-template-columns: 1fr; }
    .creator-card { grid-template-columns: 1fr; }
    .creator-image { height: 240px; }
    .cta h2 { font-size: 1.8rem; }
    .cta-btn { padding: 18px 32px; font-size: 0.85rem; }
    .solution-pillars { grid-template-columns: 1fr; }
    .hero-floating-card { left: 10px; bottom: -10px; padding: 14px 20px; }
    .hero-floating-card .number { font-size: 1.6rem; }
}


/* ============ MODAL STYLES ============ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-content .hero-cta {
    width: 100%;
    justify-content: center;
}


