.coach-image-block .coach-action-desc h4 {
    position: relative;
    padding-bottom: 6px;
}


/* Backdrop overlay for mobile menu */
/* Disable backdrop dimming */
.nav-backdrop, .nav-backdrop.show {
    display: none !important;
}

/* Add an extra diagonal blue gradient to About MVV with a longer fade */
.about.about-mvv {
    background: linear-gradient(to bottom right, rgba(62,104,168,0.5) 0%, rgba(62,104,168,0) 50%), #ffffff !important;
}
.coach-image-block .coach-action-desc h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #4A6FB3, #8EC5FF);
    border-radius: 999px;
}
/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Inherit box-sizing everywhere to avoid overflow issues */
*, *::before, *::after { box-sizing: inherit; }

/* Media defaults to avoid overflow on small screens */
img, video { max-width: 100%; height: auto; }
iframe { max-width: 100%; }

/* Apply card look only to coach-action blocks (no cards on image blocks) */
.coach-action-block .coach-action-desc,
.coach-video-desc {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #222;
}

.container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}
/* Allow header dropdown to overflow container */
header .container { overflow: visible; }

/* Header */
header {
    background: rgba(255,255,255,0.82);
    color: #222;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 0;
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 74px;
    padding: 0.8rem 0;
    position: relative;
}
/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    position: relative;
    z-index: 1002; /* above the dropdown panel */
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #1f2a37;
    margin: 4px 0;
    border-radius: 2px;
    transition: background 0.2s ease;
}
header .logo img {
    height: 40px;
    transition: transform 0.2s;
    box-shadow: none;
    background: none;
    border-radius: 10px;
}
header ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
header ul li a {
    color: #222;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
    position: relative;
    display: inline-flex;
    align-items: center; /* vertical centering */
}
header ul li a:hover {
    color: #4A6FB3;
}
@media (max-width: 900px) {
    header nav {
        flex-direction: row;
        gap: 8px;
        min-height: 40px;
    }
    /* Show hamburger on mobile */
    .nav-toggle { display: inline-block; }
    /* Collapse menu by default on mobile */
    header .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: saturate(140%) blur(6px);
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        padding: 10px 16px 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        z-index: 2000; /* above header and logo */
    }
    /* Open state toggled by JS */
    header nav.open .nav-links {
        display: flex !important;
    }
    /* Reset desktop spacing for mobile menu items */
    header nav ul { margin: 0; }
    header nav ul li { margin-left: 0; width: 100%; }
    header nav ul li a { display: block; width: 100%; }
    /* CTA 'Contáctanos' no ocupa todo el ancho en móvil */
    header .nav-links li:last-child { width: auto; }
    header .nav-links a.header-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 140px;
        padding: 0.55rem 1.1rem;
        font-size: 0.95rem;
        color: #fff !important;
    }
    header .logo img {
        height: 36px;
    }
    /* Make links easier to tap */
    header ul li a {
        padding: 10px 0;
    }
}

header nav h1 {
    margin: 0;
    font-size: 1.8rem;
}

header nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    margin: 0;
}

header nav ul li {
    margin-left: 35px;
}

header nav a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #4A6FB3;
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

header nav a:hover {
    color: #4A6FB3;
}

.header-btn {
    background: linear-gradient(90deg, #4A6FB3 0%, #8EC5FF 100%);
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.25);
    color: #fff;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.2px;
    display: inline-block;
}
.header-btn:hover {
    background: linear-gradient(90deg, #4A6FB3 0%, #6FA1DD 100%);
    filter: saturate(95%) brightness(0.98);
    opacity: 0.95;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.22);
}


/* Hero con imagen de fondo */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 10rem 0 8rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.55) 55%, rgba(74,111,179,0.22) 80%, rgba(142,197,255,0.18) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.25);
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.2rem;
    color: #f4f4f4;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.18);
}
.hero .btn {
    background: #4A6FB3;
    color: #fff;
    font-size: 1.15rem;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(74,111,179,0.18);
    transition: background 0.3s, transform 0.3s;
}
.hero .btn:hover {
    background: #355A8A;
    transform: scale(1.03);
}

/* Sections General */
section {
    padding: 6rem 0;
    position: relative;
}

section:nth-of-type(even) {
    background-color: transparent; /* neutral to avoid clashes */
}

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

h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 68px;
    height: 4px;
    background: linear-gradient(90deg, #4A6FB3 0%, #6FA1DD 100%);
    border-radius: 999px;
}


/* Services Section */
.services {
padding: 6rem 0;
text-align: center;
background: linear-gradient(to bottom right, rgba(62,104,168,0.42) 0%, rgba(62,104,168,0) 40%), #ffffff;
}

.coach-image-block {
    background: linear-gradient(90deg, #ffffff, #e7f3ff);
}

.services .service-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
justify-content: center;
gap: 40px;
    justify-content: center;
    gap: 40px;
}

.service-cards .card {
    background: #fff;
    border: none;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4A6FB3 0%, #6FA1DD 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease-out;
}

.service-cards .card:hover::before {
    transform: translateX(0);
}

.service-cards .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-cards .card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.service-cards .card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #4A6FB3;
}

.service-cards .card p {
    font-size: 1.05rem;
    color: #666;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.about .about-content p {
    max-width: 900px;
    text-align: center;
    font-size: 1.2rem;
    color: #555;
}

.about .about-content p.about-intro {
    margin-bottom: 3rem;
}

.about-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
}

.mission-vision,
.values {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.mission-vision h4,
.values h4 {
    font-size: 1.8rem;
    color: #4A6FB3;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.mission-vision p,
.values ul {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.values ul {
    list-style: none;
    padding: 0;
}

.values ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
}

.values ul li::before {
    content: '\2713'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #4A6FB3;
    font-weight: bold;
}

.image-gallery,
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

.image-gallery img,
.video-gallery iframe {
    width: 100%;
    height: 280px; /* Consistent height for media */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-gallery img:hover,
.video-gallery iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Testimonials Section */
.testimonials {
    background-color: #f0f8ff; /* Light blue background */
    padding: 6rem 0;
    text-align: center;
}

.testimonials h3 {
    color: #222;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-cards .card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-cards .card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-cards .card h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: linear-gradient(to right, #4A6FB3, #355A8A); /* Blue gradient */
    color: #fff;
    padding: 6rem 0;
}

.contact h3 {
    color: #fff;
}

.contact h3::after {
    background-color: #fff;
}

.contact p {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact form {
    max-width: 750px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
    padding: 1.4rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.15rem;
    background-color: #fefefe;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact form input[type="text"]:focus,
.contact form input[type="email"]:focus,
.contact form textarea:focus {
    border-color: #4A6FB3;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.contact form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact form button {
    padding: 1.4rem;
    border: none;
    background: #4A6FB3; /* Success blue */
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 15px rgba(74,111,179,0.35);
}

.contact form button:hover {
    background: #355A8A;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74,111,179,0.45);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 2.5rem 0;
    font-size: 0.95rem;
}

footer .social-icons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-icons img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

footer .social-icons img:hover {
    transform: scale(1.15);
}

/* Partners Section Mejorada y Mágica */
.partners {
    background: #f4f4f4;
    padding: 6rem 0 6rem 0;
    text-align: center;
}
.partners h3 {
    color: #222;
    margin-bottom: 3rem;
    font-size: 2.7rem;
    letter-spacing: 1px;
}
.magic-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 2rem;
}
.magic-partners img {
    height: 110px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0 18px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.10));
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), filter 0.3s;
    opacity: 0.92;
}
.magic-partners img:hover {
    transform: scale(1.18) rotate(-2deg);
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.18));
    opacity: 1;
}

@media (max-width: 900px) {
    .magic-partners {
        gap: 30px;
    }
    .magic-partners img {
        height: 70px;
        max-width: 180px;
    }
}

@media (max-width: 600px) {
    .magic-partners {
        gap: 18px;
    }
    .magic-partners img {
        height: 48px;
        max-width: 110px;
    }
}

/* Para logos blancos: fondo oscuro y borde claro */
.partners-gallery img[src*="blanco"],
.partners-gallery img[src*="white"],
.partners-gallery img[src*="BLANCO"],
.partners-gallery img[src*="WHITE"] {
    background: #23272f;
    border: 2px solid #fff;
    padding: 18px 32px;
}

/* Testimonial Images */
.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border: 3px solid #fff;
    background: #eee;
}

/* Coach Action Gallery */
.coach-action {
    background: #fff;
    padding: 6rem 0 6rem 0;
    text-align: center;
}
.coach-action h3 {
    color: #4A6FB3;
    margin-bottom: 2.5rem;
    font-size: 2.3rem;
    letter-spacing: 1px;
}
.coach-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1100px;
}
.coach-gallery img {
    width: 100%;
    max-width: 350px;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    cursor: pointer;
    border: 3px solid #f4f4f4;
}
.coach-gallery img:hover {
    transform: scale(1.06) rotate(1deg);
    box-shadow: 0 16px 48px rgba(0,123,255,0.18);
    border-color: #4A6FB3;
}
@media (max-width: 900px) {
    .coach-gallery {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 18px;
    }
    .coach-gallery img {
        height: 140px;
        max-width: 200px;
    }
}

/* Partners Carousel Section */
.partners-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    background: #f4f4f4;
    padding: 2.5rem 0 2.5rem 0;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.partners-carousel {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: none;
    scroll-behavior: smooth;
}
.partners-carousel img {
    height: 110px;
    width: 180px;
    object-fit: contain;
    margin: 0 18px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.10));
    opacity: 0.95;
    transition: transform 0.3s, opacity 0.3s;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}
.partners-carousel img:hover {
    transform: scale(1.13) rotate(-2deg);
    opacity: 1;
}
@media (max-width: 900px) {
    .partners-carousel img {
        height: 70px;
        width: 110px;
        margin: 0 8px;
    }
    .partners-carousel {
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .partners-carousel img {
        height: 40px;
        width: 60px;
        margin: 0 4px;
    }
    .partners-carousel {
        gap: 12px;
    }
}

/* Partners Carousel Mejorado */
.partners-dark {
    background: #23272f;
    padding: 6rem 0 6rem 0;
    text-align: center;
}
.partners-carousel-gradient {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(90deg, #23272f 0%, #353b48 100%);
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
    padding: 2.5rem 0;
}
.partners-carousel.partners-animate {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: partners-scroll 22s linear infinite;
}
@keyframes partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partners-carousel img {
    height: 170px;
    width: 240px;
    object-fit: contain;
    margin: 0 24px;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.18));
    opacity: 0.97;
    transition: transform 0.3s, opacity 0.3s;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}
.partners-carousel img:hover {
    transform: scale(1.13) rotate(-2deg);
    opacity: 1;
}

/* Sombra extra para logos blancos */
.partners-carousel img[src*="blanco"],
.partners-carousel img[src*="white"],
.partners-carousel img[src*="BLANCO"],
.partners-carousel img[src*="WHITE"] {
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.28));
}

@media (max-width: 900px) {
    .partners-carousel img {
        height: 100px;
        width: 140px;
        margin: 0 10px;
    }
    .partners-carousel.partners-animate {
        gap: 40px;
    }
}
@media (max-width: 600px) {
    .partners-carousel img {
        height: 60px;
        width: 80px;
        margin: 0 4px;
    }
    .partners-carousel.partners-animate {
        gap: 16px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .btn {
        padding: 1rem 2.5rem;
    }

    .service-cards .card {
        padding: 2.5rem;
    }

    .image-gallery,
    .video-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    header nav {
        min-height: 36px;
        padding: 0.3rem 0;
    }
    header .logo img {
        height: 28px;
    }

    header nav .logo {
        margin-bottom: 1rem;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 1rem;
    }

    header nav ul li {
        margin: 0;
    }

    .header-btn {
        margin-top: 1rem;
    }

    .hero {
        padding: 8rem 0;
        min-height: 60vh;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h3 {
        font-size: 2rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .image-gallery,
    .video-gallery {
        grid-template-columns: 1fr;
    }

    .about .about-content p {
        font-size: 1rem;
    }

    .about-details {
        flex-direction: column;
        align-items: center;
    }

    .mission-vision,
    .values {
        width: 100%;
        max-width: 500px;
    }

    .contact form {
        padding: 2rem;
    }
    .partners-gallery {
        gap: 20px;
    }
    .partners-gallery img {
        max-width: 120px;
        max-height: 50px;
        padding: 10px 12px;
    }
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn, .header-btn, .contact form button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .service-cards .card h4 {
        font-size: 1.4rem;
    }

    .testimonial-cards .card {
        padding: 2rem;
    }

    .contact form input,
    .contact form textarea {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Font Awesome Service Icons */
.service-icon {
    font-size: 3rem;
    color: #4A6FB3;
    margin-bottom: 1.2rem;
    display: block;
    transition: color 0.3s, transform 0.3s;
}
.card:hover .service-icon {
    color: #355A8A;
    transform: scale(1.12) rotate(-6deg);
}

/* Redes sociales Font Awesome */
.social-icons a {
    color: #fff;
    background: #4A6FB3;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 8px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.social-icons a:hover {
    background: #355A8A;
    color: #fff;
    transform: scale(1.06);
}

/* About Creative Section */
.about-creative {
    background: #fff;
    padding: 6rem 0 6rem 0;
    text-align: center;
}
.about-creative h3 {
    color: #007bff;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    letter-spacing: 1px;
}
.about-creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1200px;
}
.about-media-block {
    background: #f4f4f4;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 340px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-media-block:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0,123,255,0.13);
}
.about-media-block img,
.about-media-block iframe {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: none;
    display: block;
}
.about-caption {
    padding: 1.2rem 1rem 1.5rem 1rem;
    font-size: 1.15rem;
    color: #333;
    font-style: italic;
    background: none;
    text-align: center;
    font-weight: 500;
}
@media (max-width: 900px) {
    .about-creative-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .about-media-block {
        min-height: 260px;
    }
    .about-media-block img,
    .about-media-block iframe {
        height: 180px;
    }
}

/* Misión, Visión, Valores - Cards Modernas */
.about-mvv {
    background: linear-gradient(120deg, #ffffff 60%, #e8f5ff 100%);
}

.about-mvv h3 {
    color: #007bff;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    letter-spacing: 1px;
}
.mvv-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 32px;
    align-items: stretch;
    justify-items: stretch;
    margin: 0 auto;
    max-width: 1200px;
}
.mvv-card {
    background: #f7f9fc;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.08);
    padding: 2.2rem 1.8rem;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    min-height: 360px;
}
.mvv-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 16px 48px rgba(0,123,255,0.13);
}
.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #4A6FB3 !important; /* uniform professional blue */
    opacity: 0.9;
}
.mvv-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #222;
}
.mvv-card p {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.mvv-values {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mvv-values li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 22px;
    color: #333;
    font-size: 1.05rem;
}
.mvv-values li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4A6FB3;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .mvv-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mvv-card {
        min-height: 340px;
    }
}

/* Coach Action y Video Blocks */
.coach-action-block, .coach-video-block {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 207, 0) 60%), #f9fbff;
    padding: 4rem 0 4rem 0;
}
.coach-action-flex, .coach-video-flex {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.coach-action-img, .coach-video-iframe {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coach-action-img img {
    width: 100%;
    max-width: 520px;
    height: 380px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border: 3px solid #fff;
}
.coach-action-desc, .coach-video-desc {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem;
}
.coach-action-desc h4, .coach-video-desc h4 {
    color: #1f2a37; /* neutral heading for seriousness */
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.coach-action-desc p, .coach-video-desc p {
    color: #4b5563; /* softer body text */
    font-size: 1.08rem;
    font-style: normal;
    margin-bottom: 0;
}
.coach-video-iframe iframe {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border: 3px solid #fff;
}
@media (max-width: 900px) {
    .coach-action-flex, .coach-video-flex {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    /* Always show text first, then image on mobile */
    .coach-action-flex .coach-action-desc,
    .coach-video-flex .coach-video-desc {
        order: 1;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .coach-action-flex .coach-action-img,
    .coach-video-flex .coach-video-iframe {
        order: 2;
        width: 100%;
    }
    .coach-action-img img {
        width: 100%;
        height: auto;
        max-height: 260px;
        object-fit: contain; /* avoid cropping on small screens */
    }
    .coach-video-iframe iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9; /* keep proportion without overflow */
    }
    /* Extra spacing to prevent elements from sticking together */
    .coach-action-desc { margin-bottom: 8px; }
    .coach-action-desc p, .coach-video-desc p { overflow-wrap: anywhere; word-break: break-word; }
}

/* Footer Contacto Moderno */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 0 2rem 0;
    background: #23272f;
    color: #fff;
    border-top: 4px solid #4A6FB3;
    box-shadow: 0 -2px 24px rgba(0,0,0,0.08);
}
.footer-contact-block {
    margin-bottom: 1.5rem;
    text-align: center;
}
.footer-contact-block h4 {
    font-size: 1.4rem;
    color: #007bff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.13rem;
}
.footer-contact-list li {
    margin-bottom: 0.7rem;
    color: #e9ecef;
}
.footer-contact-list a {
    color: #4A6FB3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-contact-list a:hover {
    color: #355A8A;
    text-decoration: underline;
}
.footer-copy {
    color: #b0b8c1;
    font-size: 1rem;
    margin-top: 1.5rem;
}
@media (max-width: 600px) {
    .footer-contact {
        padding: 2rem 0 1rem 0;
    }
    .footer-contact-block h4 {
        font-size: 1.1rem;
    }
    .footer-contact-list {
        font-size: 1rem;
    }
}

/* Footer Columns Moderno */
footer, .creative-footer, .creative-footer-copy {
    background: #111 !important;
    color: #eee;
    border: none;
}
.footer-columns.creative-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    padding: 4rem 6vw 2rem 6vw;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: #111;
}
.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 400px;
    margin-bottom: 2rem;
    padding: 0 2.5vw;
    text-align: left;
}
.footer-brand h4, .footer-menu h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    font-weight: 700;
}
.footer-brand p {
    color: #bbb;
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.footer-menu ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu ul li, .footer-contact ul li {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
}
.footer-menu ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.footer-menu ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}
.footer-contact ul li a {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-contact ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}
.footer-divider {
    width: 1px;
    background: rgba(255,255,255,0.10);
    height: 120px;
    align-self: center;
    margin: 0 1vw;
    display: block;
}
.footer-copy, .creative-footer-copy {
    text-align: center;
    color: #ffffff;
    font-size: 1.08rem;
    padding: 1.2rem 0 0.5rem 0;
    border-top: 1px solid #222;
    margin: 0;
    background: #111;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-shadow: 1px 1px 8px #000, 0 2px 8px #222;
}
.footer-since {
    color: #bbb;
    font-weight: 400;
    margin-left: 8px;
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.92em;
    box-shadow: none;
    letter-spacing: 0.5px;
    font-style: italic;
    opacity: 0.7;
}
.footer-col, .footer-contact, .footer-contact ul, .footer-contact-block, .footer-contact-list {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.footer-contact ul li, .footer-contact ul li a {
    background: none !important;
    color: #eee;
    border: none !important;
}

@media (max-width: 900px) {
    .footer-columns.creative-footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 3rem 4vw 1.5rem 4vw;
    }
    .footer-col {
        margin-bottom: 1.5rem;
        max-width: 100%;
        padding: 0;
        text-align: center;
    }
    .footer-divider {
        display: none;
    }
}

/* Sección de Videos Impactantes */
.videos-impact {
    background: linear-gradient(to bottom left, rgba(62,104,168,0.42) 0%, rgba(62,104,168,0) 40%), #f6f8fc;
    padding: 6rem 0 6rem 0;
    text-align: center;
}
.videos-impact h3 {
    color: #4A6FB3;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    letter-spacing: 1px;
}
.videos-impact-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.video-impact-block {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 420px;
    margin: 0 auto;
}
.video-impact-iframe {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 18px 18px 0 0;
}
.video-impact-iframe iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    min-height: unset;
    border: none;
    display: block;
    border-radius: 18px 18px 0 0;
}
.video-impact-caption {
    padding: 1.5rem 1.2rem 2rem 1.2rem;
    font-size: 1.13rem;
    color: #333;
    text-align: center;
}
@media (max-width: 900px) {
    .video-impact-iframe iframe {
        min-height: 220px;
    }
    .video-impact-block {
        min-height: 260px;
    }
}

.header-modern {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(20, 20, 30, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    transition: background 0.3s, box-shadow 0.3s;
}
.header-modern nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 0.5rem 0;
}
.header-modern .logo img {
    height: 54px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 16px 2px rgba(255,255,255,0.85), 0 2px 8px rgba(0,0,0,0.10);
    background: none;
    border-radius: 10px;
}
.header-modern .logo img:hover {
    transform: scale(1.07) rotate(-2deg);
}
.header-modern ul {
    display: flex;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-modern ul li a {
    color: #222;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
}
.header-modern ul li a:hover {
    color: #28a745;
    border-bottom: 2px solid #28a745;
}
@media (max-width: 900px) {
    .header-modern nav {
        flex-direction: column;
        gap: 10px;
        min-height: 60px;
    }
    .header-modern ul {
        gap: 18px;
    }
    .header-modern .logo img {
        height: 40px;
    }
}

.hero-main-img {
    display: block;
    margin: 0 auto 2.5rem auto;
    max-width: 420px;
    width: 90vw;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #fff;
}
@media (max-width: 600px) {
    .hero-main-img {
        max-width: 95vw;
        margin-bottom: 1.2rem;
    }
}

.coach-action-flex.reverse-flex {
    flex-direction: row-reverse;
}
@media (max-width: 900px) {
    .coach-action-flex,
    .coach-action-flex.reverse-flex {
        flex-direction: column !important;
    }
}
.partners-dark, .partners-dark h3, .partners-dark .partners-carousel img, .partners-dark .partners-carousel, .partners-dark * {
    color: #fff !important;
}
.partners-dark h3 {
    color: #fff !important;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.18);
}

.partners-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 0;
    padding-right: 0;
}
.partners-full.partners-dark, .partners-full.partners-dark h3, .partners-full.partners-dark * {
    color: #fff !important;
}
.partners-full:not(.partners-dark), .partners-full:not(.partners-dark) h3, .partners-full:not(.partners-dark) * {
    color: #222 !important;
}

.about-mvv {
    background: linear-gradient(120deg, #ffffff 60%, #e8f5ff 100%);
}


.coach-image-block h4 {
    background: none;
    color: #1f2a37;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin-bottom: 1rem;
}
