/* ========================================
   GALAGO - Landing Pages Shared CSS
   Used by: lpfacebook, lprevenda, downloads
   ======================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== COLORS ===== */
:root {
    --blue: #0E5091;
    --blue-dark: #0A3D6E;
    --gold: #FFB900;
    --gold-hover: #E6A700;
    --dark: #1E1A50;
    --white: #fff;
    --light-bg: #f5f7fa;
    --text: #333;
    --text-light: #666;
    --green: #22C55E;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo img { height: 44px; width: auto; }
.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.header__cta:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 60%, #1565C0 100%);
    color: var(--white);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,185,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__badge {
    display: inline-block;
    background: rgba(255,185,0,0.15);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    border: 1px solid rgba(255,185,0,0.3);
}
.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}
.hero h1 .highlight {
    color: var(--gold);
}
.hero__subtitle {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.7;
}
.hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}
.hero__stat { text-align: center; }
.hero__stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}
.hero__stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== HERO FORM ===== */
.hero__form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    color: var(--text);
}
.hero__form-card h2 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 4px;
    text-align: center;
}
.hero__form-card .form__tagline {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
}
.form__group { margin-bottom: 16px; }
.form__group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 0.9rem;
}
.form__group input[type="text"],
.form__group input[type="email"],
.form__group input[type="tel"],
.form__group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
    background: var(--light-bg);
}
.form__group input:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
}
.form__submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form__submit:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,185,0,0.3);
}
.form__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
}
.form__secure i { color: var(--green); }

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
    background: var(--dark);
    padding: 20px 0;
    color: var(--white);
}
.social-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.social-proof__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.social-proof__number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
}
.social-proof__label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-title p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 80px 0;
    background: var(--white);
}
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.benefit-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: rgba(14,80,145,0.1);
}
.benefit-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue), var(--dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 20px;
}
.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.benefit-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--light-bg);
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.step {
    text-align: center;
    position: relative;
}
.step__number {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(255,185,0,0.3);
}
.step h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}
.step p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.4;
}
.testimonial-card__stars {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
}
.testimonial-card__author {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}
.testimonial-card__role {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--white);
}
.faq__list {
    max-width: 740px;
    margin: 0 auto;
}
.faq__item {
    border-bottom: 1px solid #e0e6ed;
}
.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}
.faq__question:hover { color: var(--blue); }
.faq__question i {
    transition: transform 0.3s;
    font-size: 0.9rem;
    color: var(--blue);
}
.faq__question.active i { transform: rotate(180deg); }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__answer p {
    padding: 0 0 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    text-align: center;
    color: var(--white);
}
.cta-final h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(255,185,0,0.3);
}
.cta-final__btn:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,185,0,0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 36px 0;
    text-align: center;
}
.footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s;
}
.footer__social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}
.footer p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { padding: 40px 0 60px; }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero h1 { font-size: 1.8rem; }
    .hero__stats { gap: 20px; }
    .hero__stat-number { font-size: 1.5rem; }

    .social-proof__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .benefits__grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .testimonials__grid { grid-template-columns: 1fr; }

    .cta-final h2 { font-size: 1.6rem; }

    .header__cta { display: none; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr 380px; gap: 32px; }
    .hero h1 { font-size: 2rem; }
    .benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
