
      @font-face {
  font-family: 'Chakra Petch';
  src: url('public/fonts/ChakraPetch-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}




@font-face {
  font-family: 'Chakra Petch';
  src: url('public/fonts/ChakraPetch-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chakra Petch';
  src: url('public/fonts/ChakraPetch-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chakra Petch';
  src: url('public/fonts/ChakraPetch-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;

}

        :root {
            --bs-theme: #3cd2a5;
            --bs-secondary: #798e98;
            --bs-success: #3cd2a5;
            --bs-dark: #1A202D;
            --bs-white: #ffffff;
            --bs-light: #c0cacf;
            --bs-yellow: #ffd700;
            --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
            --bs-body-font-family: "Chakra Petch", sans-serif;
            --bs-body-font-size: 0.875rem;
            --bs-body-font-weight: 400;
        }
        body {
            font-family: var(--bs-body-font-family);
            font-size: var(--bs-body-font-size);
            font-weight: var(--bs-body-font-weight);
            line-height: var(--bs-body-line-height);
            margin: 0;
            padding: 0;
            color: var(--bs-dark);
            overflow-x: hidden;
        }

       body::before,
body::after {
    content: "";
    position: fixed;
    background: repeating-linear-gradient(
        -10deg,
        red,
        red 1px,         /* más gruesa que antes (10px) */
        transparent 40px,
        transparent 40px  /* mismo ciclo de 20px → mismo espaciado */
    );
    width: 100px;
    height: 100px;         /* 3 ciclos de 20px */
    z-index: 1000;
    transform: rotate(-5deg);
}

/* Arriba derecha */
body::before {
    top: 30px;
    right: -30px;
}

/* Abajo izquierda */
body::after {
    bottom: 30px;
    left: -30px;
}

/* En móvil: solo reducimos el ancho */
@media (max-width: 600px) {
    body::before,
    body::after {
        width: 60px;
    }
}
@media (max-width: 768px) {
  .navbar-brand img {
    transform: scale(1);  /* en lugar de 1.5 */
    height: 40px;         /* o el tamaño que mejor encaje */
  }

  .navbar .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

        @media(max-width: 625px){
            body::before {
            top: 100px;
        }
        }

        body::after {
            bottom: 30px;
            left: -30px;
            transform: rotate(-5deg);
        }


        #particles-js, #particles-bg, #particles-price {
            position: absolute;  /* Set absolute positioning */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;  /* Moves particles behind other elements */
        }


        .hero-section {
            position: relative;
            background-color: #1A202D; /* Dark background color */
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
            z-index: 1;
        }

        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: transparent !important;
            padding: 1rem 0;
            z-index: 2;
        }
        .navbar img {
            height: 60px;
        }
        .navbar .btn {
            color: var(--bs-white);
            border-color: var(--bs-white);
        }
        .navbar .btn-primary {
            background-color: rgba(255, 255, 255, 0.2);
            border-color: var(--bs-white);
        }
        .navbar .btn-outline-primary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #1A202D;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  z-index: 2;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
   word-wrap: break-word;         /* permite saltos de línea seguros */
  overflow-wrap: break-word;     /* moderno: asegura ruptura en palabras largas */
  line-height: 1.2;
  text-wrap: balance;            /* para navegadores modernos que lo soporten */
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.7rem;         /* un poco más pequeño solo en móviles */
  }
}

.hero-content p {
  color: #c0cacf;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero-content .btn {
  margin: 10px 10px 0 10px;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
}
        .section-content {
            position: relative;
            padding: 6rem 0;
            background-color: var(--bs-white);
            overflow: hidden;
            z-index: 1;
        }
        .section-content::before,
        .section-content::after {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: var(--bs-yellow);
            z-index: 1000;
            opacity: 0.2;
            border-radius: 50%;
        }
        .section-content::before {
            top: -50px;
            left: -50px;
        }
        .section-content::after {
            bottom: -50px;
            right: -50px;
        }
        .section-content img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .section-content h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .section-content p {
            color: var(--bs-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .footer {
  background-color: var(--bs-dark);
  color: var(--bs-white);
  padding: 2rem 0;
  text-align: center;
}

.footer p,
.footer span {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.footer h5,
.footer ul li h5 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--bs-yellow);
  margin-bottom: 0.5rem;
}

.footer ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.footer ul li {
  margin: 0;
  padding: 0;
}

.footer ul li a {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer ul li a:hover {
  color: #3cd2a5;
  text-decoration: underline;
}

.footer .fab {
  font-size: 1.1rem;
}

        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Dark Theme Styles */
    .dark-theme {
        background-color: #1A202D; /* Dark background */
        color: #ffffff; /* White text */
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
    }
    .dark-theme::before,
        .dark-theme::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            background-color: #39ad8c;
            z-index: 1000;
            transform: rotate(120deg); /* Correct rotation */
            border-radius: 50%;
        }

    .dark-theme::before {
        top: -50px;
        left: -50px;
    }

    .dark-theme::after {
        bottom: -50px;
        right: -50px;
    }

    .dark-theme h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .dark-theme p {
        color: #c0cacf; /* Light gray for text */
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .dark-theme img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Darker shadow for contrast */
    }

    /* Full-width background with contained content */
    .section-content {
        width: 100%;
    }

    .section-content .container {
        max-width: 1200px; /* Adjust as needed */
        margin: 0 auto;
        padding: 0 15px; /* Add padding for smaller screens */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .dark-theme::before,
        .dark-theme::after {
            width: 100px;
            height: 100px;
        }

        .dark-theme::before {
            top: -30px;
            left: -30px;
        }

        .dark-theme::after {
            bottom: -30px;
            right: -30px;
        }

        .dark-theme h2 {
            font-size: 2rem; /* Smaller heading on mobile */
        }

        .dark-theme p {
            font-size: 1rem; /* Smaller text on mobile */
        }
    }


    .pricing-card {
            background: rgba(40, 51, 60, 0.8); /* Transparent background */
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px); /* Blur effect for transparency */
            border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
        }

        .pricing-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(57, 173, 141, 0.5); /* Green shadow on hover */
        }

        /* Pricing Header */
        .pricing-header {
            margin-bottom: 30px;
        }

        .pricing-title {
            font-size: 28px;
            font-weight: 700;
            color: #fff; /* White text */
            margin-bottom: 10px;
        }

        .pricing-subtitle {
            font-size: 16px;
            color: #bbb; /* Light gray text */
        }

        .pricing-price {
            margin-bottom: 30px;
        }

        .price-currency {
            font-size: 24px;
            font-weight: 600;
            color: #fff; /* White text */
            vertical-align: super;
        }

        .price-amount {
            font-size: 48px;
            font-weight: 700;
            color: #fff; /* White text */
        }

        .price-duration {
            font-size: 18px;
            color: #bbb; /* Light gray text */
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .pricing-features li {
            font-size: 16px;
            color: #ddd; /* Light gray text */
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-cta .btn {
            font-size: 18px;
            font-weight: 600;
            padding: 10px 40px;
            border-radius: 50px;
            background: #39ad8d;
            border: none;
            color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(57, 173, 141, 0.5);
        }

        #carouselExample {
            max-width: 800px;
            max-height: 1000px;
            margin: auto;
            border: 2px solid #39ad8d;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        @media(max-width: 570px){
            #carouselExample {
            max-height: 268px;
        }
        .carousel-inner {
            width: 100% !important;
            height: 200px !important;
        }
        }

        @media(max-width: 396px){
            #carouselExample {
            max-height: 200px;
        }
        .carousel-inner {
            width: 100% !important;
            height: 150px !important;
        }
        }

        .carousel-inner {
            width: 100%;
            height: 400px;
        }

        .carousel-inner img {
            border-radius: 20px;
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        .custom-text-color{
            color: #3cd2a5 !important;
        }
        .text-warning{
            color: #3cd2a5 !important;
        }
        .btn-warning {
  background: transparent;
  color: #fff;
  border: 1px solid #2e9f86;
  border-radius: 35px;
  padding: 10px 30px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600; /* ← Aumenta el grosor del texto */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-warning:hover {
  background: #2e9f86;
  color: #fff;
  border-color: #2e9f86;
}
        .btn-custom-cta {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  border: 2px solid #184038;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-custom-cta:hover {
  background-color: #184038;
  color: #fff;
}

        .accordion-body {
        background: transparent !important;
    }
    .accordion-button:not(.collapsed) {
        background: transparent !important;
        color: #39ad8c;
    }

    .faq-btn {
        background: none;
        color: white;
        font-size: 18px;
        font-weight: bold;
        border: none;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        position: relative;
        border-bottom: 1px solid #39ad8c;

    }

    .faq-btn::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #39ad8d;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: opacity 0.3s ease;
    }

    .accordion-button.collapsed::after {
        opacity: 0;
    }

    .accordion-button:not(.collapsed)::after {
        opacity: 1;
    }

    .faq-icon {
        font-size: 24px;
        color: #39ad8d;
        position: relative;
    }

    .faq-icon::before {
        content: "+";
        transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed) .faq-icon::before {
        content: "-";
    }

    .accordion-button:focus {
        box-shadow: none !important;
    }

    .accordion-item {
        background: transparent !important;
    }
    .circle-section:hover{
        background: #3cd2a5 !important;
        color: #fff !important;
        transition: background 0.5s ease-in-out;
    }
    .circle-section:hover i{
        color: #fff !important;
    }

    #videoLoader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
     .custom-btn-success {
  background-color: #3cd2a5;
  color: #000;
  font-size: 1.15rem;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 6px rgba(60, 210, 165, 0.2);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.custom-btn-success:hover {
  background-color: #145e50;
}
        .btn-glow {
  box-shadow: 0 0 8px rgba(60, 210, 165, 0.5);
  font-weight: 700;
  transition: box-shadow 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 12px rgba(60, 210, 165, 0.7);
}
.btn-cta-militar {
  display: inline-block;
  background: linear-gradient(135deg, #c2f750 0%, #a3d940 100%);
  color: #000000;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 14px 36px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 6px rgba(194, 247, 80, 0.2);
  transition: all 0.3s ease-in-out, font-weight 0.2s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none; /* 👈 Esto quita el subrayado */
}


.btn-cta-militar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 0; /* ← ya no tapa el texto */
}

.btn-cta-militar:hover::before {
  left: 100%;
}

.btn-cta-militar:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(194, 247, 80, 0.3);
  font-weight: 900; /* ← negrita en hover */
  color: #000000; /* ← forzamos a mantenerse negro */
}
.btn-cta-entry {
  display: inline-block;
  background: linear-gradient(135deg, #c2f750 0%, #a3d940 100%);
  color: #000000;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 14px 36px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 6px rgba(194, 247, 80, 0.2);
  transition: all 0.3s ease-in-out, font-weight 0.2s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  animation: pulseButton 1.8s ease-in-out infinite; /* cada 2.5s → 4 veces en 10s */
  animation-play-state: running;
}

.btn-cta-entry:hover {
  animation-play-state: paused; /* se detiene al pasar el ratón */
  box-shadow: 0 0 15px rgba(194, 247, 80, 0.3);
  font-weight: 900;
  color: #000000;
}

@keyframes pulseButton {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}


.pricing-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 1rem;
  color: #bbb;
  position: relative;
  opacity: 0.7;
  display: inline-block;
}

.price-old::before,
.price-old::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  background-color: #bbb;
  top: 50%;
  left: -20%;
  transform-origin: center;
  opacity: 0;
}

/* Línea ↘ */
.price-old::before {
  transform: rotate(45deg) scaleX(0);
  animation: crossLine1 4s linear infinite;
}

/* Línea ↖ */
.price-old::after {
  transform: rotate(-45deg) scaleX(0);
  animation: crossLine2 4s linear infinite;
  animation-delay: 2s;
}

@keyframes crossLine1 {
  0%   { transform: rotate(45deg) scaleX(0); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: rotate(45deg) scaleX(1); opacity: 1; }
  100% { transform: rotate(45deg) scaleX(1); opacity: 0; }
}

@keyframes crossLine2 {
  0%   { transform: rotate(-45deg) scaleX(0); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: rotate(-45deg) scaleX(1); opacity: 1; }
  100% { transform: rotate(-45deg) scaleX(1); opacity: 0; }
}



.price-new {
  font-size: 2.7rem;
  font-weight: 800;
  color: #c2f750;
  text-shadow: 0 0 6px rgba(194, 247, 80, 0.3);
}


@media (max-width: 576px) {
  .btn-uniforme {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

}

@media (max-width: 576px) {
  .navbar .btn {
    font-size: 0.85rem;
    padding: 6px 14px;
    min-width: auto;
  }

  .navbar .container {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }

  .navbar-brand img {
    height: 50px !important;
    width: auto;
  }
}
@media (max-width: 576px) {
  .hero-content .btn-uniforme {
    flex: 0 0 45% !important;
    padding: 10px !important;
    font-size: 0.9rem !important;
    min-width: auto !important;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .pricing-card-responsive {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 16px !important;
    font-size: 0.95rem;
  }

  .pricing-card-responsive h3.pricing-title {
    font-size: 1.25rem;
  }

  .pricing-card-responsive .pricing-price {
    font-size: 1.2rem;
  }

  .pricing-card-responsive .pricing-features li {
    font-size: 0.95rem;
  }
}

