:root {
    --primary-blue: #0057B7;
    --primary-blue-dark: #003D82;
    --primary-blue-light: #3B7DD6;
    --accent-blue: #00A8E8;
    --background-white: #FFFFFF;
    --background-light: #F8FAFB;
    --background-gray: #F0F4F8;
    --text-dark: #1A202C;
    --text-gray: #4A5568;
    --text-light: #718096;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 87, 183, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 87, 183, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 87, 183, 0.16);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-ct {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    transform: rotate(-2deg);
}

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

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--background-light);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 87, 183, 0.65), rgba(0, 168, 232, 0.6)),
                url('/img/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 125, 214, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

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

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

.welcome {
    padding: 6rem 0;
    background: var(--background-light);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.welcome-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.welcome-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.welcome-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.welcome-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-float {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.image-float i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.image-float strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.image-float span {
    display: block;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.modalities {
    padding: 6rem 0;
    background: white;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.modality-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.modality-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.modality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modality-card:hover .modality-image img {
    transform: scale(1.1);
}

.modality-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 87, 183, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modality-card:hover .modality-overlay {
    opacity: 1;
}

.modality-link {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modality-content {
    padding: 2rem;
}

.modality-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modality-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.modality-features {
    list-style: none;
}

.modality-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.modality-features i {
    color: var(--primary-blue);
    font-size: 1.125rem;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--background-light);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transform: rotate(-5deg);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
    transform: rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info i {
    color: var(--accent-blue);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-story {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values {
    padding: 6rem 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
}

.mission-vision {
    padding: 6rem 0;
    background: white;
}

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

.mv-card {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 24px;
    border-left: 5px solid var(--primary-blue);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 1.75rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.modality-hero {
    background-size: cover;
    background-position: center;
    padding: 12rem 0 6rem;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.modality-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 87, 183, 0.7), rgba(0, 87, 183, 0.9));
}

.modality-hero-content {
    position: relative;
    z-index: 2;
}

.modality-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modality-hero p {
    font-size: 1.5rem;
    opacity: 0.95;
}

.modality-intro {
    padding: 6rem 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.intro-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.modality-features {
    padding: 1rem 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.modality-benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefits-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefits-list i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.benefits-list p {
    color: var(--text-gray);
}

.experimental-header {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
}

.experimental-intro {
    padding: 6rem 0;
    background: white;
}

.intro-box {
    max-width: 900px;
    margin: 0 auto;
}

.intro-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-box p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-gray);
}

.check-list i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.preparation {
    padding: 6rem 0;
    background: var(--background-light);
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

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

.prep-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.prep-icon i {
    font-size: 1.5rem;
    color: white;
}

.prep-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.prep-card ul {
    list-style: none;
}

.prep-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.prep-card ul li:last-child {
    border-bottom: none;
}

.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.faq-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item i {
    color: var(--primary-blue);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-contact {
    padding: 6rem 0;
    background: var(--background-light);
}

.cta-box {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

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

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.instructors {
    padding: 6rem 0;
    background: white;
}

.instructor-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-title span {
    background: white;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.instructors-grid:has(.instructor-card:only-child) {
    grid-template-columns: 1fr;
    justify-items: center;
}

.instructors-grid:has(.instructor-card:only-child) .instructor-card {
    max-width: 500px;
}

.instructor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.instructor-image {
    height: 350px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-info {
    padding: 2rem;
}

.instructor-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.instructor-credentials {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.instructor-credentials p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.instructor-credentials p:last-child {
    margin-bottom: 0;
}

.instructor-credentials i {
    color: var(--primary-blue);
}

.instructor-bio {
    color: var(--text-gray);
    line-height: 1.7;
}

.team-values {
    padding: 6rem 0;
    background: var(--background-light);
}

.values-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.schedule {
    padding: 6rem 0;
    background: white;
}

.schedule-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.schedule-intro p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
}

.schedule-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.schedule-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background: var(--background-light);
}

.schedule-table .time {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.schedule-table .empty {
    color: var(--text-light);
}

.schedule-table .class {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
}

.schedule-table .krav-maga {
    background: rgba(0, 123, 255, 0.25);
    color: #0056b3;
    border-left: 4px solid #007bff;
    font-weight: 600;
}

.schedule-table .judo {
    background: rgba(255, 152, 0, 0.25);
    color: #E65100;
    border-left: 4px solid #FF9800;
    font-weight: 600;
}

.schedule-table .jiu-jitsu {
    background: rgba(244, 67, 54, 0.25);
    color: #C62828;
    border-left: 4px solid #f44336;
    font-weight: 600;
}

.schedule-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.schedule-legend h3 {
    font-size: 1.125rem;
}

.legend-items {
    display: flex;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.legend-color.krav-maga {
    background: rgba(0, 123, 255, 0.3);
    border: 3px solid #007bff;
}

.legend-color.judo {
    background: rgba(255, 152, 0, 0.3);
    border: 3px solid #FF9800;
}

.legend-color.jiu-jitsu {
    background: rgba(244, 67, 54, 0.3);
    border: 3px solid #f44336;
}

.schedule-notes {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

.schedule-notes h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-notes i {
    color: var(--primary-blue);
}

.schedule-notes ul {
    list-style: none;
}

.schedule-notes ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
}

.schedule-notes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.schedule-cta {
    padding: 6rem 0;
    background: var(--background-light);
}

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

.contact {
    padding: 6rem 0;
    background: white;
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-section > p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.method-content p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.method-content a {
    color: var(--primary-blue);
}

.method-content a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-whatsapp-small {
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.btn-whatsapp-small:hover {
    background: #1EBE57;
    transform: translateY(-2px);
}

.social-section {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
}

.social-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.social-section p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

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

.social-link {
    flex: 1;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.social-link i {
    font-size: 1.5rem;
}

.contact-map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: var(--background-light);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-gray);
}

.map-info h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-info i {
    color: var(--primary-blue);
}

.map-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.schedule-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .welcome-grid,
    .about-grid,
    .intro-grid,
    .benefits-layout {
        grid-template-columns: 1fr;
    }
    
    .modalities-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--background-light);
        margin-top: 0.5rem;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .welcome-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .modalities-grid,
    .features-grid,
    .benefits-grid,
    .values-grid,
    .instructors-grid,
    .preparation-grid,
    .faq-grid,
    .values-grid-small,
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .schedule-table {
        font-size: 0.875rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .schedule-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .social-links-large {
        flex-direction: column;
    }
}

.photo-gallery {
    padding: 6rem 0;
    background: var(--background-light);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

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

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .modality-hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}