/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d7b5a;        /* Verde bosque principal */
    --primary-dark: #1e5a42;   /* Verde oscuro */
    --secondary: #7bbca1;      /* Verde claro/menta */
    --accent: #e89b5b;         /* Naranja cálido (mantiene contraste) */
    --text-dark: #2c3e35;      /* Texto oscuro con tinte verde */
    --text-light: #5a7d6c;     /* Texto claro verdoso */
    --background: #ffffff;     /* Blanco */
    --background-light: #f8faf9; /* Blanco con tinte verde muy suave */
    --border: #e1ede8;         /* Border verdoso claro */
    --success: #4caf50;        /* Verde éxito (se mantiene) */
    --shadow: rgba(45, 123, 90, 0.1);    /* Sombra verde suave */
    --shadow-lg: rgba(45, 123, 90, 0.15); /* Sombra verde más marcada */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.cta-header {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-header:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

/* Hero Section */
.hero {
    background-image: url('img/home.jpg'); /* Ruta a tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Ajusta el 0.7 más alto para más oscuro */
    z-index: 1;
}

.hero::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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Especialidades */
.especialidades,
.modalidades,
.metodo,
.experiencia,
.formacion,
.why-us,
.how-it-works,
.about-preview {
    padding: 80px 0;
}

.especialidades {
    background: var(--background-light);
}

.why-us {
    background: white;
}

.how-it-works {
    background: var(--background-light);
}

.about-preview {
    background: white;
}

/* Why Us / Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border-top: 3px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* How it Works - Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Preview */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.about-subtitle {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-highlights {
    list-style: none;
    margin: 25px 0;
}

.about-highlights li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px var(--shadow-lg);
    object-fit: cover;
}
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;    
  border-radius: 16px;

}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.3;
    margin-bottom: 10px;
}

.image-placeholder p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

/* Modalidades Info */
.modalidad-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.modalidad-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modalidad-info strong {
    color: var(--text-dark);
}

.experiencia {
    background: white;
}

.formacion {
    background: var(--background-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 35px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-lg);
    border-color: var(--primary);
}

.card-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.card h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
}

.card-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.card-list {
    list-style: none;
    margin-top: 20px;
}

.card-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.92rem;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Timeline Experiencia */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 120px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    padding-top: 5px;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    border-left: 4px solid var(--primary);
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 20px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Modalidades */
.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.modalidad-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    border-left: 4px solid var(--primary);
}

.modalidad-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.modalidad-card h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modalidad-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.modalidad-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: var(--background-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Método */
.metodo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.metodo-text {
    text-align: left;
}

.metodo-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.metodo-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.metodo-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.benefit-icon {
    background: var(--success);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.metodo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.metodo-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    border-left: 4px solid var(--primary);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Formación */
.formacion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.formacion-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    border-top: 3px solid var(--accent);
    transition: all 0.3s;
}

.formacion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px var(--shadow-lg);
}

.formacion-year {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.formacion-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.formacion-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.cta-contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    opacity: 0.7;
}

/* Page Hero (para páginas internas) */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
}

.service-detail.alternate {
    background: var(--background-light);
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-text {
    order: 1;
}

.service-content.reverse .service-text {
    order: 2;
}

.service-aside {
    order: 2;
}

.service-content.reverse .service-aside {
    order: 1;
}

.service-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.service-text h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.service-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 35px 0 15px;
    font-weight: 700;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

.service-detail.alternate .service-intro {
    background: white;
}

.service-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    border-bottom: 1px solid var(--border);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-list li strong {
    color: var(--text-dark);
}

.service-cta {
    margin-top: 40px;
}

/* Service Aside */
.service-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.aside-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    border-left: 3px solid var(--secondary);
}

.aside-card.highlight {
    background: var(--primary) !important;
    color: white;
    border-left-color: var(--accent);
}

.aside-card.highlight h4 {
    color: white !important;
}

.aside-card.highlight p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-detail.alternate .aside-card {
    background: white;
    border-left-color: var(--primary);
}

.aside-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.aside-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.aside-card ul {
    list-style: none;
    margin: 0;
}

.aside-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.aside-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Bio Section */
.bio-section {
    padding: 80px 0;
    background: white;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.bio-image-large {
    position: sticky;
    top: 100px;
}

.bio-image-large .image-placeholder {
    height: 500px;
}

.bio-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
}

.bio-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.bio-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--background-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border-top: 3px solid var(--secondary);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-top-color: var(--primary);
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.philosophy-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Timeline List */
.timeline-list {
    list-style: none;
    margin-top: 15px;
}

.timeline-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
}

.timeline-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Formación Detailed */
.formacion-detailed {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.formacion-item-large {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s;
}

.formacion-item-large:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px var(--shadow-lg);
}

.formacion-item-large.featured {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
}

.formacion-year-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.formacion-item-large.featured .formacion-year-badge {
    background: var(--accent);
}

.formacion-item-large h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.formacion-institution {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.formacion-item-large p:last-child {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Formación Complementaria */
.formacion-complementaria {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border);
}

.formacion-complementaria h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.complementaria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.complementaria-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
    border-top: 2px solid var(--secondary);
}

.complementaria-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.complementaria-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Specializations Summary */
.specializations-summary {
    padding: 80px 0;
    background: white;
}

.specializations-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 40px auto 0;
}

.spec-item {
    display: flex;
    gap: 25px;
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    align-items: start;
    transition: all 0.3s;
}

.spec-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px var(--shadow);
}

.spec-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.spec-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.spec-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.spec-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
    border-top: 4px solid var(--primary);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--shadow-lg);
}

.pricing-card.featured {
    border-top-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-header {
    padding: 40px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
}

.pricing-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.pricing-header h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-body {
    padding: 30px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* First Session Section */
.first-session-section {
    padding: 80px 0;
    background: white;
}

.first-session-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.first-session-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.first-session-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.first-session-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: start;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.detail-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.first-session-cta {
    display: flex;
    align-items: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-small {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.cta-small a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: var(--background-light);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.payment-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Bonos Section */
.bonos-section {
    padding: 80px 0;
    background: white;
}

.bonos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bono-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s;
    position: relative;
}

.bono-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-color: var(--primary);
}

.bono-card.highlight {
    border-color: var(--accent);
    border-width: 3px;
    box-shadow: 0 4px 20px var(--shadow);
}

.bono-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bono-header {
    text-align: center;
    margin-bottom: 25px;
}

.bono-header h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.bono-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.bono-price {
    text-align: center;
    margin-bottom: 15px;
}

.original-price {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.bono-price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.bono-save {
    text-align: center;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1rem;
}

.bono-features {
    list-style: none;
    margin: 0;
}

.bono-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.bono-features li:last-child {
    border-bottom: none;
}

.bonos-info {
    margin-top: 40px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.bonos-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-light);
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-note {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
    margin-top: 10px !important;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.form-container h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 123, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-box {
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.sidebar-box.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-left-color: var(--accent);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-box.highlight h3 {
    color: white;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 10px 0;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.phone-large {
    text-align: center;
    margin: 20px 0;
}

.phone-large a {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.phone-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.mini-faq {
    margin-bottom: 20px;
}

.mini-faq:last-child {
    margin-bottom: 0;
}

.mini-faq strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.mini-faq p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--background-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.location-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: white;
    border-radius: 12px;
}

.location-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.location-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.location-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-note {
    padding: 20px;
    background: rgba(45, 90, 123, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 0.95rem !important;
}

.location-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.map-icon {
    font-size: 5rem;
    opacity: 0.3;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 5px 0;
}

.map-note {
    font-size: 0.9rem !important;
    opacity: 0.7 !important;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.schedule-card {
    background: var(--background-light);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid var(--primary);
    transition: all 0.3s;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.schedule-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.schedule-time {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.schedule-card p:last-child {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.schedule-note {
    margin-top: 40px;
    padding: 25px;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.schedule-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    /* Header móvil */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px var(--shadow);
        transition: right 0.3s;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .nav a {
        display: block;
        padding: 15px 10px;
    }
    
    .nav a.active::after {
        display: none;
    }
    
    .nav a.active {
        background: var(--background-light);
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .cta-header {
        order: -1;
        margin-left: auto;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-trust {
        gap: 30px;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    /* Grids */
    .cards-grid,
    .modalidades-grid,
    .formacion-grid,
    .features-grid,
    .steps-grid,
    .philosophy-grid,
    .complementaria-grid,
    .pricing-grid,
    .payment-methods,
    .bonos-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-grid,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        order: -1;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* First Session */
    .first-session-content {
        grid-template-columns: 1fr;
    }
    
    .first-session-cta {
        order: -1;
    }
    
    /* Service Detail */
    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-text,
    .service-aside {
        order: initial;
    }
    
    .service-aside {
        position: static;
    }
    
    /* Método y About */
    .metodo-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* Bio */
    .bio-content {
        grid-template-columns: 1fr;
    }
    
    .bio-image-large {
        position: static;
        order: -1;
    }
    
    .bio-image-large .image-placeholder {
        height: 350px;
    }
    
    /* Timeline */
    .timeline::before {
        left: 80px;
    }
    
    .timeline-year {
        width: 80px;
        font-size: 0.9rem;
    }
    
    /* CTA */
    .cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .cta-header {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
    
    .btn-large {
        padding: 14px 28px;
    }
    
    .hero-trust {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-label {
        font-size: 0.8rem;
    }
    
    /* Sections */
    .especialidades,
    .modalidades,
    .metodo,
    .experiencia,
    .formacion,
    .why-us,
    .how-it-works,
    .about-preview {
        padding: 50px 0;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    /* Cards */
    .card {
        padding: 25px 20px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card h4 {
        font-size: 1.2rem;
    }
    
    .card-badge {
        font-size: 0.75rem;
        top: -10px;
        right: 20px;
    }
    
    /* Feature cards */
    .feature-card,
    .philosophy-card {
        padding: 25px 20px;
    }
    
    .feature-icon,
    .philosophy-icon {
        font-size: 2.5rem;
    }
    
    /* Steps */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-card h4 {
        font-size: 1.1rem;
    }
    
    /* Modalidades */
    .modalidad-card {
        padding: 30px 20px;
    }
    
    .modalidad-icon {
        font-size: 3rem;
    }
    
    .modalidad-card h4 {
        font-size: 1.3rem;
    }
    
    /* Service Detail */
    .service-badge {
        font-size: 0.75rem;
    }
    
    .service-text h2 {
        font-size: 1.8rem;
    }
    
    .service-text h3 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }
    
    .service-intro {
        font-size: 1rem;
        padding: 15px;
    }
    
    .service-text p {
        font-size: 1rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
    }
    
    .aside-card {
        padding: 20px;
    }
    
    .aside-card h4 {
        font-size: 1rem;
    }
    
    /* Timeline */
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .timeline-year {
        width: auto;
        font-size: 0.85rem;
    }
    
    .timeline-content {
        padding: 20px;
        margin-left: 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    /* Bio */
    .bio-text h2 {
        font-size: 1.6rem;
    }
    
    .bio-text p {
        font-size: 1rem;
    }
    
    .bio-image-large .image-placeholder {
        height: 300px;
    }
    
    .placeholder-icon {
        font-size: 4rem;
    }
    
    /* Formación */
    .formacion-item-large {
        padding: 25px 20px;
    }
    
    .formacion-year-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .formacion-item-large h4 {
        font-size: 1.2rem;
    }
    
    .formacion-institution {
        font-size: 0.9rem;
    }
    
    .formacion-complementaria h3 {
        font-size: 1.5rem;
    }
    
    .complementaria-item {
        padding: 15px;
    }
    
    /* Specializations Summary */
    .spec-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .spec-icon {
        font-size: 2.5rem;
    }
    
    .spec-content h4 {
        font-size: 1.2rem;
    }
    
    /* Stats */
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* About Preview */
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
    }
    
    .about-highlights li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content > p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .cta-note {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
    
    /* Pricing móvil */
    .pricing-card {
        padding: 0;
    }
    
    .pricing-header {
        padding: 30px 20px 15px;
    }
    
    .pricing-icon {
        font-size: 3rem;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
    }
    
    .pricing-body {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-badge {
        font-size: 0.75rem;
        top: 15px;
        right: 15px;
    }
    
    /* First Session móvil */
    .first-session-text h2 {
        font-size: 1.6rem;
    }
    
    .detail-item {
        padding: 15px;
    }
    
    .detail-icon {
        font-size: 1.8rem;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    /* Payment móvil */
    .payment-card {
        padding: 25px 20px;
    }
    
    .payment-icon {
        font-size: 2.5rem;
    }
    
    /* Bonos móvil */
    .bono-card {
        padding: 30px 20px;
    }
    
    .bono-header h4 {
        font-size: 1.2rem;
    }
    
    .bono-price-amount {
        font-size: 2.2rem;
    }
    
    .bono-badge {
        font-size: 0.75rem;
    }
    
    /* FAQ móvil */
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px var(--shadow);
        transition: right 0.3s;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .nav a {
        display: block;
        padding: 15px 10px;
    }
    
    .nav a.active::after {
        display: none;
    }
    
    .nav a.active {
        background: var(--background-light);
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .cta-header {
        order: -1;
        margin-left: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .metodo-content {
        grid-template-columns: 1fr;
    }
    
    .cards-grid,
    .modalidades-grid,
    .formacion-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 80px;
    }
    
    .timeline-year {
        width: 80px;
    }
}

@media (max-width: 640px) {
    .nav ul {
        display: none;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-trust {
        gap: 30px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-year {
        width: auto;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }
}