/* Estilos Home */
body {
    padding-top: 120px;
}

/* Estilos del Carrusel */
.carousel-container {
    width: 100%;
    margin: 50px 0;
    padding: 0 50px;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 80%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-container {
        margin: 40px 0;
        padding: 0 40px;
    }

    .carousel {
        height: 300px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

         @media (max-width: 480px) {
     body {
         padding-top: 100px;
     }

     .carousel-container {
         margin: 30px 0;
         padding: 0 30px;
     }

     .carousel {
         height: 250px;
     }

     .carousel-content {
         max-width: 90%;
     }
 }

/* Estilos de la Sección de Planes */
.plans-section {
    padding: 80px 50px;
    background-color: #f8f9fa;
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.plan-card {
    background: white;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plan-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid #e91e63;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #e91e63;
    margin: 15px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card h4 {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 8px 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.plan-card p {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.plan-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.plan-btn:hover {
    background: #c2185b;
}

/* Estilos de la Sección de Blog */
.blog-section {
    padding: 80px 50px;
    background-color: white;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.blog-btn:hover {
    background: #c2185b;
}

/* Responsive para Plans y Blog */
@media (max-width: 768px) {
    .plans-section, .blog-section {
        padding: 60px 40px;
    }

    .plans-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card {
        padding: 30px 15px;
    }

    .plan-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .plans-section, .blog-section {
        padding: 40px 30px;
    }

    .plans-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .plan-card {
        padding: 25px 15px;
    }

    .plan-card h3 {
        font-size: 14px;
    }

    .blog-content h3 {
        font-size: 16px;
                 }
 }

/* Estilos de la Sección de Servicios (Rostro y Cuerpo) */
.services-section {
    padding: 60px 50px;
    background-color: #f0f0f0;
}

.services-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.service-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-image {
    margin-bottom: 20px;
}

.service-image img {
    width: 520px;
    height: auto;
    max-width: 100%;
}

.service-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Estilos de la Sección de Redes Sociales */
.social-section {
    padding: 60px 50px;
    background-color: white;
    text-align: center;
}

.social-container {
    max-width: 600px;
    margin: 0 auto;
}

.social-container h2 {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-weight: normal;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #c2185b;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive para Servicios y Redes Sociales */
@media (max-width: 768px) {
    .services-section, .social-section {
        padding: 40px 30px;
    }

    .services-container {
        gap: 40px;
    }

    .service-image img {
        width: 200px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-image img {
        width: 160px;
    }

    .social-container h2 {
        font-size: 14px;
                 }
 }

/* Efectos de animación fade-in */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Retrasos escalonados para las tarjetas */
.fade-in-card:nth-child(1) { transition-delay: 0.1s; }
.fade-in-card:nth-child(2) { transition-delay: 0.2s; }
.fade-in-card:nth-child(3) { transition-delay: 0.3s; }
.fade-in-card:nth-child(4) { transition-delay: 0.4s; }