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

:root {
    --primary-color: #7B9A9F;
    --secondary-color: #A0BCC0;
    --accent-color: #E8D5B7;
    --text-dark: #4A5A66;
    --text-light: #7A8B96;
    --bg-light: #FAF9F7;
    --bg-white: #FFFFFF;
    --shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 6px 10px -3px rgba(0, 0, 0, 0.08);
    --sage-green: #B8C5B0;
    --soft-beige: #F5F0E8;
    --muted-blue: #DDE6ED;
    --warm-gray: #E8E2D9;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-weight: 400;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    padding: 0.4rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link .icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.top-bar-link span:not(.icon) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-bar-social {
    display: flex;
    gap: 0.5rem;
    margin: 0 0.75rem;
    flex-shrink: 0;
}

.social-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.top-bar-cta {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    margin-left: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.top-bar-cta:hover {
    background-color: var(--soft-beige);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Clase helper para ocultar texto en pantallas pequeñas */
.hide-on-small {
    display: inline;
}

@media (max-width: 1400px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 0.5rem;
    }
    
    .top-bar-link span:not(.icon) {
        max-width: 120px;
    }
    
    .social-icon {
        width: 22px;
        height: 22px;
    }
    
    .top-bar-social {
        gap: 0.4rem;
        margin: 0 0.5rem;
    }
    
    .top-bar-cta {
        padding: 0.35rem 0.9rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 1200px) {
    .hide-on-small {
        display: none;
    }
    
    .top-bar-link {
        gap: 0.2rem;
    }
    
    .top-bar-link .icon {
        font-size: 0.85rem;
    }
    
    .top-bar-cta {
        padding: 0.3rem 0.8rem;
        font-size: 0.65rem;
        margin-left: 0.5rem;
    }
}

@media (max-width: 1024px) {
    .top-bar-left {
        display: none;
    }
    
    .top-bar-content {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.4s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}


.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero {
    background: linear-gradient(135deg, rgba(123, 154, 159, 0.8) 0%, rgba(160, 188, 192, 0.8) 50%, rgba(221, 230, 237, 0.8) 100%),
                url('img/hero.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-item p {
    opacity: 0.9;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.courses {
    padding: 6rem 0;
    background-color: var(--soft-beige);
}

/* Filtros de cursos eliminados - ya no se usan */

.courses-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background-color: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.course-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    position: relative;
    opacity: 0.9;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Estilo para imágenes personalizadas desde Customizer */
.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Specific backgrounds for each service */
.course-card[data-category="fertilidad"] .course-image {
    background: linear-gradient(rgba(123, 154, 159, 0.8), rgba(123, 154, 159, 0.8)),
                url('../img/photo_2025-07-31_10-49-47.jpg') center/cover;
}

.course-card[data-category="embarazo"] .course-image {
    background: linear-gradient(rgba(160, 188, 192, 0.8), rgba(160, 188, 192, 0.8)),
                url('../img/photo_2025-07-31_10-49-48.jpg') center/cover;
}

.course-card[data-category="maternidad"] .course-image {
    background: linear-gradient(rgba(184, 197, 176, 0.8), rgba(184, 197, 176, 0.8)),
                url('../img/photo_2025-07-31_10-49-50.jpg') center/cover;
}

.course-card[data-category="menopausia"] .course-image {
    background: linear-gradient(rgba(232, 213, 183, 0.8), rgba(232, 213, 183, 0.8)),
                url('../img/photo_2025-07-31_10-49-51.jpg') center/cover;
}

.course-card[data-category="transformacional"] .course-image {
    background: linear-gradient(rgba(221, 230, 237, 0.8), rgba(221, 230, 237, 0.8)),
                url('../img/photo_2025-07-31_10-49-52.jpg') center/cover;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.course-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.course-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.coaches {
    padding: 6rem 0;
    background-color: var(--muted-blue);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coach-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.coach-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.coach-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    opacity: 0.85;
}

.coach-card h3 {
    margin-bottom: 0.5rem;
}

.coach-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.coach-bio {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.coach-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.testimonials-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--muted-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-nav span {
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    display: none;
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--muted-blue) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.5s ease;
}

.testimonial-card.active {
    display: block;
    transform: scale(1);
    opacity: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar span {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-info h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: var(--accent-color);
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    animation: starPulse 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.1s; }
.star:nth-child(3) { animation-delay: 0.2s; }
.star:nth-child(4) { animation-delay: 0.3s; }
.star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.testimonial-body {
    position: relative;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -30px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-highlight {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    font-size: 1.5rem;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
}

.cta {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.contact {
    padding: 6rem 0;
    background-color: var(--warm-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 2rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
}

/* Book Section */
.book-section {
    background-color: var(--soft-beige);
    padding: 5rem 0;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.book-image-container {
    display: flex;
    justify-content: center;
}

.book-image {
    width: 300px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.book-image:hover img {
    transform: scale(1.02);
}

.book-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.book-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.book-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.book-cta {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .book-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-image {
        width: 200px;
        height: 300px;
    }
    
    .book-cta {
        justify-content: center;
    }
}

.footer {
    background-color: #3E4E5A;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.close:hover {
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .brand-title {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo {
        height: 40px;
    }
    
    .brand-text {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .courses-grid,
    .coaches-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para páginas internas */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--muted-blue) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Estilos para página de cursos */
.courses-full {
    padding: 6rem 0;
    background-color: var(--soft-beige);
}

.courses-full .courses-grid {
    margin-top: 3rem;
}

.courses-full .course-info {
    gap: 1.5rem;
}

.courses-full .course-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Estilos para página de coaches */
.coaches-detail {
    padding: 6rem 0;
    background-color: var(--muted-blue);
}

.coach-grid-detail {
    display: grid;
    gap: 3rem;
}

.coach-detail-card {
    background-color: var(--bg-white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.coach-detail-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.coach-detail-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0.85;
}

.coach-detail-info h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.coach-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.coach-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential {
    background-color: var(--muted-blue);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.coach-detail-content h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.specialties-list, .education-list {
    list-style: none;
    padding-left: 1.5rem;
}

.specialties-list li, .education-list li {
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.specialties-list li:before {
    content: "✓";
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
}

.education-list li:before {
    content: "•";
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
}

.coach-stats-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.coach-stats-detail .stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Estilos para página de testimonios */
.testimonials-full {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.testimonial-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-full-card {
    background-color: var(--soft-beige);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.testimonial-author-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.8;
}

.testimonial-author-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.testimonial-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-results {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
}

.testimonial-results h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.testimonial-results ul {
    list-style: none;
    padding-left: 1.5rem;
}

.testimonial-results li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.testimonial-results li:before {
    content: "→";
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Estilos para página de contacto */
.contact-full {
    padding: 6rem 0;
    background-color: var(--warm-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form-extended {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.info-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--muted-blue);
    border-radius: 50%;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.social-links-extended {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--muted-blue);
    border-radius: 2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-options {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.option-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--soft-beige);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
}

.option-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.option-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .coach-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .coach-stats-detail {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-wrapper {
        flex-direction: column;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

/* Estilos para sección Sobre mí */
.about-me {
    padding: 6rem 0;
    background-color: var(--soft-beige);
}

.about-content {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-image-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    width: 100%;
    height: 420px;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background-color: #f8f8f8;
}

.about-image:hover img {
    /* Sin efecto de zoom */
}

.about-credentials {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: var(--muted-blue);
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.credential-item:hover {
    transform: translateX(5px);
    background-color: var(--warm-gray);
}

.credential-item:last-child {
    margin-bottom: 0;
}

.credential-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 50%;
}

.credential-item span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-image {
        height: 350px;
    }
}

/* Estilos para sección FAQs */
.faqs {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--soft-beige);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.4s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.4s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}