﻿/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
    padding: 1.25rem 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 3rem;
    transition: all 0.3s;
}

header.scrolled .logo img {
    height: 2.25rem;
}

nav {
    display: none;
}

@media (min-width: 768px) {
    nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

nav a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
    color: #e2e8f0;
}

header.scrolled nav a {
    color: #475569;
}

nav a:hover {
    color: #06b6d4;
}

.cta-button {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: #e2e8f0;
}

header.scrolled .mobile-menu-btn svg {
    stroke: #1e293b;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f5f9;
    padding: 1rem;
    flex-direction: column;
    animation: slideDown 0.5s ease-out forwards;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: #f1f5f9;
}

.mobile-menu .cta-button {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    display: inline-block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background: linear-gradient(to top, #f8fafc, transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 42rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    padding: 1rem 2rem;
    background: white;
    color: #0f172a;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #ecfeff;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-label {
    color: #06b6d4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    color: #475569;
    font-size: 1.125rem;
}

/* About Section */
.about-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    align-items: start;
}

@media (min-width: 640px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }
}

.about-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
}

.about-description {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
}

/* Mission and Vision Cards */
.mission-vision-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mission-card,
.vision-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    margin-bottom: 0.75rem;
}

.mv-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.mv-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Courses */
.course-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.filter-btn:not(.active) {
    background: #f1f5f9;
    color: #475569;
}

.filter-btn:not(.active):hover {
    background: #e2e8f0;
}

.courses-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.course-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

.course-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #dbeafe;
    transform: translateY(-0.25rem);
}

.course-image-container {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.course-card:hover .course-image {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: #1e3a8a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #eff6ff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.course-presencial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    background: #2563eb;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.course-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.course-card:hover .course-title {
    color: #1d4ed8;
}

.course-description {
    color: #475569;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.course-meta-item svg {
    width: 1rem;
    height: 1rem;
    color: #06b6d4;
}

.course-whatsapp-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.course-whatsapp-btn:hover {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
}

.course-whatsapp-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.course-whatsapp-btn:hover svg {
    transform: scale(1.1);
}

/* Benefits */
.benefits-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    text-align: left;
    padding: 2rem;
    background: #111827;
    /* Darker than section bg */
    border: 1px solid #1f2937;
    border-radius: 1rem;
    transition: all 0.3s;
    height: 100%;
}

.benefit-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    border-color: #06b6d4;
    transform: translateY(-0.25rem);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    background: #1f2937;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #06b6d4;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #06b6d4;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: #0f172a;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #64748b;
}

.testimonial-content {
    color: #475569;
    line-height: 1.75;
    font-style: italic;
}

/* FAQ */
.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    line-height: 1.75;
}

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #06b6d4;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-logo {
    height: 5rem;
    width: auto;
    margin-bottom: 1rem;
    display: inline-block;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #06b6d4;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    padding: 0;
    margin: 0;
}

.social-icon:hover {
    background: transparent;
    border: none;
    transform: translateY(-2px);
}

.social-icon:hover svg {
    color: #06b6d4;
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

/* WhatsApp Float at the end */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

/* Reservaciones Section Styles */
.reservaciones-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 100%);
    padding: 4rem 0;
}

.reservaciones-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .reservaciones-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.reservaciones-form-container {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .reservaciones-form-container {
        padding: 3rem;
    }
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 2.25rem;
    }
}

.form-description {
    color: #64748b;
    font-size: 1rem;
}

.reserva-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    color: #0f172a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.btn-submit {
    padding: 1rem 1.5rem;
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -3px rgba(6, 182, 212, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.reservaciones-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1.5px solid #f1f5f9;
    transition: all 0.3s;
}

.benefits-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.benefit-icon-large {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #ecfeff 0%, #e0f2fe 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon-large svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #0891b2;
    stroke-width: 2;
}

.benefit-title-large {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.benefits-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1.5px solid #f1f5f9;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .reservaciones-form-container {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .md-hidden {
        display: none;
    }
}

/* Extra small devices (320px and up) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.25rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        padding-top: 4rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .course-title {
        font-size: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .reservaciones-form-container {
        padding: 1.5rem;
    }

    nav a {
        font-size: 0.75rem;
    }

    .whatsapp-float {
        width: 3rem;
        height: 3rem;
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .course-image-container {
        height: 12rem;
    }

    .mv-icon {
        margin-bottom: 0.5rem;
    }

    .mv-title {
        font-size: 1rem;
    }

    .mv-description {
        font-size: 0.8rem;
    }
}

/* Small devices (480px and up) */
@media (min-width: 480px) and (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .course-title {
        font-size: 1.125rem;
    }
}

/* Ensure text is readable and tap targets are large enough */
@media (max-width: 768px) {
    button,
    a {
        min-height: 44px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* hero & booking replaced to use existing site styles */

/* Equipos Grid */
.equipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .equipos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .equipos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.equipo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.equipo-card:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.equipo-header {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    position: relative;
    border-bottom: 3px solid #3b82f6;
}

.equipo-logo {
    max-width: 90%;
    max-height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.equipo-card:hover .equipo-logo {
    filter: drop-shadow(0 6px 16px rgba(30, 58, 138, 0.4));
    transform: scale(1.12);
}

.equipo-image-container {
    padding: 1.5rem 1rem;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.equipo-image {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.equipo-card:hover .equipo-image {
    transform: scale(1.05);
}

.equipo-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.equipo-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.equipo-specs {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.spec-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.equipo-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.equipo-reserve-btn:hover {
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(30, 58, 138, 0.3);
}

.equipo-reserve-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .equipos-grid {
        grid-template-columns: 1fr;
    }

    .equipo-card {
        margin-bottom: 1rem;
    }

    .equipo-image-container {
        min-height: 150px;
    }

    .equipo-image {
        max-height: 120px;
    }
}