/* Variáveis Profissionais - Medicina / Pet */
:root {
    --primary-green: #2E7D32; /* Trust, Health */
    --light-green: #E8F5E9;
    --accent-orange: #FF6D00; /* Compulsion, Action */
    --orange-hover: #E65100;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --bg-gray: #F9FAFB;
    --danger-red: #D32F2F;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-gray);
    line-height: 1.6;
    /* Blindagem: Impede seleção de texto em todo o site */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Blindagem: Impede arrastar imagens */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background-color: var(--danger-red); /* Vermelho agressivo de alerta */
    color: white;
    text-align: center;
    padding: 14px 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.top-bar i { color: #FFEB3B; margin-right: 8px; font-size: 18px; animation: pulseObj 1.5s infinite; }

/* HERO SECTION */
.hero-section {
    background-image: linear-gradient(rgba(249,250,251,0.30), rgba(249,250,251,0.70)), url('bg-vet.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 50px 0 60px;
    border-bottom: 2px solid var(--light-green);
}

.headline {
    font-size: 32px;
    font-weight: 900;
    color: #1F2937;
    line-height: 1.3;
    margin-bottom: 15px;
}

.highlight-red {
    color: var(--danger-red);
    text-decoration: underline;
    text-decoration-color: #ffebee;
}

.sub-headline {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 25px;
    padding: 0 5%;
    line-height: 1.5;
}

.play-action {
    color: var(--danger-red);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 22px;
    display: inline-block;
    animation: colorPulse 1.5s infinite;
}

.arrow-bounce {
    display: inline-block;
    animation: bounceRight 1.5s infinite;
    margin-right: 5px;
}

@keyframes colorPulse {
    0% { color: var(--danger-red); text-shadow: 0 0 0px transparent; }
    50% { color: #f44336; text-shadow: 0 0 15px rgba(211, 47, 47, 0.4); }
    100% { color: var(--danger-red); text-shadow: 0 0 0px transparent; }
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.text-7d-jump {
    display: inline-block;
    font-weight: 600;
    color: #111;
    background-color: #FFF9C4; /* Fundo amarelo marca-texto */
    padding: 5px 10px;
    border-radius: 6px;
    margin-top: 10px;
    border: 1px dashed #FBC02D;
    animation: subtleBreathe 2.5s infinite ease-in-out;
}

@keyframes subtleBreathe {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(0,0,0,0); }
    50% { transform: scale(1.03); box-shadow: 0 5px 15px rgba(251, 192, 45, 0.3); }
}

/* VIDEO MOCKUP */
.video-wrapper {
    max-width: 380px; /* Reduzido para ficar perfeito com vídeos verticais */
    margin: 0 auto 30px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 3px solid var(--primary-green);
}

.video-aspect {
    padding-bottom: 56.25%; /* 16:9 */
    position: relative;
}

.video-placeholder-fake {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.play-pulse {
    font-size: 70px;
    color: #FF1744;
    cursor: pointer;
    margin-bottom: 10px;
    animation: pulsate 2s infinite ease-out;
}

.sound-alert {
    background: #222;
    color: white;
    font-size: 14px;
    padding: 8px;
    text-align: center;
    font-weight: 600;
}

/* BOTÃO DE AÇÃO (PULSANTE) */
.offer-call {
    margin-top: 10px;
}

.offer-call p {
    font-size: 16px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--orange-hover) 100%);
    color: white;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.3);
    transition: all 0.3s;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.btn-primary i {
    margin-left: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 81, 0, 0.4);
}

.pulse-btn {
    animation: pulseObj 2.5s infinite;
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    color: #9CA3AF;
}

/* SECTION: BENEFITS */
.benefits-sec {
    background: var(--bg-gray);
    padding: 70px 0;
    text-align: center;
}

.benefits-sec h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.text-green { color: var(--primary-green); }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-bene {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card-bene:hover {
    transform: translateY(-5px);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.card-bene h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.card-bene p {
    font-size: 14px;
    color: var(--text-muted);
}

/* SECTION: OFFER DETAILS */
.ebook-offer {
    background: white;
    padding: 80px 0;
}

.container-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Coluna da foto do livro ainda maior que a do texto */
    gap: 30px;
    align-items: center;
}

.ebook-img-real {
    width: 100%;
    max-width: 700px; /* Aumentado significativamente */
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
    border: 5px solid white;
    transform: scale(1.15); /* Zoom forçado para estourar o grid */
    transform-origin: center right;
}

.ebook-details h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.check-list i { color: var(--primary-green); font-size: 18px; }

.price-box {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-orange);
    margin-bottom: 30px;
}

.price-box .de { text-decoration: line-through; color: #9CA3AF; font-size: 14px; }
.price-box .por { font-size: 32px; color: #111; margin: -5px 0; }
.price-box .avista { font-size: 14px; color: var(--primary-green); font-weight: 600;}

/* SECTION: EXPERT (AUTHORITY) */
.expert-section {
    background: var(--light-green);
    padding: 80px 0;
}

.expert-img-box {
    position: relative;
    text-align: center;
}

.expert-img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: -15px 15px 0 var(--primary-green);
    object-fit: cover;
}

.badge-vet {
    display: inline-block;
    background: white;
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.expert-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.expert-text p {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 15px;
}

.method-steps {
    list-style: none;
    margin-top: 25px;
}

.method-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.method-steps span {
    background: var(--accent-orange);
    color: white;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

/* SECTION: GUARANTEE */
.guarantee {
    background: var(--primary-green);
    color: white;
    padding: 60px 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-box i {
    font-size: 100px;
    color: #FBBF24; /* yellow/gold */
}

.text-g h3 {
    font-size: 26px;
    margin-bottom: 10px;
}
.text-g p {
    font-size: 15px;
    opacity: 0.9;
}

/* FOOTER */
.footer {
    background: #111827;
    color: #6B7280;
    text-align: center;
    padding: 40px 0;
    font-size: 12px;
}

.foot-links a {
    color: #9CA3AF;
    text-decoration: none;
    margin: 0 10px;
}

/* KEYFRAMES & RESPONSIVE */
@keyframes pulsate {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; text-shadow: 0 0 20px red; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes pulseObj {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .headline { font-size: 24px; }
    .sub-headline { padding: 0; font-size: 16px; margin-bottom: 20px; }
    .play-action { font-size: 18px; }
    .mobile-break { display: block; }
    .grid-3, .container-split { grid-template-columns: 1fr; }
    .guarantee-box { flex-direction: column; text-align: center; }
    .btn-primary { font-size: 18px; padding: 18px 20px; }
}

/* NOVAS SEÇÕES: PROVA SOCIAL & FAQ */
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

/* Testimonials */
.social-proof-sec {
    padding: 80px 0;
    background: #fff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testi-card {
    background: var(--bg-gray);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}
.testi-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.user-img-testi {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}
.stars-testi { color: #FBBF24; font-size: 14px; }
.verified-badge-small {
    margin-top: 15px;
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 700;
}

/* FAQ Accordion */
.faq-sec {
    padding: 80px 0;
    background: var(--light-green);
}
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}
.faq-item.active .faq-question {
    color: var(--primary-green);
}
/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    font-size: 16px;
    border: 2px solid white;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
}

/* Responsividade para o botão no mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
        font-size: 14px;
    }
}
