@font-face {
    font-family: 'Conthrax';
    src: url('fonts/conthrax-sb.ttf') format('truetype');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', monospace;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* NAVBAR */
#navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.8rem;
    color: #000000 !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-brand img {
    height: 50px;
    transition: height 0.3s ease;
}

.scrolled .navbar-brand img {
    height: 40px;
}

.nav-link {
    color: #000000 !important;
    font-weight: 500;
    margin-left: 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #666666 !important;
    border-bottom: 2px solid #000000;
}

/* Menú hamburguesa personalizado */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 28px;
    height: 2px;
    background-color: #000;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 28px;
    height: 2px;
    background-color: #000;
    display: block;
    position: absolute;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Animación del menú hamburguesa */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}


@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 10px 10px;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 5px;
    }

    .navbar-brand img, .scrolled .navbar-brand img {
        height: 35px;
    }
}

/* HERO SECTION - UMBRAL */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    animation: fadeInUp 1.2s ease;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    animation: fadeInUp 1.4s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECCIÓN 2: LA CONEXIÓN */
.conexion-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    padding: 6rem 0;
}

.section-subtitle-intro {
    font-size: 1.4rem;
    color: #333333;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #333333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-highlight {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 700;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-left: 4px solid #000000;
}

/* COACH MESSAGE BOX */
.coach-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.coach-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border-radius: 50%;
    color: #ffffff;
}

.coach-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
    margin: 0;
}

.coach-text strong {
    color: #000000;
    font-weight: 700;
}

/* DATA VISUALIZATION */
.data-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.chaos-to-clarity {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    gap: 1.5rem;
}

/* CHAOS CONTAINER */
.chaos-container,
.clarity-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.chaos-label,
.clarity-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chaos {
    position: relative;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    animation: chaosFloat 3s ease-in-out infinite;
}

@keyframes chaosFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.data-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #000000;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.data-graph {
    position: absolute;
    display: flex;
    align-items: flex-end;
    animation: graphBounce 2.5s ease-in-out infinite;
}

.graph-bar {
    width: 100%;
    background: linear-gradient(to top, #000000, #666666);
    border-radius: 3px 3px 0 0;
}

@keyframes graphBounce {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.1);
    }
}

.data-number {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333333;
    animation: numberFloat 2s ease-in-out infinite;
}

@keyframes numberFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.data-line {
    position: absolute;
    height: 2px;
    background-color: #000000;
    animation: lineStretch 2s ease-in-out infinite;
}

@keyframes lineStretch {

    0%,
    100% {
        width: 60px;
    }

    50% {
        width: 70px;
    }
}

.data-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #000000;
    border-radius: 50%;
    animation: circleRotate 3s linear infinite;
}

@keyframes circleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ARROW PATH */
.arrow-path {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arrow-svg {
    width: 80px;
    height: 40px;
}

.arrow-line {
    animation: arrowFlow 2s ease-in-out infinite;
}

@keyframes arrowFlow {

    0%,
    100% {
        stroke-dasharray: 0, 100;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 100, 0;
        stroke-dashoffset: -100;
    }
}

/* CLARITY CONTAINER */
.clarity {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, rgba(0, 200, 83, 0.02) 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 200, 83, 0.3);
    animation: clarityGlow 2s ease-in-out infinite;
}

@keyframes clarityGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 200, 83, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
    }
}

.path-to-health {
    position: absolute;
    top: 20px;
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.health-step {
    width: 8px;
    height: 8px;
    background-color: #00C853;
    border-radius: 50%;
    animation: stepProgress 1.5s ease-in-out infinite;
}

.health-step:nth-child(1) {
    animation-delay: 0s;
}

.health-step:nth-child(2) {
    animation-delay: 0.3s;
}

.health-step:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes stepProgress {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.human-icon {
    width: 90px;
    height: 90px;
    color: #000000;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.health-indicator {
    filter: drop-shadow(0 0 3px rgba(0, 200, 83, 0.6));
}

/* SECCIÓN 3: ECOSISTEMA */
.ecosystem-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 20px;
}

/* Encabezado de la sección */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid 2 columnas */
.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* COLUMNA IZQUIERDA - PRODUCTOS */
.ecosystem-products {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.row {
  display: flex;
  align-items: stretch;
}

.col-lg-6 {
  display: flex;
  flex-direction: column;
}

.team-container {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.team-container .team-box img, .img-band img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    border-radius: 24px;
}

.team-container .team-box:hover img, .img-band img:hover {
    transform: scale(1.05);
}

.product-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-section-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.product-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 32px;
}

.products-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0 , 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* COLUMNA DERECHA - EQUIPO */
.ecosystem-team {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-section-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.team-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .team-member-image {
    transform: scale(1.08);
}

.team-member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 78, 122, 0.9), rgba(10, 158, 220, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 16px;
    text-align: center;
}

.team-member:hover .team-member-overlay {
    opacity: 1;
}

.team-member-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}


/* SECCIÓN 4: UNIVERSO H3VEL - Historias */
.universo-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.universo-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 60px;
    color: #000;
    letter-spacing: -0.5px;
}

.swiperStories {
    padding: 20px 60px 60px;
    overflow: visible;
    touch-action: pan-y pinch-zoom;
    overflow: hidden;
}

.swiperStories .swiper-wrapper {
    transition-timing-function: ease-out;
}

.swiperStories .swiper-slide {
    width: 65%;
    max-width: 700px;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.swiperStories .swiper-slide-active {
    opacity: 1;
}

.story-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.story-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.story-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.story-card:hover .story-image img {
    transform: scale(1.08);
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    color: #ffffff;
}

.story-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.story-link:hover {
    color: #ffffff;
    gap: 12px;
    border-bottom-color: #ffffff;
}

.story-link svg {
    transition: transform 0.3s ease;
}

.story-link:hover svg {
    transform: translateX(4px);
}

/* Navegación Swiper personalizada */
.swiperStories .swiper-button-next,
.swiperStories .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiperStories .swiper-button-next:after,
.swiperStories .swiper-button-prev:after {
    font-size: 20px;
    color: #000;
    font-weight: 900;
}

.swiperStories .swiper-button-next:hover,
.swiperStories .swiper-button-prev:hover {
    background-color: #000;
    transform: scale(1.1);
}

.swiperStories .swiper-button-next:hover:after,
.swiperStories .swiper-button-prev:hover:after {
    color: #ffffff;
}

/* Paginación Swiper */
.swiperStories .swiper-pagination {
    bottom: 20px;
}

.swiperStories .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #000;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiperStories .swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

/* SECCIÓN 5: INVITACIÓN FINAL */
.final-section {
    background-color: #f9f9f9;
    padding: 6rem 0;
}

.cta-button-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 1.5rem;
}

.cta-button-final:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #000000;
}

.bienestar{
    border-radius: 35px !important;
}

/* SECCIÓN 5: PLANES */
.planes-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.planes-header {
    text-align: center;
    margin-bottom: 60px;
}

.planes-header h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -0.5px;
}

.planes-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #000;
}

.plan-featured {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    transform: scale(1.05);
    border: 2px solid #000;
}

.plan-featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-featured .plan-name,
.plan-featured .plan-description,
.plan-featured .plan-features h4,
.plan-featured .plan-features li,
.plan-featured .plan-price {
    color: #ffffff;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00C853;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #000;
}

.plan-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    min-height: 60px;
}

.plan-image {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.plan-pricing {
    text-align: center;
    margin-bottom: 30px;
}

.plan-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.plan-price-old {
    display: inline-block;
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.plan-features li i {
    color: #00C853;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-featured .plan-features li i {
    color: #00C853;
}

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-plan-primary,
.btn-plan-secondary {
    display: block;
    text-align: center;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-plan-primary {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-plan-primary:hover {
    background-color: #fff;
    color: #000;
}

.plan-featured .btn-plan-primary {
    background-color: #fff;
    color: #000;
}

.plan-featured .btn-plan-primary:hover {
    background-color: #00C853;
    color: #fff;
    border-color: #00C853;
}

.btn-plan-secondary {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-plan-secondary:hover {
    background-color: #000;
    color: #fff;
}

.plan-featured .btn-plan-secondary {
    color: #fff;
    border-color: #fff;
}

.plan-featured .btn-plan-secondary:hover {
    background-color: #fff;
    color: #000;
}

.plan-trial {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 0;
}

.plan-featured .plan-trial {
    color: #ccc;
}

.planes-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #999;
}

/* SECCIÓN 6: ACOMPAÑAMIENTO */
.acompanamiento-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.acompanamiento-content {
    padding-right: 40px;
}

.acompanamiento-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: -0.5px;
}

.acompanamiento-description {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

.btn-acompanamiento {
    display: inline-block;
    padding: 16px 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-acompanamiento:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.acompanamiento-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
}

.product-main {
    width: 300px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-accessory {
    width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.acompanamiento-image:hover .product-main {
    transform: scale(1.05) rotate(-2deg);
}

.acompanamiento-image:hover .product-accessory {
    transform: scale(1.05) rotate(2deg);
}

.btn-unete {
    display: inline-block;
    padding: 18px 50px;
    background-color: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 3px solid #000;
    transition: all 0.3s ease;
}

.btn-unete:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    border-left: 4px solid #00C853;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
}

.footer-disclaimer strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-links {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-copyright {
    padding: 30px 0 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: #888888;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    height: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar-collapse{
        background-color: rgba(255, 255, 255, 0.98);
        filter: blur(10px);
    }
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Ajustes para la visualización de datos en móvil */
    .chaos-to-clarity {
        flex-direction: column;
        gap: 2rem;
    }

    .chaos,
    .clarity {
        width: 120px;
        height: 120px;
    }

    .arrow-path {
        transform: rotate(90deg);
    }

    .arrow-svg {
        width: 40px;
        height: 80px;
    }

    .data-visualization {
        min-height: 500px;
        padding: 2rem 1rem;
    }

    .coach-message {
        flex-direction: column;
        gap: 1rem;
    }

    .coach-icon {
        align-self: center;
    }

    .story-content {
        padding: 1rem;
    }

    .story-content h3 {
        font-size: 1.3rem;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .product-section-title,
    .team-section-title {
        font-size: 20px;
    }

    .products-gallery,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ecosystem-section {
        padding: 40px 16px;
    }

    /* Swiper Historias Responsive */
    .universo-section {
        padding: 60px 0;
    }

    .universo-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .swiperStories {
        padding: 20px 20px 50px;
        overflow: hidden;
    }

    .story-image {
        height: 400px;
    }

    .story-title {
        font-size: 24px;
    }

    .story-content {
        padding: 30px;
    }

    .swiperStories .swiper-button-next,
    .swiperStories .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiperStories .swiper-button-next:after,
    .swiperStories .swiper-button-prev:after {
        font-size: 16px;
    }
}

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

    .section-title {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .ecosystem-section {
        padding: 30px 12px;
    }

    .ecosystem-grid {
        gap: 40px;
    }

    .products-gallery,
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Swiper Historias Mobile */
    .universo-title {
        font-size: 22px;
    }

    .story-image {
        height: 350px;
    }

    .story-title {
        font-size: 20px;
    }

    .story-content {
        padding: 24px;
    }

    .story-link {
        font-size: 14px;
    }

    .swiperStories .swiper-slide {
        width: 90%;
    }

    /* Planes responsive */
    .planes-header h2 {
        font-size: 32px;
    }

    .planes-header p {
        font-size: 16px;
    }

    .plan-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .plan-featured {
        transform: scale(1);
    }

    .plan-featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .plan-name {
        font-size: 28px;
    }

    .plan-description {
        font-size: 14px;
        min-height: auto;
    }

    .plan-image {
        height: 200px;
    }

    .plan-features h4 {
        font-size: 14px;
    }

    .plan-features li {
        font-size: 13px;
    }

    /* Acompañamiento responsive */
    .acompanamiento-section {
        padding: 60px 0;
    }

    .acompanamiento-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .acompanamiento-title {
        font-size: 28px;
    }

    .acompanamiento-description {
        font-size: 15px;
    }

    .acompanamiento-image {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .product-main,
    .product-accessory {
        width: 200px;
    }

    .btn-acompanamiento,
    .btn-unete {
        width: 100%;
        max-width: 300px;
    }

    /* Footer responsive */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-disclaimer {
        padding: 20px;
        margin-bottom: 30px;
        font-size: 13px;
    }

    .footer-links {
        padding: 20px 0;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-list li a {
        font-size: 13px;
    }

    .footer-copyright {
        padding: 20px 0 0;
    }
}
