/* ===========================
   PROJETO ESCOLHA - Site CSS
   =========================== */

:root {
    --green:    #7cc23a;
    --purple:   #8B2FBE;
    --dark:     #0a0a0a;
    --dark-2:   #111111;
    --dark-3:   #1a1a1a;
    --text:     #ffffff;
    --muted:    #cccccc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* ===========================
   NAVBAR
   =========================== */
.pe-navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 194, 58, 0.15);
    transition: padding 0.3s ease;
}

.pe-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text) !important;
    text-decoration: none;
}

.pe-brand span { color: var(--green); }

.navbar-toggler {
    border: 1px solid rgba(124, 194, 58, 0.4);
    padding: 0.4rem 0.7rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28124, 194, 58, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.pe-nav-link {
    color: #cccccc !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    transition: color 0.3s;
    position: relative;
}

.pe-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.75rem; right: 0.75rem;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.pe-nav-link:hover,
.pe-nav-link.active { color: var(--green) !important; }

.pe-nav-link:hover::after { transform: scaleX(1); }

.btn-fale-conosco {
    background: var(--green);
    color: #0a0a0a !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.55rem 1.3rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--green);
    display: inline-block;
}

.btn-fale-conosco:hover {
    background: transparent;
    color: var(--green) !important;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
}

.hero-person {
    position: absolute;
    top: 0; right: 0;
    width: 58%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    opacity: 0.92;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to right,
        #0a0a0a 32%,
        rgba(10,10,10,0.82) 52%,
        rgba(10,10,10,0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0 2rem;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.0;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-title .line-green {
    color: var(--green);
    font-style: italic;
    display: block;
}

.hero-title .line-purple {
    color: var(--purple);
    font-style: italic;
    display: block;
}

.hero-tagline {
    font-size: 0.92rem;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
    line-height: 1.6;
}

.hero-tagline .bad  { color: #e04444; font-weight: 700; }
.hero-tagline .good { color: var(--green); font-weight: 700; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.btn-primary-pe {
    background: var(--green);
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--green);
}

.btn-primary-pe:hover {
    background: transparent;
    color: var(--green);
}

.btn-secondary-pe {
    background: transparent;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.25);
}

.btn-secondary-pe:hover {
    border-color: var(--green);
    color: var(--green);
}

/* Stats bar (dentro do hero) */
.stats-bar {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(124,194,58,0.2);
    padding: 1.8rem 0;
}

.stat-item { text-align: center; padding: 0.5rem 1rem; }

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--green);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
    margin-top: 0.4rem;
    display: block;
}

/* ===========================
   ABOUT
   =========================== */
.about-section {
    background: var(--dark-2);
    padding: 6rem 0;
}

.section-tag {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-title .hl { color: var(--green); }

.divider-green {
    width: 50px; height: 3px;
    background: var(--green);
    margin-bottom: 1.8rem;
}

.section-text {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.btn-outline-pe {
    background: transparent;
    color: var(--green);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--green);
}

.btn-outline-pe:hover {
    background: var(--green);
    color: #0a0a0a;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-item {
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #dddddd;
    transition: color 0.3s;
}

.step-item:hover { color: var(--green); }

.step-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--green);
    background: rgba(124,194,58,0.07);
}

.step-arrow {
    margin-left: auto;
    color: var(--green);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ===========================
   PILARES
   =========================== */
.pillars-section {
    background: var(--dark-3);
    padding: 4.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pillar-item { text-align: center; padding: 1rem; }

.pillar-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--green);
    background: rgba(124,194,58,0.07);
    transition: all 0.3s;
}

.pillar-item:hover .pillar-icon {
    background: var(--green);
    color: #0a0a0a;
    transform: scale(1.08);
}

.pillar-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

/* ===========================
   PARA QUEM É
   =========================== */
.audience-section {
    background: var(--dark);
    padding: 6rem 0;
}

.audience-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    transition: all 0.35s;
    height: 100%;
}

.audience-card:hover {
    border-color: var(--green);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(124,194,58,0.12);
}

.audience-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: var(--purple);
    transition: all 0.3s;
}

.audience-card:hover .audience-icon {
    border-color: var(--green);
    color: var(--green);
}

.audience-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audience-desc {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ===========================
   DEPOIMENTOS
   =========================== */
.depoimentos-section {
    background: var(--dark-2);
    padding: 6rem 0;
}

.depoimento-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid var(--green);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}

.depoimento-stars {
    color: var(--green);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.depoimento-text {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.depoimento-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
}

.depoimento-role {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* ===========================
   CONTATO
   =========================== */
.contato-section {
    background: var(--dark);
    padding: 6rem 0;
}

.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contato-info-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
    font-size: 1rem;
}

.contato-info-text h6,
.contato-info-text .contato-info-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
    margin-bottom: 0.2rem;
}

.contato-info-text p {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0;
}

.contato-form .form-control {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    border-radius: 4px;
    padding: 0.85rem 1.2rem;
    font-size: 0.88rem;
    transition: border-color 0.3s;
    margin-bottom: 1.2rem;
}

.contato-form .form-control:focus {
    border-color: var(--green);
    background: var(--dark-2);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(124,194,58,0.12);
    outline: none;
}

.contato-form .form-control::placeholder { color: #555; }

.btn-submit-pe {
    background: var(--green);
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 3rem;
    border-radius: 4px;
    border: 2px solid var(--green);
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit-pe:hover {
    background: transparent;
    color: var(--green);
}

/* ===========================
   FOOTER
   =========================== */
.pe-footer {
    background: #050505;
    border-top: 1px solid rgba(124,194,58,0.12);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    display: block;
    margin-bottom: 0.4rem;
}

.footer-brand span { color: var(--green); }

.footer-tagline {
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-social a {
    color: var(--muted);
    font-size: 1.2rem;
    margin-left: 1.2rem;
    transition: color 0.3s;
    text-decoration: none;
}

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

.footer-copy {
    color: #aaaaaa;
    font-size: 0.78rem;
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===========================
   DOWNLOAD STRIP
   =========================== */
.download-strip {
    background: linear-gradient(135deg, #0f1f0a 0%, #0a0a0a 40%, #1a0a2e 100%);
    border-top: 1px solid rgba(124,194,58,0.2);
    border-bottom: 1px solid rgba(124,194,58,0.2);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.download-strip::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(124,194,58,0.06);
    pointer-events: none;
}

.download-strip::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -40px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(139,47,190,0.06);
    pointer-events: none;
}

.download-strip-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: rgba(124,194,58,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green);
    flex-shrink: 0;
}

.download-strip-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.download-strip-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
    margin: 0;
}

.download-strip-title span { color: #e03333; }

.download-strip-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 0.3rem;
    margin-bottom: 0;
}

.btn-download-pdf {
    background: var(--green);
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
    border: 2px solid var(--green);
    white-space: nowrap;
}

.btn-download-pdf:hover {
    background: transparent;
    color: var(--green);
}

@media (max-width: 767px) {
    .download-strip-icon { display: none; }
    .download-strip-title { font-size: 1.1rem; }
    .btn-download-pdf { width: 100%; justify-content: center; margin-top: 1.5rem; }
}

/* ===========================
   LIVRO
   =========================== */
.livro-section {
    background: var(--dark-3);
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.livro-cover-wrap {
    position: relative;
    display: inline-block;
}

.livro-cover {
    width: 100%;
    max-width: 320px;
    border-radius: 6px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.7),
        -8px 8px 0 rgba(124,194,58,0.25),
        -16px 16px 0 rgba(139,47,190,0.15);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.livro-cover:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        -8px 8px 0 rgba(124,194,58,0.4),
        -16px 16px 0 rgba(139,47,190,0.25);
}

.livro-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--green);
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.livro-autores {
    font-size: 0.85rem;
    color: var(--green);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.livro-titulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.livro-titulo .vermelho { color: #e03333; }

.livro-subtitulo {
    font-size: 0.95rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1.8rem;
}

.livro-sinopse {
    color: #cccccc;
    font-size: 0.93rem;
    line-height: 1.85;
    margin-bottom: 1rem;
    border-left: 3px solid rgba(124,194,58,0.3);
    padding-left: 1.2rem;
}

.livro-bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.livro-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: #cccccc;
    padding: 0.35rem 0;
}

.livro-bullets li i {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.btn-comprar-livro {
    background: #e03333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #e03333;
}

.btn-comprar-livro:hover {
    background: transparent;
    color: #e03333;
}

.btn-comprar-livro i { margin-right: 0.5rem; }

/* ===========================
   BIOGRAFIA
   =========================== */
.bio-section {
    background: var(--dark-2);
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.bio-photo-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 380px;
}

.bio-photo {
    width: 100%;
    border-radius: 8px;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s ease;
}

.bio-photo-wrap:hover .bio-photo {
    filter: grayscale(0%);
}

.bio-photo-border {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid rgba(124,194,58,0.25);
    pointer-events: none;
}

.bio-photo-accent {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-left: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    border-radius: 0 0 0 6px;
    pointer-events: none;
}

.bio-photo-accent-tr {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-right: 3px solid var(--purple);
    border-top: 3px solid var(--purple);
    border-radius: 0 6px 0 0;
    pointer-events: none;
}

.bio-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.bio-name span { color: var(--green); }

.bio-role {
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
    display: block;
}

.bio-text {
    color: #bbbbbb;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.bio-text strong {
    color: #ffffff;
    font-weight: 600;
}

.bio-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.8rem;
}

.bio-tag {
    background: rgba(124,194,58,0.08);
    border: 1px solid rgba(124,194,58,0.25);
    color: var(--green);
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}

.bio-tag.purple {
    background: rgba(139,47,190,0.08);
    border-color: rgba(139,47,190,0.25);
    color: var(--purple);
}

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    position: relative;
    transition: transform 0.2s ease;
}

.whatsapp-float-btn::before,
.whatsapp-float-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: wpp-pulse 2s ease-out infinite;
}

.whatsapp-float-btn::after {
    animation-delay: 0.8s;
}

.whatsapp-float:hover .whatsapp-float-btn {
    transform: scale(1.1);
}

.whatsapp-float-label {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes wpp-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2);   opacity: 0; }
}

/* ===========================
   RESPONSIVE
   =========================== */
/* Objectives list */
.objectives-list {
    list-style: none;
    padding: 0; margin: 0;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.92rem;
    color: #cccccc;
    line-height: 1.5;
}

.objectives-list li:last-child { border-bottom: none; }

.objectives-list .obj-icon {
    color: var(--green);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Metas timeline */
.metas-section {
    background: var(--dark-2);
    padding: 5rem 0;
}

.meta-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid var(--green);
    border-radius: 8px;
    padding: 2rem 1.8rem;
    height: 100%;
}

.meta-card.purple { border-top-color: var(--purple); }

.meta-period {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: block;
}

.meta-card.purple .meta-period { color: var(--purple); }

.meta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.meta-list {
    list-style: none;
    padding: 0; margin: 0;
}

.meta-list li {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.4;
}

.meta-list li:last-child { border-bottom: none; }

.meta-list .bi {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.meta-card.purple .meta-list .bi { color: var(--purple); }

@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }

    /* Empilha imagem + conteúdo verticalmente no mobile */
    .hero-section {
        display: block;
        min-height: unset;
        padding-top: 70px;
    }

    .hero-person {
        position: relative;
        width: 100%;
        height: auto;
        opacity: 1;
    }

    .hero-person-img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: unset;
        transform: none;
        display: block;
    }

    /* Gradiente só na borda inferior da foto pra fundir com o conteúdo */
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            transparent 60%,
            #0a0a0a 100%
        );
    }

    .hero-content {
        padding-top: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .section-title { font-size: 2rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .stat-number { font-size: 1.7rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { text-align: center; }
}
