/* Reset y Variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B7355; /* Marrón tierra principal */
    --primary-dark: #6B5B47; /* Marrón más oscuro */
    --secondary-color: #A0956B; /* Verde oliva tierra */
    --accent-color: #C4A47C; /* Beige cálido */
    --text-primary: #2D2D2D; /* Negro suave para texto */
    --text-secondary: #5A5A5A; /* Gris medio */
    --text-light: #8A8A8A; /* Gris claro */
    --bg-light: #F8F6F3; /* Beige muy claro */
    --bg-white: #FFFFFF; /* Blanco puro */
    --border-color: #E8E4DF; /* Beige para bordes */
    --shadow: 0 4px 6px -1px rgba(45, 45, 45, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(45, 45, 45, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
    --transition: all 0.2s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimizaciones globales para imágenes */
img {
    max-width: 100%;
    height: auto;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Layout básico */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.nav-logo:hover,
.nav-logo.active {
    transform: translateY(-2px);
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Toggle móvil */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    flex: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-main-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.2);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

/* Estadísticas del hero */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    animation: statsSlideIn 0.6s ease-out 0.1s both;
}

.stat-item {
    text-align: center;
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: statItemFadeIn 0.5s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.5s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    transform: scale(0.8);
    animation: numberPop 0.5s ease-out forwards;
    animation-delay: inherit;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animaciones de botones */
.animate-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: buttonSlideUp 0.6s ease-out 0.7s both;
}

/* Animaciones de quote */
.animate-quote {
    opacity: 0;
    transform: translateX(-30px);
    animation: quoteSlideIn 0.8s ease-out 0.9s both;
}

/* Animaciones para estadísticas */
@keyframes statsSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes numberPop {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes buttonSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes quoteSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--bg-light);
}

.hero-container,
.hero-quote-section {
    position: relative;
    z-index: 2;
}

/* Quote Section dentro del hero */
.hero-quote-section {
    width: 100%;
    padding: 3rem 2rem 4rem 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-tagline {
    width: 100%;
    text-align: center;
}

/* Animaciones de quote */
.animate-quote {
    opacity: 0;
    transform: translateX(-30px);
    animation: quoteSlideIn 0.8s ease-out 0.9s both;
}

.hero-tagline p {
    margin: 0 auto;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    text-align: center;
    max-width: 700px;
}

.hero-tagline p:before {
    content: '"';
    position: absolute;
    left: -30px;
    top: -15px;
    font-size: 3.5rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.hero-tagline p:after {
    content: '"';
    position: relative;
    font-size: 3.5rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    line-height: 1;
    margin-left: 5px;
    vertical-align: top;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: var(--bg-white);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.hero-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Secciones */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Servicios */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}


.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.service-note {
    margin-top: 2rem;
    padding: 0;
    text-align: center;
}

.service-note p {
    margin: 0 auto;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    text-align: center;
    max-width: 400px;
}

.service-note p:before {
    content: '"';
    font-size: 2rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    margin-right: 3px;
    vertical-align: baseline;
    line-height: 0;
}

.service-note p:after {
    content: '"';
    font-size: 2rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    margin-left: 3px;
    vertical-align: baseline;
    line-height: 0;
    transform: translateY(8px);
    display: inline-block;
}

/* Sección de Planes y Precios */
.pricing {
    background: var(--bg-light);
    padding: 6rem 0;
}

.pricing-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-btn {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-grid-nutrition {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card,
.pricing-card-nutrition {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover,
.pricing-card-nutrition:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card h3,
.pricing-card-nutrition h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.frequency {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    text-align: left;
}

.features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-nutrition {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* ¿Qué es Unity? - Sección con los pilares y background blur */
.why-choose-us {
    background: var(--bg-white);
    padding: 6rem 0;
    position: relative;
    background-attachment: fixed;
}

.why-choose-us .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.73);
    backdrop-filter: blur(2px);
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.unity-tagline {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.unity-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.unity-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.unity-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pillar-equilibrio {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.pillar-fortaleza {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.pillar-habitos {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.pillar-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
}

.pillar-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Sobre nosotros - Sección expandida */
.about {
    background: var(--bg-white);
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
}

.about .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.73);
    backdrop-filter: blur(2px);
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-intro {
    margin-bottom: 5rem;
    text-align: center;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.about-intro-image {
    margin-top: 3rem;
}

/* Team Carousel */
.team-carousel-wrapper {
    margin-top: 3rem;
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 1fr auto;
    gap: 0;
    align-items: center;
}

.team-carousel-wrapper .carousel-container {
    grid-column: 2;
    grid-row: 1;
    box-shadow: none;
    overflow: hidden;
    border-radius: 0;
}

.team-carousel-wrapper .carousel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-carousel-wrapper .carousel-slide {
    min-width: 100%;
    background: transparent;
    padding: 0;
    text-align: left;
}

/* Team carousel arrows - outside content */
.team-arrow {
    grid-row: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(139, 115, 85, 0.4);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 5;
}

.team-arrow:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.team-arrow-prev {
    grid-column: 1;
    justify-self: center;
}

.team-arrow-next {
    grid-column: 3;
    justify-self: center;
}

.team-indicators {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0 0;
}

.team-indicators .indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(139, 115, 85, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.team-indicators .indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 2px 12px rgba(139, 115, 85, 0.4);
}

.team-indicators .indicator:hover {
    background: rgba(139, 115, 85, 0.6);
    border-color: rgba(139, 115, 85, 0.6);
    transform: scale(1.15);
}

/* Team Card - Compact Style */
.team-card {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-card-photo {
    flex-shrink: 0;
}

.team-avatar {
    width: 180px;
    height: 220px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.team-card-info {
    flex: 1;
    min-width: 0;
}

.head-coach-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #6b5a3e);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-left: 0.5rem;
}

.team-card-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.team-role {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.team-bullets li {
    padding: 0.35rem 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(139, 115, 85, 0.08);
}

.team-bullets li:last-child {
    border-bottom: none;
}

.team-certs-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-tag {
    background: rgba(139, 115, 85, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(139, 115, 85, 0.2);
}

.team-avatar-placeholder {
    width: 180px;
    height: 220px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.15), rgba(139, 115, 85, 0.05));
    border: 2px dashed rgba(139, 115, 85, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(139, 115, 85, 0.4);
    font-size: 3rem;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 40%; /* Ajustar para mostrar mejor la parte superior */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.intro-photo,
.collaboration-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 25%; /* Centrar en caras/torso superior */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.fill-photo {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    transform: scale(0.9);
}

.achievement-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 30%; /* Ajustar para mejores caras en carrusel */
    border-radius: var(--border-radius);
    margin-bottom: 0;
}

.services.services-with-bg {
    position: relative;
    background-attachment: fixed;
}

.services-with-bg .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.73);
    backdrop-filter: blur(2px);
}

.services-with-bg .container {
    position: relative;
    z-index: 2;
}

/* Overlay para sección de servicios */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.73);
    backdrop-filter: blur(2px);
}

.services {
    position: relative;
}

.services .container {
    position: relative;
    z-index: 2;
}
.our-space {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    background-attachment: fixed;
}

.our-space .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(0.5px);
    z-index: 1;
}

.our-space .container {
    position: relative;
    z-index: 2;
}

.space-gallery {
    margin-top: 3rem;
}

.space-main-image {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.space-main-image .space-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 60%; /* Mostrar mejor la parte central del espacio */
    transition: var(--transition);
}

.space-main-image:hover .space-photo {
    transform: scale(1.05);
}

.space-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.space-main-image:hover .space-overlay,
.space-item:hover .space-overlay {
    transform: translateY(0);
    opacity: 1;
}

.space-overlay h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: white;
}

.space-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.space-overlay p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.space-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.space-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.space-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.space-item .space-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 40%; /* Centrar en la parte más interesante del espacio */
    transition: var(--transition);
}

.space-item:hover .space-photo {
    transform: scale(1.1);
}

.space-item .space-overlay {
    padding: 1rem;
}

/* Ajustes específicos para fotos individuales */
.photo-face-top {
    object-position: center 15% !important; /* Para fotos donde la cara está en la parte superior */
}

.photo-face-center {
    object-position: center 35% !important; /* Para fotos donde la cara está centrada */
}

.photo-face-bottom {
    object-position: center 65% !important; /* Para fotos donde la cara está en la parte inferior */
}

.photo-action-left {
    object-position: 30% center !important; /* Para fotos donde la acción está a la izquierda */
}

.photo-action-right {
    object-position: 70% center !important; /* Para fotos donde la acción está a la derecha */
}

.photo-wide-view {
    object-position: center 50% !important; /* Para fotos que necesitan vista completa */
}

.photo-upper-third {
    object-position: center 25% !important; /* Para mostrar el tercio superior */
}

.photo-lower-third {
    object-position: center 75% !important; /* Para mostrar el tercio inferior */
}

.no-position {
    object-position: center !important; /* Clase para no aplicar ajustes de posición */
}

/* Carruseles del equipo - Solo para logros */
.team-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    text-align: center;
    background: var(--bg-white);
    padding: 1rem;
}

.carousel-slide h4 {
    margin: 1rem 0 0.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.carousel-slide p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.carousel-slide.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 45, 45, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary-color);
}

/* Carrusel de logros */
.achievements-gallery.achievements-expanded .achievements-carousel .carousel-container {
    max-width: 800px; /* Más grande para desktop */
}

.achievements-carousel .carousel-container {
    max-width: 100%;
}

.achievements-carousel .carousel-slide {
    padding: 0.5rem;
}

.achievements-carousel h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.achievements-carousel .carousel-slide > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Carousel expandido de logros - Coincide con team-collaboration */
.achievements-gallery.achievements-expanded .achievements-carousel .carousel-container {
    max-width: 100%;
}

/* Carousel del espacio */
.space-carousel {
    margin: 3rem 0;
}

.space-carousel .carousel-container {
    max-width: 100%;
    margin: 0 auto;
}

.space-carousel .carousel-slide {
    position: relative;
    text-align: center;
}

.space-carousel .space-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.space-carousel .space-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.space-carousel .space-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.space-carousel .space-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

/* Sección de colaboración */
.team-collaboration {
    margin: 6rem 0;
    padding: 4rem 2rem;
    background: var(--gradient);
    border-radius: var(--border-radius);
    color: white;
}

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.collaboration-text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.collaboration-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.collaboration-highlights {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collab-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.collab-point h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.collab-point p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.collaboration-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collaboration-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Galería de logros */
.achievements-gallery {
    margin: 6rem 0 0;
    text-align: center;
}

.achievements-gallery h3 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item .about-placeholder {
    height: 250px;
    transition: var(--transition);
}

.gallery-item:hover .about-placeholder {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Placeholders mejorados */
.about-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    transition: var(--transition);
}

.about-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-placeholder p {
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding: 0 1rem;
}

/* Responsive para la nueva sección */
@media (max-width: 768px) {
    .team-carousel-wrapper {
        grid-template-columns: 36px 1fr 36px;
    }
    
    .team-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1.25rem;
        min-height: 0;
    }
    
    .team-carousel-wrapper .carousel-slide {
        display: flex;
        align-items: stretch;
    }
    
    .team-card {
        width: 100%;
    }
    
    .team-avatar {
        width: 120px;
        height: 150px;
    }
    
    .team-avatar-placeholder {
        width: 120px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    .team-card-info h3 {
        font-size: 1.35rem;
    }
    
    .team-role {
        font-size: 0.88rem;
        margin-bottom: 0.75rem;
    }
    
    .team-bullets {
        margin-bottom: 1rem;
    }
    
    .team-bullets li {
        text-align: left;
        font-size: 0.82rem;
        line-height: 1.45;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(139, 115, 85, 0.12);
    }
    
    .team-certs-inline {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .cert-tag {
        font-size: 0.68rem;
        padding: 0.25rem 0.6rem;
    }
    
    .head-coach-badge {
        font-size: 0.48rem;
        padding: 0.15rem 0.5rem;
    }
    
    .team-collaboration {
        padding: 2rem 1rem;
    }
    
    .team-collaboration h3 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Reordenar contenido en móviles */
    .collaboration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        order: 2;
    }
    
    .collaboration-text {
        order: 1;
        text-align: center;
    }
    
    .collaboration-image {
        order: 2;
        text-align: center;
    }
    
    .collaboration-highlights {
        order: 3;
        margin-top: 2rem;
    }
    
    /* Ocultar texto descriptivo en móviles */
    .collaboration-text p {
        display: none;
    }
    
    .collaboration-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialty-tags {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro h3,
    .achievements-gallery h3 {
        font-size: 1.8rem;
    }
    
/* Responsive para carruseles */
@media (max-width: 768px) {
    .achievements-carousel .carousel-container {
        max-width: 500px;
    }
    
    .achievements-gallery.achievements-expanded .achievements-carousel .carousel-container {
        max-width: 600px;
    }
    
    .space-carousel .space-photo {
        height: 300px;
    }
    
    .space-carousel .space-overlay {
        padding: 1.5rem 1rem;
    }
    
    .space-carousel .space-overlay h3 {
        font-size: 1.2rem;
    }
    
    .hero-main-image {
        height: 250px;
    }
    
    .intro-photo,
    .collaboration-photo {
        height: 200px;
    }
    
    .space-main-image .space-photo {
        height: 250px;
    }
    
    .space-item .space-photo {
        height: 200px;
    }
    
    .space-grid {
        grid-template-columns: 1fr;
    }
    
    .motorsport-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .motorsport-gallery {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .motorsport-gallery h4 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .motorsport-photo {
        height: 180px;
    }
}
}

/* =============================================
   MÉTODO UNITY SECTIONS
   ============================================= */

/* Hero Eyebrow */
.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Método Unity Section */
.metodo-section {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
}

.metodo-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(2px);
}

.metodo-section .container {
    position: relative;
    z-index: 2;
}

/* Pasos del Método */
.metodo-step {
    position: relative;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 5rem;
}

.metodo-step:last-child {
    margin-bottom: 0;
}

.step-number-badge {
    position: absolute;
    top: 3rem;
    left: -1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.4);
    z-index: 2;
}

.step-content h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.75rem;
    display: inline-block;
}

.step-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-details {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.step-details h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.step-features li:last-child {
    margin-bottom: 0;
}

.step-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.step-summary {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

/* Modalidades Grid */
.modalidades-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.modalidad-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.modalidad-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.modalidad-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.modalidad-icon i {
    font-size: 1.3rem;
    color: white;
}

.modalidad-card h5 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.modalidad-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.modalidad-short {
    display: none;
}

/* Nutrición Highlight dentro del Método */
.nutricion-highlight {
    margin-top: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.08) 0%, rgba(160, 149, 107, 0.08) 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.nutricion-highlight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.nutricion-highlight-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nutricion-highlight-header h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
}

.nutricion-highlight > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.nutricion-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.nutricion-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.nutricion-point i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.nutricion-point span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .nutricion-highlight {
        padding: 1.5rem;
    }

    .nutricion-points {
        grid-template-columns: 1fr;
    }

    .nutricion-highlight-header h4 {
        font-size: 1.05rem;
    }
}

/* CTA del Método */
.metodo-cta {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    border-radius: var(--border-radius);
}

/* Responsive Método Unity */
@media (max-width: 768px) {
    .hero-eyebrow {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .metodo-section {
        padding: 60px 0;
    }

    .metodo-step {
        padding: 2rem 1.5rem;
        padding-top: 4rem;
        margin-bottom: 3rem;
    }

    .step-number-badge {
        top: -1.25rem;
        left: 1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.3rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .modalidades-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .modalidad-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 0.75rem;
    }
    
    .modalidad-full,
    .modalidad-short {
        display: none;
    }

    .modalidad-icon {
        margin: 0;
        flex-shrink: 0;
        width: 42px;
        height: 42px;
    }

    .modalidad-icon i {
        font-size: 1rem;
    }
    
    .modalidad-card h5 {
        font-size: 0.85rem;
        margin: 0;
    }

    .metodo-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
        display: block;
        width: 100%;
    }
}

/* Contacto */
.contact {
    background: linear-gradient(135deg, #f8f7f4 0%, #f0ede5 100%);
    padding: 100px 0;
}

.contact .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.contact .section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact .section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-style: italic;
    opacity: 0.8;
}

/* Especialistas de contacto */
.contact-specialists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.specialist-contact {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.specialist-card-full {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.08);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.specialist-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(139, 115, 85, 0.12);
    border-color: var(--primary-color);
}

.specialist-card {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.specialist-avatar {
    position: relative;
    flex-shrink: 0;
    margin-right: 20px;
}

.avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 3px solid var(--primary-color);
}

.whatsapp-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    border: 2px solid white;
}

.specialist-info {
    flex: 1;
}

.specialist-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.specialist-role {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
}

.specialist-description {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(139, 115, 85, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-action:hover {
    background: var(--primary-color);
    color: white;
}

.contact-action i {
    font-size: 0.75rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.specialist-card-full:hover .contact-action i {
    transform: translateX(3px);
}

/* Tarjetas de Horarios Individuales */
.schedule-card {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.03), rgba(196, 164, 124, 0.03));
    border: 1px solid rgba(139, 115, 85, 0.15);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.06), rgba(196, 164, 124, 0.06));
    border-color: var(--primary-color);
}

.schedule-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.schedule-header i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.schedule-header span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-slot {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.05);
}

.time-slot:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
    border-color: var(--primary-color);
}

.time-slot i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.time-slot.morning i {
    background: linear-gradient(135deg, var(--accent-color), #D4B996);
    color: white;
}

.time-slot.evening i {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.time-slot div {
    display: flex;
    flex-direction: column;
}

.time-range {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.time-days {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.75;
    font-weight: 500;
}

/* Información de contacto en footer mejorada */
.contact-info-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 2px solid rgba(139, 115, 85, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.quick-contact {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05), rgba(196, 164, 124, 0.05));
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

/* Información de contacto en footer */
.contact-info-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 2px solid rgba(139, 115, 85, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    text-align: left;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    text-decoration: none;
}

.info-icon:hover {
    text-decoration: none;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.info-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color);
}

/* Ubicación integrada */
.location-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 20px;
    margin: -20px;
    border-radius: 15px;
}

.location-link:hover {
    background: rgba(139, 115, 85, 0.05);
    transform: translateY(-2px);
}

.location-link .info-icon {
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.location-link:hover .info-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.location-details {
    margin-top: 5px;
}

.plaza-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.location-address,
.location-city {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 3px;
}

.location-action {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(139, 115, 85, 0.08);
    padding: 4px 8px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.location-action i {
    margin-right: 5px;
    font-size: 0.7rem;
}

.location-link:hover .location-action {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: 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 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

/* Estilos especiales para los links de WhatsApp en el footer */
.footer-section p a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: normal;
    transition: var(--transition);
    cursor: pointer;
}

.footer-section p a:hover {
    color: white;
    text-decoration: none;
}

.footer-section p a i {
    color: #d1d5db;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-section p a:hover i {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Títulos de secciones más pequeños en móvil */
    .section-header h2,
    .section h2,
    h2 {
        font-size: 2rem !important;
    }
    
    .services h2,
    .unity h2,
    .about h2,
    .plans h2,
    .space h2,
    .achievements h2,
    .contact h2 {
        font-size: 2rem !important;
    }
    
    .team-collaboration h3 {
        font-size: 1.6rem !important;
    }
    
    .collaboration-text h3 {
        font-size: 1.8rem !important;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Mostrar hero-stats en móvil pero más pequeñas */
    .hero-stats {
        display: flex;
        gap: 0.5rem;
        margin: 0.8rem 0;
        padding: 0.8rem 0;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
        margin-top: 0.1rem;
        line-height: 1.2;
    }
    
    .hero-placeholder {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .unity-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-card {
        min-height: 250px;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .pillar-card h3 {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-specialists {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .specialist-card-full {
        padding: 25px 20px;
    }
    
    .specialist-card {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .specialist-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .avatar-img {
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-badge {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .specialist-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-action {
        justify-self: center;
    }
    
    /* Schedule cards responsive */
    .schedule-card {
        padding: 18px 15px;
    }
    
    .schedule-times {
        gap: 10px;
    }
    
    .time-slot {
        padding: 12px;
    }
    
    .time-slot i {
        width: 32px;
        height: 32px;
        margin-right: 12px;
        font-size: 0.8rem;
    }
    
    .time-range {
        font-size: 0.95rem;
    }
    
    .time-days {
        font-size: 0.75rem;
    }
    
    .contact-info-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .info-item .info-icon,
    .info-item .info-content {
        align-self: center;
    }
    
    .quick-contact {
        padding: 20px 15px;
    }
    
    /* Location responsive */
    .location-link {
        padding: 15px;
        margin: -15px;
    }
    
    .plaza-name {
        font-size: 0.9rem;
    }
    
    .location-address,
    .location-city {
        font-size: 0.8rem;
    }
    
    .location-action {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
}

/* Animaciones y efectos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-item,
.specialist-card {
    animation: fadeInUp 0.6s ease;
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
}

/* Estados de hover mejorados */
.service-card:hover .service-icon {
    transform: scale(1.1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* Estilos para accesibilidad */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}