/* Pega aquí TODO el código CSS que estaba entre las etiquetas <style> y </style> en tu archivo original. */
:root {
    --primary: #E67E22;
    --secondary: #D35400;
    --accent: #F39C12;
    --light-accent: #FDEBD0;
    --dark: #5D4037;
    --light: #FEF9E7;
    --success: #27AE60;
    --brown: #8B4513;
    --light-brown: #D7CCC8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(139, 69, 19, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.logo i {
    font-size: 28px;
}

/* Seções */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

.btn:hover:before {
    left: 100%;
}

.btn-large {
    font-size: 22px;
    padding: 20px 40px;
}

/* Elementos decorativos */
.paw-print {
    position: absolute;
    opacity: 0.1;
    font-size: 40px;
    color: var(--brown);
    z-index: -1;
}

.bone-icon {
    display: inline-block;
    margin: 0 10px;
    color: var(--primary);
}

/* Seção 1 - Gancho Emocional */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23FEF9E7"></path></svg>');
    background-size: cover;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.problem-image-container {
    max-width: 800px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid white;
}

.problem-image {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
}

.question-container {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 700px;
    margin: 40px auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: var(--dark);
    border: 2px solid var(--light-accent);
    position: relative;
}

.question-container:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border-top: 2px solid var(--light-accent);
    border-left: 2px solid var(--light-accent);
    transform: rotate(45deg);
}

.question {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    background-color: var(--light);
    border: 2px solid var(--light-brown);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option:before {
    content: "🐾";
    font-size: 18px;
}

.option:hover {
    border-color: var(--primary);
    background-color: var(--light-accent);
    transform: translateX(5px);
}

/* Seção 2 - Validação e Agitação */
.validation {
    background-color: white;
}

.response-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    display: none;
    background: var(--light-accent);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
}

/* Seção 3 - Revelação */
.revelation {
    background-color: var(--light);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.benefit:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Seção 4 - O Herói */
.product {
    background-color: white;
}

.product-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.product-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.product-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--light-accent);
    border-radius: 15px;
    top: -15px;
    left: -15px;
    z-index: -1;
}

.ebook-cover {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-brown);
}

.product-details {
    flex: 1;
}

.product-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
    background: var(--light-accent);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    text-align: center;
}

.stat {
    padding: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--dark);
}

/* Seção 5 - Prova Social */
.testimonials {
    background-color: var(--light);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial:before {
    content: """;
    font-size: 80px;
    color: var(--light-accent);
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author:before {
    content: "🐕";
}

.rating {
    color: var(--accent);
    margin-top: 10px;
}

/* Seção 6 - Golpe de Valor */
.bonus {
    background-color: white;
    text-align: center;
}

.bonus-content {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    color: white;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
    position: relative;
    overflow: hidden;
}

.bonus-box:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.bonus-image-container {
    max-width: 300px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bonus-image {
    width: 100%;
    height: 450px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}

.bonus-title {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}

.bonus-value {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0;
    text-decoration: line-through;
    opacity: 0.8;
}

.bonus-highlight {
    background-color: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-feature i {
    color: var(--accent);
    font-size: 20px;
}

/* Seção 7 - Chamada à Ação */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff" opacity="0.1"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.success-image-container {
    max-width: 600px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid white;
}

.success-image {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
}

.offer-box {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--dark);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    border: 2px solid var(--light-accent);
}

.offer-box:before {
    content: "🐶 OFERTA ESPECIAL 🐶";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.offer-list {
    list-style: none;
    margin: 20px 0;
}

.offer-list li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    text-align: left;
}

.offer-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
    background: var(--light-accent);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary);
    margin: 20px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.price-small {
    font-size: 22px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 10px;
}

.guarantee {
    margin: 30px 0;
    font-size: 18px;
    background-color: var(--light-accent);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    border-left: 5px solid var(--success);
}

.timer {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    display: inline-block;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-content {
        flex-direction: column;
    }
    
    .btn-large {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .problem-image, .success-image {
        height: 250px;
    }
}

/* No lo incluyo aquí de nuevo para no hacer la respuesta excesivamente larga, pero es crucial que lo hagas. */
:root {
    --primary: #E67E22;
    --secondary: #D35400;
    /* ...y todo lo demás... */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ...hasta el final de las reglas de estilo... */
@media (max-width: 768px) {
    .problem-image, .success-image {
        height: 250px;
    }
}

/* NUEVO CÓDIGO PARA TRANSICIONES SUAVES */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}