/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Variables CSS para colores */
:root {
    --primary-color: #4a2c7f;
    --secondary-color: #5b3a9e;
    --accent-color: #ffd700;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #555555;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(74, 44, 127, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo-img {
    height: 53px;
    width: auto;
    object-fit: contain;
}

.nav-logo h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--gradient);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-platform {
    background: transparent;
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-platform:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,215,0,0.1)"><path d="M0,0v100c166.7,0,166.7-100,333.3-100s166.7,100,333.3,100s166.7-100,333.3-100v-100H0z"/></svg>') repeat-x;
    animation: wave 10s ease-in-out infinite;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-left: 10%;
    padding-top: 15%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--accent-color);
    display: block;
}

.hero-slogan {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.floating-card {
    background: var(--white);
    color: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Texto expandible */
.expandable-text {
    position: relative;
}

.expandable-text .text-full {
    display: none;
}

.expandable-text.expanded .text-preview {
    display: none;
}

.expandable-text.expanded .text-full {
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary-color);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.expandable-text.expanded .read-more-btn i {
    transform: rotate(180deg);
}

.expandable-text .read-less-text {
    display: none;
}

.expandable-text.expanded .read-more-text {
    display: none;
}

.expandable-text.expanded .read-less-text {
    display: inline;
}

/* Secciones generales */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Sobre Nosotros */
.sobre-nosotros {
    background: var(--light-gray);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sobre-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.sobre-content h4 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
}

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

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.feature-item ul {
    list-style: none;
}

.feature-item li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-item li:before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

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

.oferta-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.oferta-card:hover {
    transform: translateY(-10px);
}

.oferta-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.oferta-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.card-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

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

.period {
    color: var(--text-color);
}

.card-inscription {
    text-align: center;
    margin-bottom: 1rem;
}

.inscription-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    background: rgba(74, 44, 127, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Talleres Especializados */
.talleres-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.talleres-header {
    text-align: center;
    margin-bottom: 3rem;
}

.talleres-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.talleres-header h3 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.talleres-description {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

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

@media (max-width: 900px) {
    .talleres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .talleres-grid {
        grid-template-columns: 1fr;
    }
}

.taller-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.taller-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(74, 44, 127, 0.15);
}

.taller-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 44, 127, 0.3);
}

.taller-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.taller-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.taller-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.talleres-pricing {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(74, 44, 127, 0.15);
    border: 3px solid var(--accent-color);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-badge {
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-details {
    margin-bottom: 1.5rem;
}

.monthly-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

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

.monthly-price .period {
    color: var(--text-color);
    font-size: 1rem;
}

.inscription-price {
    background: rgba(74, 44, 127, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.inscription-price .inscription-text {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.pricing-benefits {
    text-align: left;
}

.pricing-benefits p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.pricing-benefits i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Matrícula */
.matricula {
    background: var(--light-gray);
}

.matricula-header {
    text-align: center;
    margin-bottom: 3rem;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff6b6b;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.matricula-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list i {
    color: var(--accent-color);
    width: 20px;
}

.timeline {
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 11px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid var(--border-color);
    border-radius: 50%;
}

.timeline-item.active:before {
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.form-card p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Formularios */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Por qué elegirnos */
.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ventaja-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.ventaja-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ventaja-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ventaja-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Instalaciones */
.instalaciones {
    background: var(--light-gray);
}

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

.instalacion-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.instalacion-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instalacion-image i {
    font-size: 2rem;
    color: var(--white);
}

.instalacion-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Contacto */
.contacto {
    background: var(--light-gray);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

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

.info-content p {
    color: var(--text-color);
    line-height: 1.4;
}

.contacto-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contacto-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* CTA Final */
.cta-final {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

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

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

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

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        gap: 0;
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-platform {
        margin: 0.2rem 1rem;
        text-align: center;
    }
    
    .nav-cta {
        margin: 0.5rem 1rem;
    }
    
    .nav-logo {
        gap: 0.6rem;
    }
    
    .nav-logo-img {
        height: 43px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .hero-content {
        padding-left: 0;
        padding-top: 25%;
        padding-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .floating-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 90%;
    }
    
    .sobre-grid,
    .matricula-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .read-more-btn {
        font-size: 0.85rem;
        padding: 0.8rem 0;
    }
    
    .oferta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .oferta-card {
        padding: 2rem;
    }
    
    .oferta-card.featured {
        transform: scale(1);
    }

    .talleres-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .talleres-header h3 {
        font-size: 1.8rem;
    }
    
    .talleres-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .taller-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .ventajas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ventaja-card {
        padding: 1.8rem;
    }
    
    .instalaciones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
        font-size: 0.95rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }
    
    .contacto-form {
        padding: 2rem 1.5rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 0.9rem 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Mejorar FAQ en móvil */
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Mejorar timeline */
    .timeline:before {
        left: 15px;
    }
    
    .timeline-item:before {
        left: 6px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0.6rem 0.8rem;
    }
    
    .nav-logo-img {
        height: 38px;
    }
    
    .nav-logo h3 {
        font-size: 0.95rem;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem;
    }
    
    .hero-buttons .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding-top: 20%;
        padding-bottom: 1.5rem;
    }
    
    .floating-card {
        padding: 1.2rem;
        margin-top: 1rem;
    }
    
    .floating-card i {
        font-size: 2.5rem;
    }
    
    .floating-card h4 {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .oferta-card,
    .ventaja-card,
    .instalacion-item {
        padding: 1.5rem;
    }
    
    .card-icon i,
    .ventaja-icon i {
        font-size: 2.5rem;
    }
    
    .talleres-header h3 {
        font-size: 1.5rem;
    }
    
    .talleres-description {
        font-size: 0.95rem;
    }
    
    .taller-card {
        padding: 1.2rem;
    }
    
    .taller-icon {
        width: 70px;
        height: 70px;
    }
    
    .taller-icon i {
        font-size: 1.8rem;
    }
    
    .taller-card h4 {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .monthly-price .price {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .form-card,
    .contacto-form {
        padding: 1.5rem 1rem;
    }
    
    .form-card h3,
    .contacto-form h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .form-group i {
        left: 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-date {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .info-item {
        padding: 1.2rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon i {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* Modal de Publicidad Emergente */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 90vh;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10001;
}

.popup-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.popup-close i {
    pointer-events: none;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .popup-container {
        max-width: 95%;
        max-height: 85vh;
        border-radius: 15px;
    }
    
    .popup-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
    
    .popup-image {
        max-height: 85vh;
    }
}

/* Carrusel Profesional Moderno - Estilo Harvard/MIT/Stanford */
.hero-carousel-modern {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    border: 3px solid #ffd700;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(20px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide-modern.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}
/* Slide con imagen */
.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.carousel-slide-modern.active .slide-image {
    animation: subtleZoom 8s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    pointer-events: none;
}

/* Enlace clickeable para imagen */
.image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.image-link:hover .image-frame {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-link .image-frame {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Indicador de click */
.click-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(74, 44, 127, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(74, 44, 127, 0.3);
}

.image-link:hover .click-indicator {
    opacity: 1;
    transform: translateY(0);
}

.click-indicator i {
    font-size: 16px;
    animation: pulseIcon 2s ease-in-out infinite;
}

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

/* Tarjeta flotante moderna */
.floating-card-modern {
    position: relative;
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(74, 44, 127, 0.15), 0 8px 16px rgba(74, 44, 127, 0.08);
    text-align: center;
    max-width: 320px;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid #ffd700;
}

.floating-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(74, 44, 127, 0.2), 0 12px 24px rgba(74, 44, 127, 0.12);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(74, 44, 127, 0.25);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.floating-card-modern h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.floating-card-modern p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 0;
}

.card-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffed4e 100%);
    color: var(--dark-gray);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Controles del carrusel */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}
.carousel-btn {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border: 2px solid #ffd700;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    opacity: 0;
    transform: scale(0.8);
}

.carousel-wrapper:hover .carousel-btn {
    opacity: 1;
    transform: scale(1);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    border-color: #ffed4e;
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Indicadores modernos (dots) */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    backdrop-filter: blur(4px);
}

.dot:hover {
    background: rgba(255, 215, 0, 0.8);
    transform: scale(1.3);
    border-color: #ffed4e;
}

.dot.active {
    width: 32px;
    border-radius: 5px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

/* Barra de progreso */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(74, 44, 127, 0.5);
}

.progress-bar.animating {
    animation: progressAnimation 2.5s linear;
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Responsive para carrusel moderno */
@media (max-width: 968px) {
    .carousel-wrapper {
        height: 360px;
        border-radius: 20px;
        border-width: 2px;
    }
    
    .slide-content {
        padding: 12px;
    }
    
    .floating-card-modern {
        padding: 30px 25px;
        max-width: 280px;
    }
    
    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .card-icon-wrapper i {
        font-size: 32px;
    }
    
    .floating-card-modern h4 {
        font-size: 20px;
    }
    
    .floating-card-modern p {
        font-size: 14px;
    }
    
    .click-indicator {
        padding: 10px 16px;
        font-size: 13px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        height: 300px;
        border-radius: 16px;
        border-width: 2px;
    }
    
    .slide-content {
        padding: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .floating-card-modern {
        padding: 24px 20px;
        max-width: 250px;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .card-icon-wrapper i {
        font-size: 28px;
    }
    
    .floating-card-modern h4 {
        font-size: 18px;
    }
    
    .floating-card-modern p {
        font-size: 13px;
    }
    
    .card-badge {
        font-size: 11px;
        padding: 5px 14px;
        margin-top: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .carousel-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .click-indicator {
        padding: 8px 14px;
        font-size: 12px;
        top: 12px;
        right: 12px;
    }
    
    .click-indicator i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        height: 260px;
        border-radius: 14px;
    }
    
    .slide-content {
        padding: 8px;
    }
    
    .floating-card-modern {
        padding: 20px 16px;
        max-width: 220px;
    }
    
    .card-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .card-icon-wrapper i {
        font-size: 24px;
    }
    
    .floating-card-modern h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .floating-card-modern p {
        font-size: 12px;
    }
    
    .card-badge {
        font-size: 10px;
        padding: 4px 12px;
        margin-top: 10px;
    }
    
    .carousel-controls {
        padding: 0 6px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    .carousel-dots {
        bottom: 12px;
        gap: 6px;
    }
    
    .click-indicator {
        padding: 6px 12px;
        font-size: 11px;
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .click-indicator i {
        font-size: 12px;
    }
}

/* Botón Flotante de Academia */
.floating-academy-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 999;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-btn-link {
    display: block;
    text-decoration: none;
}

.academy-btn-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(74, 44, 127, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    min-width: 250px;
    border: 2px solid var(--accent-color);
    position: relative;
}

.academy-btn-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 44, 127, 0.6);
}

.academy-btn-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

.academy-btn-icon .academy-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

.academy-btn-text {
    flex: 1;
}

.academy-btn-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 4px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.academy-btn-text p {
    font-size: 13px;
    margin: 0;
    opacity: 0.95;
}

.academy-btn-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.academy-btn-close:hover {
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-academy-btn.hidden {
    display: none;
}

/* Responsive para botón flotante */
@media (max-width: 768px) {
    .floating-academy-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .academy-btn-content {
        min-width: 220px;
        padding: 14px 16px;
        gap: 12px;
    }
    
    .academy-btn-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .academy-btn-text h4 {
        font-size: 14px;
    }
    
    .academy-btn-text p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .floating-academy-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .academy-btn-content {
        min-width: 200px;
        padding: 12px 14px;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .academy-btn-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .academy-btn-text h4 {
        font-size: 13px;
    }
    
    .academy-btn-text p {
        font-size: 11px;
    }
    
    .academy-btn-close {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}