body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.site-header {
    background: #111;
    padding: 15px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    font-weight: bold;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
}

.main-nav a:hover {
    color: #f0c040;
}
.about-coach {
    padding: 90px 0;
    background: linear-gradient(135deg, #f2f4f8, #e8ecf1);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 70%;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: white;
    color: #111;
    transform: translateY(-2px);
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }
}
/*seccion video*/
.video-section {
    padding: 100px 0;
    background: #f7f9fc;
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    margin: 40px auto 30px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-content {
    text-align: center;
    
}

.video-text {
    max-width: 700px;
    margin:  60px; 
}


.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f0c040;
    color: #111;
    transform: translateY(-2px);
}

.video-buttons {
    margin-top: 25px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-equal {
    min-width: 220px;     
    text-align: center;
}


.btn-secondary {
    padding: 14px 32px;
    border: 2px solid #111;
    background: transparent;
    color: #111;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #111;
    color: #fff;
}


@media (max-width: 768px) {
    .video-wrapper {
        margin: 30px auto 20px;
    }

    .video-section h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .video-buttons {
        justify-content: center;
    }
}
/*  SECCIÓN CARRUSEL*/

.carousel-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f2f4f8, #e8ecf1);
}


.carousel-section .container {
    display: block;
}


.carousel-title {
    margin: 0 0 60px 0;
    padding: 0;
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    color: #111;
}

/* GRID 2 POR FILA */
.carousel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* TARJETA */
.carousel-card {
    width: 100%;
    text-align: center;
}

/* CONTENEDOR DEL CARRUSEL */
.carousel {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    background-color: #000;
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}


/* TRACK */
.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

/* IMÁGENES */
.carousel-track img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

/* BOTONES A LOS COSTADOS */
.carousel-btn {
    position: absolute
}

.carousel-label {
    display: block;
    margin-top: 18px;
    padding: 14px 20px;
    background: #000;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white; /* dorado */
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.carousel-card {
    position: relative;
    padding: 6px;
    border-radius: 22px;
}

/* Marco difuminado */
.carousel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(240, 192, 64, 0.6),
        rgba(0, 0, 0, 0.6)
    );
    filter: blur(18px);
    z-index: -1;
}

/* ================================
   EFECTO HOVER CARRUSEL
================================ */

.carousel-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.carousel-card:hover {
    transform: scale(1.04);
}

/* Aumentar un poco el glow al hacer hover */
.carousel-card:hover::before {
    filter: blur(22px);
    opacity: 1;
}
