 /* Style for sections with depth effect */
 .section-container {
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.15), transparent);
    pointer-events: none;
}

.section-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Feature cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,102,204,0.2), 0 5px 8px rgba(0,102,204,0.1);
}

/* Entrance animation */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    /* The animation is applied with JS */
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }
.delay-8 { animation-delay: 1.6s; }

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

/* Colors and backgrounds */
.bg-gr {
    
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Stays behind content */

    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
    background-color: rgba(255, 255, 255, 0.25); /* Extra transparent layer */
    background-size: 100vw 100vh;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Subtle bottom border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 1rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Colors and backgrounds */
.bg-gr-60 {
    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
    background-color: rgba(255, 255, 255, 0.75); /* Extra transparent layer */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Subtle bottom border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding: 1rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bg-rnd-top {
    background-color: rgba(255, 255, 255, 0.05); /* Extra transparent layer */
    border-top: 1px solid rgba(0, 0, 0, 0.08); /* Subtle bottom border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 2rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bg-rnd-box {
    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
    background-color: rgba(255, 255, 255, 0.8); /* Extra transparent layer */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 2rem;
    padding-bottom: 3rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.round-top-section{
    background-color: rgba(255, 255, 255, 0.6); /* Extra transparent layer */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 2rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bottom-shadow-section{
    background-color: rgba(255, 255, 255, 0.6); /* Extra transparent layer */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.text-features{
    color: #fff;
}


.bg-whatsapp-blue { background-color: #0066cc; }
.text-whatsapp-blue { color: #0066cc; }
.border-whatsapp-blue { border-color: #0066cc; }
.bg-whatsapp-light { background-color: #e6f2ff; }

/* Custom shadow for header */
.shadow-custom {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Styles for video modal */
.video-modal {
    display: none; /* Hidden by default, handled by Alpine */
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9); /* Dark semitransparent background */
    z-index: 5000; /* Ensures it's above everything else */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem; /* Spacing around */
}

.video-modal-content {
    position: relative;
    background-color: black; /* Video container background */
    width: 100%;
    max-width: 90vw; /* Max video width */
    max-height: 90vh; /* Max video height */
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.video-modal video {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(90vh - 4rem);
    border-radius: 0.75rem;
}

.video-modal-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 5010;
    padding: 0.25rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.video-modal-close-btn:hover {
    color: #ff5555;
}

/* Feature icons */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
}
body {
    font-family: 'Inter', sans-serif;
}
.toggle-checkbox:checked {
    right: 0;
    border-color: #68D391;
}
.toggle-checkbox:checked + .toggle-label {
    background-color: #68D391;
}
.plan-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.check-icon {
    width: 20px;
    height: 20px;
}
.my-bg {
    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
}
/* Style for sections with depth effect */
.section-container {
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.15), transparent);
    pointer-events: none;
}

.section-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Feature cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,102,204,0.2), 0 5px 8px rgba(0,102,204,0.1);
}

/* Entrance animation */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    /* The animation is applied with JS */
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }
.delay-8 { animation-delay: 1.6s; }

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

/* Colors and backgrounds */
.bg-gr {
    
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Stays behind content */

    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
    background-color: rgba(255, 255, 255, 0.25); /* Extra transparent layer */
    background-size: 100vw 100vh;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Subtle bottom border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 1rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bg-gr-int {
    
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Stays behind content */

    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
    background-color: rgba(255, 255, 255, 0.25); /* Extra transparent layer */
    background-size: 100vw 100vh;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Subtle bottom border */
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);


    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bg-box-1 {
    background-image: linear-gradient(to right top, #91e2f0, #9be6f2, #a5eaf4, #afeef7, #b8f2f9, #c2f4fb, #ccf6fd, #d6f8ff, #e3f9ff, #f0faff, #fafcff, #ffffff);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #09437e;
  }
.bg-box-1-alpha {
    background-image: linear-gradient(to right bottom, #91e2f0, #9be6f2, #a5eaf4, #afeef7, #b8f2f9, #c2f4fb, #ccf6fd, #d6f8ff, #e3f9ff, #f0faff, #fafcff, #ffffff);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: #bde3e8 1px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

  }
      
.bg-box-2 {
    background-image: linear-gradient(to left top, #91e2f0, #9be6f2, #a5eaf4, #afeef7, #b8f2f9, #c2f4fb, #ccf6fd, #d6f8ff, #e3f9ff, #f0faff, #fafcff, #ffffff);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #09437e;
  }
.bg-box-2-alpha {
    /* Degradado con 50 % de opacidad */
    background-image: linear-gradient(to left bottom, #91e2f0, #9be6f2, #a5eaf4, #afeef7, #b8f2f9, #c2f4fb, #ccf6fd, #d6f8ff, #e3f9ff, #f0faff, #fafcff, #ffffff);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: #d4e4e8 1px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .bg-box-3 {
    background-image: linear-gradient(to right top, #91e2f0, #9be6f2, #a5eaf4, #afeef7, #b8f2f9, #c2f4fb, #ccf6fd, #d6f8ff, #e3f9ff, #f0faff, #fafcff, #ffffff);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: #d4e4e8 1px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  
  .bg-box-3-alpha {
    background-image: linear-gradient(to right bottom, #91e2f0, #9be6f2, #a5eaf4, #afeef7, #b8f2f9, #c2f4fb, #ccf6fd, #d6f8ff, #e3f9ff, #f0faff, #fafcff, #ffffff);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: #d4e4e8 1px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .bg-bt {
    display: inline-block;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: white;
    border-radius: 0.75rem; /* rounded-xl */
    text-align: center;
    text-decoration: none;
  
    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
    background-color: rgba(255, 255, 255, 0.25); /* capa transparente */
    background-size: 200% 200%;
    background-position: center;
    background-repeat: no-repeat;
  
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
  
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  
    transition: all 0.3s ease-in-out;
  }
  
  /* Hover: se ilumina y sube levemente */
  .bg-bt:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-position: right bottom;
  }
  
  
/* Colors and backgrounds */
.bg-gr-60 {
    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
    background-color: rgba(255, 255, 255, 0.75); /* Extra transparent layer */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Subtle bottom border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding: 1rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bg-rnd-top {
    background-color: rgba(255, 255, 255, 0.05); /* Extra transparent layer */
    border-top: 1px solid rgba(0, 0, 0, 0.08); /* Subtle bottom border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 2rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bg-gr-header {
    background-color: rgba(254, 252, 252, 0.5); /* Extra transparent layer */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Subtle bottom border */
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 0rem;
    padding-bottom: 2rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bg-rnd-box {
    background-image: linear-gradient(to right top, #0066cc, #0096ee, #00bdd0, #00db83, #a8eb12);
    background-color: rgba(255, 255, 255, 0.8); /* Extra transparent layer */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 2rem;
    padding-bottom: 3rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.round-top-section{
    background-color: rgba(255, 255, 255, 0.6); /* Extra transparent layer */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 2rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bottom-shadow-section{
    background-color: rgba(255, 255, 255, 0.6); /* Extra transparent layer */
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* Soft, floating shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding-top: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.text-features{
    color: #fff;
}


.bg-whatsapp-blue { background-color: #0066cc; }
.text-whatsapp-blue { color: #0066cc; }
.border-whatsapp-blue { border-color: #0066cc; }
.bg-whatsapp-light { background-color: #e6f2ff; }

/* Custom shadow for header */
.shadow-custom {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Styles for video modal */
.video-modal {
    display: none; /* Hidden by default, handled by Alpine */
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9); /* Dark semitransparent background */
    z-index: 5000; /* Ensures it's above everything else */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem; /* Spacing around */
}

.video-modal-content {
    position: relative;
    background-color: black; /* Video container background */
    width: 100%;
    max-width: 90vw; /* Max video width */
    max-height: 90vh; /* Max video height */
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.video-modal video {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(90vh - 4rem);
    border-radius: 0.75rem;
}

.video-modal-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 5010;
    padding: 0.25rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.video-modal-close-btn:hover {
    color: #ff5555;
}

/* Feature icons */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
}
.only-shadow {
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5)); /* sombra visible */
    opacity: 7z; /* ocultamos el contenido original */
    pointer-events: none; /* que no interfiera con interacciones */
  }
