/* Dominando Pinceladas - Estilos CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lora:wght@400;500;600&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7dc4c4;
    --secondary-color: #f39ac7;
    --accent-color: #ffd966;
    --dark-text: #2c3e50;
    --light-bg: #fafcfc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #7dc4c4 0%, #9ed9d9 100%);
    --gradient-2: linear-gradient(135deg, #f39ac7 0%, #f8b8d5 100%);
    --gradient-3: linear-gradient(135deg, #ffd966 0%, #ffe699 100%);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-strong: 0 12px 40px rgba(0,0,0,0.16);
}

body {
    font-family: 'Lora', serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://dominandopinceladas.com/wp-content/uploads/2024/05/cabeceradetalles.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.95;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 196, 196, 0.85) 0%, rgba(158, 217, 217, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 1200px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    text-shadow: 3px 3px 12px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #4a5568;
}

.intro-highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3d4 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    margin: 2rem 0;
    font-style: italic;
}

/* Author Section */
.author-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.author-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.author-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.author-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    transition: transform 0.3s ease;
}

.author-image img:hover {
    transform: scale(1.02);
}

.author-bio {
    flex: 1.5;
    min-width: 300px;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.author-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5568;
}

/* Before After Gallery */
.before-after-section {
    padding: 5rem 0;
    background: var(--white);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.before-after-item {
    text-align: center;
}

.comparison-wrapper {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.comparison-image {
    flex: 1;
    max-width: 45%;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.comparison-image img:hover {
    transform: translateY(-5px);
}

.comparison-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.comparison-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Secrets Section */
.secrets-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.secrets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.secret-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.secret-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.secret-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
}

/* Methodology Section */
.methodology-section {
    padding: 5rem 0;
    background: var(--white);
}

.exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.exercise-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.exercise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.exercise-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.exercise-content {
    padding: 1.5rem;
}

.exercise-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.exercise-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.exercise-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Courses Section */
.courses-intro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e6f7f7 0%, #d4f1f1 100%);
    text-align: center;
}

.courses-section {
    padding: 5rem 0;
    background: var(--white);
}

.course-card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    margin-bottom: 4rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.course-header {
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.course-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.course-1 .course-header {
    background: var(--gradient-1);
}

.course-2 .course-header {
    background: var(--gradient-2);
}

.course-3 .course-header {
    background: var(--gradient-3);
}

.course-level {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.course-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.course-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.95;
}

.course-body {
    padding: 3rem;
}

.module-group {
    margin-bottom: 3rem;
}

.module-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.module-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateX(5px);
}

.module-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.lessons-list {
    list-style: none;
    padding-left: 2rem;
}

.lesson-item {
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lesson-item:hover {
    background: #fffef8;
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
}

.lesson-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-text);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.lesson-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #4a5568;
}

/* Bonuses Section */
.bonuses-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3d4 100%);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.bonus-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #7dc4c4 0%, #f39ac7 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.2);
}

.cta-price {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--white);
    margin: 2rem 0;
    text-shadow: 4px 4px 16px rgba(0,0,0,0.3);
}

.cta-price span {
    font-size: 0.5em;
    vertical-align: super;
}

.cta-features {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 3rem auto;
    box-shadow: var(--shadow-strong);
}

.cta-features-list {
    list-style: none;
    text-align: left;
}

.cta-features-list li {
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-features-list li::before {
    content: '✓';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: var(--white);
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.guarantee-badge {
    margin-top: 3rem;
}

.guarantee-badge img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Footer */
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-section::before {
        background-image: url('https://dominandopinceladas.com/wp-content/uploads/2024/05/cabeceradetalles-mob-2.jpg');
    }

    .author-container {
        gap: 2rem;
    }

    .comparison-wrapper {
        flex-direction: column;
    }

    .comparison-image {
        max-width: 80%;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .course-title {
        font-size: 2rem;
    }

    .secrets-grid,
    .exercises-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}