
/* ===== CONTENEDOR PRINCIPAL ===== */
.landing-course-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 0 25px 35px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

/* ===== HEADER ===== */
.landing-course-header {
    background: #6b4b5e;
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0px 0px;
    margin: 0 -25px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.landing-course-header-left {
    flex: 1;
    min-width: 0;
}

.landing-course-header-left h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    margin-bottom: 6px;
    margin-top: 10px;
    color: #ffe9a6;
}

.landing-course-header-left .landing-course-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.6;
}

.landing-course-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.landing-course-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    min-width: 220px;
}

/* ===== ESTILO DE BOTONES ===== */
.landing-course-boton-principal {
    background: #04b32a;
    color: white;
    border: 1px solid #04b32a;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(0.9em + 0.2vw);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.landing-course-boton-principal:hover {
    background: #039824;
    border-color: #039824;
    transform: scale(1.02);
}

.landing-course-boton-principal i {
    margin-right: 10px;
}

.landing-course-boton-principal.youtube {
    background: #ff0000;
    border-color: #ff0000;
}

.landing-course-boton-principal.youtube:hover {
    background: #cc0000;
    border-color: #cc0000;
}

/* ===== SECCIÓN ARCHIVOS ===== */
.landing-course-archivos-section {
    margin-bottom: 30px;
    padding: 18px 20px;
    background: #f8f9fc;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.landing-course-archivos-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.landing-course-archivos-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d2d2d;
}

.landing-course-archivos-header h3 i {
    color: #f5cd79;
    margin-right: 6px;
}

.landing-course-archivos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-course-archivo-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 5px 12px 5px 8px;
    border-radius: 30px;
    border: 1px solid #e9ecef;
    transition: all 0.25s ease;
    max-width: 100%;
    cursor: default;
}

.landing-course-archivo-item:hover {
    background: white;
    border-color: #6b4b5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.landing-course-archivo-item .arch-icon-small {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #6b4b5e;
    background: transparent;
}

.landing-course-archivo-item .arch-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #2d2d2d;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== SECCIÓN VIDEOS ===== */
.landing-course-section-header {
    margin-bottom: 22px;
}

.landing-course-section-header h2 {
    font-size: 2rem;
    color: #2d2d2d;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
}

.landing-course-section-header h2 i {
    color: #e84855;
    font-size: 1.8rem;
}

.landing-course-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding-bottom: 20px;
}

/* ===== CARDS DE VIDEOS ===== */
.landing-course-video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
}

.landing-course-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #6b4b5e;
}

.landing-course-thumbnail {
    position: relative;
    height: 190px;
    background: #1a1a2e;
    overflow: hidden;
}

.landing-course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.landing-course-video-card:hover .landing-course-thumbnail img {
    transform: scale(1.08);
}

.landing-course-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 50px;
    background: rgba(255, 0, 0, 0.85);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 30px rgba(255, 0, 0, 0.35);
    border: none;
}

.landing-course-play-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.landing-course-play-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.landing-course-video-card:hover .landing-course-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
    box-shadow: 0 8px 50px rgba(255, 0, 0, 0.5);
}

.landing-course-tag-nuevo {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e84855;
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 14px;
    border-radius: 14px;
    box-shadow: 0 2px 15px rgba(232, 72, 85, 0.4);
    animation: landing-course-pulse-tag 2s infinite;
}

@keyframes landing-course-pulse-tag {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.landing-course-type-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 4px;
}

.landing-course-type-badge i {
    font-size: 0.55rem;
}

.landing-course-type-popup {
    background: rgba(46, 204, 113, 0.85);
}

.landing-course-type-link {
    background: rgba(52, 152, 219, 0.85);
}

.landing-course-info {
    padding: 18px 22px 22px;
    background: white;
}

.landing-course-info a{
    text-decoration: none;
}

.landing-course-info h3 {
    font-size: 1.05rem;
    color: #2d2d2d;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-course-info p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== MODAL ===== */
.landing-course-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.landing-course-modal-overlay.active {
    display: flex;
}

.landing-course-modal-content {
    background: #000;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.landing-course-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    background: #e84855;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 72, 85, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.landing-course-modal-close:hover {
    transform: scale(1.1);
    background: #c0392b;
}

.landing-course-modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.landing-course-modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== BOTONES FLOTANTES (MÓVIL) ===== */
.landing-course-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 2px solid #f1f5f9;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    transition: transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.landing-course-fixed-buttons.visible {
    display: flex;
}

.landing-course-fixed-buttons.hidden-buttons {
    transform: translateY(100%);
}

.landing-course-btn-whatsapp-fixed {
    background: #04b32a;
    color: white;
    border: 1px solid #04b32a;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(0.8em + 0.2vw);
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.landing-course-btn-whatsapp-fixed:hover {
    background: #039824;
    border-color: #039824;
    transform: scale(1.02);
}

.landing-course-btn-whatsapp-fixed i {
    margin-right: 8px;
}

.landing-course-btn-youtube-fixed {
    background: #ff0000;
    color: white;
    border: 1px solid #ff0000;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(0.8em + 0.2vw);
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.landing-course-btn-youtube-fixed:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: scale(1.02);
}

.landing-course-btn-youtube-fixed i {
    margin-right: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .landing-course-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }

    .landing-course-header-left {
        text-align: center;
    }

    .landing-course-header-left .landing-course-subtitle {
        margin: 0 auto;
    }

    .landing-course-header-right {
        align-items: center;
        width: 100%;
    }

    .landing-course-buttons {
        flex-direction: row;
        min-width: unset;
        width: 100%;
        max-width: 500px;
    }

    .landing-course-boton-principal {
        width: 100%;
        font-size: calc(0.8em + 0.2vw);
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .landing-course-wrapper {
        padding: 0 15px 25px;
        border-radius: 20px;
    }

    .landing-course-header-left h1 {
        font-size: 2rem;
    }

    .landing-course-header-left .landing-course-subtitle {
        font-size: 0.95rem;
    }

    .landing-course-buttons {
        flex-direction: row;
        max-width: 100%;
        gap: 8px;
    }

    .landing-course-boton-principal {
        font-size: 0.8rem;
        padding: 8px 14px;
        flex: 1;
    }

    .landing-course-boton-principal i {
        margin-right: 6px;
    }

    .landing-course-archivos-section {
        padding: 14px 16px;
    }

    .landing-course-archivo-item .arch-name {
        max-width: 80px;
        font-size: 0.7rem;
    }

    .landing-course-section-header h2 {
        font-size: 1.5rem;
    }

    .landing-course-section-header h2 i {
        font-size: 1.3rem;
    }

    .landing-course-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .landing-course-thumbnail {
        height: 140px;
    }

    .landing-course-play-btn {
        width: 50px;
        height: 36px;
    }

    .landing-course-play-triangle {
        border-left: 14px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }

    .landing-course-info {
        padding: 12px 14px 14px;
    }

    .landing-course-info h3 {
        font-size: 0.85rem;
    }

    .landing-course-info p {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
    }

    .landing-course-tag-nuevo {
        font-size: 0.45rem;
        padding: 2px 10px;
        top: 8px;
        left: 8px;
    }

    .landing-course-type-badge {
        font-size: 0.5rem;
        padding: 2px 8px;
        bottom: 8px;
        left: 8px;
    }

    .landing-course-type-badge i {
        font-size: 0.45rem;
    }

    .landing-course-fixed-buttons {
        display: flex;
    }

    .landing-course-modal-content {
        border-radius: 10px;
    }

    .landing-course-modal-close {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        top: -15px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .landing-course-wrapper {
        padding: 0 10px 20px;
        border-radius: 16px;
    }

    .landing-course-header {
        padding: 20px 30px;
    }

    .landing-course-header-left h1 {
        font-size: 1.3rem;
    }

    .landing-course-header-left .landing-course-subtitle {
        font-size: 0.8rem;
    }

    .landing-course-buttons {
        flex-direction: row;
        gap: 6px;
    }

    .landing-course-boton-principal {
        font-size: 0.7rem;
        padding: 7px 10px;
        flex: 1;
    }

    .landing-course-boton-principal i {
        margin-right: 4px;
        font-size: 0.7rem;
    }

    .landing-course-archivos-section {
        padding: 10px 12px;
    }

    .landing-course-archivos-header h3 {
        font-size: 0.8rem;
    }

    .landing-course-archivo-item {
        padding: 4px 8px 4px 6px;
        gap: 5px;
    }

    .landing-course-archivo-item .arch-icon-small {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 0.55rem;
    }

    .landing-course-archivo-item .arch-name {
        max-width: 55px;
        font-size: 0.6rem;
    }

    .landing-course-section-header h2 {
        font-size: 1.1rem;
    }

    .landing-course-section-header h2 i {
        font-size: 0.9rem;
    }

    .landing-course-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .landing-course-thumbnail {
        height: 110px;
    }

    .landing-course-play-btn {
        width: 40px;
        height: 28px;
        border-radius: 8px;
    }

    .landing-course-play-triangle {
        border-left: 12px solid white;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        margin-left: 2px;
    }

    .landing-course-play-btn::after {
        display: none;
    }

    .landing-course-info {
        padding: 8px 10px 10px;
    }

    .landing-course-info h3 {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .landing-course-info p {
        display: none;
    }

    .landing-course-tag-nuevo {
        font-size: 0.4rem;
        padding: 1px 8px;
        top: 5px;
        left: 5px;
        border-radius: 10px;
    }

    .landing-course-type-badge {
        font-size: 0.4rem;
        padding: 1px 6px;
        bottom: 5px;
        left: 5px;
        border-radius: 8px;
        gap: 2px;
    }

    .landing-course-type-badge i {
        font-size: 0.4rem;
    }

    .landing-course-fixed-buttons {
        padding: 8px 10px;
        gap: 6px;
        flex-direction: row;
    }

    .landing-course-btn-whatsapp-fixed,
    .landing-course-btn-youtube-fixed {
        width: 100%;
        padding: 10px 12px;
        font-size: calc(0.7em + 0.2vw);
        min-width: unset;
        flex: 1;
    }

    .landing-course-modal-content {
        border-radius: 8px;
    }

    .landing-course-modal-close {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: -12px;
        right: -12px;
    }
}

@media (min-width: 769px) {
    .landing-course-fixed-buttons {
        display: none !important;
    }
}















/****************   LAMDIMG PAGE   *******************/








/* ===== RESET & BASE ===== */
.landing-page-*,
.landing-page-*::before,
.landing-page-*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.landing-page-body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #0f0f1a;
  color: #ffffff;
  line-height: 1.65;
  font-size: 1.1rem;
font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
.landing-page-body img {
  display: block;
  max-width: 100%;
}
.landing-page-body a {
  color: inherit;
  text-decoration: none;
}
.landing-page-body ul {
  list-style: none;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.landing-page-main-wrap {
  margin: 0 auto;
  background: #0f0f1a;
  padding: 0px 10px 0px 10px;
  font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

/* ===== SECCIÓN SUPERIOR ===== */
.landing-page-curso-top {
  background: #69495b;
  border-radius: 24px;
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 6px 24px rgba(105, 73, 91, 0.3);
    position: sticky;
top: 175px;
z-index: 100;
display: none;
}
.landing-page-curso-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-page-curso-top-left i {
  font-size: 2rem;
  color: #facc15;
}
.landing-page-curso-top-left h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.landing-page-curso-top-left .subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.landing-page-curso-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.landing-page-curso-top-right .old-price {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  text-decoration-color: #f87171;
}
.landing-page-curso-top-right .new-price {
  font-size: 2rem;
  font-weight: 900;
  color: #facc15;
}
.landing-page-curso-top-right .btn-buy {
  background: #facc15;
  color: #1e293b;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
    text-decoration: none;
}
.landing-page-curso-top-right .btn-buy:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(250, 204, 21, 0.5);
}
.landing-page-curso-top-right .btn-wa-top {
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
    text-decoration: none;
}
.landing-page-curso-top-right .btn-wa-top:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
@media (max-width: 768px) {
  .landing-page-curso-top {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 1.5rem;
  }
  .landing-page-curso-top-left {
    flex-direction: column;
    text-align: center;
  }
  .landing-page-curso-top-right {
    justify-content: center;
  }
  .landing-page-curso-top-right .new-price {
    font-size: 1.6rem;
  }
}

/* ===== TIPOGRAFÍA ===== */
.landing-page-h-hero {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  text-align: center;
}
.landing-page-h-hero .line1 {
  display: block;
  color: #fff;
}
.landing-page-h-hero .line2 {
  display: block;
  color: #facc15;
  font-size: 0.85em;
}
.landing-page-h-sec {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  color: #fff;
  margin-bottom: 14px;
}
.landing-page-h-card {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0px;
}
.landing-page-sub {
  font-size: 1.1rem;
  color: #c8c8d8;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}
.landing-page-cyan {
  color: #22d3ee;
}
.landing-page-amber {
  color: #fbbf24;
}
.landing-page-emerald {
  color: #34d399;
}
.landing-page-rose {
  color: #fb7185;
}
.landing-page-violet {
  color: #a78bfa;
}
.landing-page-color-cta {
  color: #facc15;
}

/* ===== SECTIONS ===== */
.landing-page-sec {
  padding: 80px 0;
}
.landing-page-bg-dark {
  background: #0f0f1a;
}
.landing-page-bg-blue {
  background: #0a2a5a;
}
.landing-page-bg-purple {
  background: #564c75;
}
.landing-page-bg-green {
  background: #0a3a2a;
}
.landing-page-bg-orange {
  background: #381b6f;
}
.landing-page-bg-red {
  background: #3a0a1a;
}
.landing-page-bg-teal {
  background: #0a3a3a;
}
.landing-page-bg-slate {
  background: #1a1a2e;
}
.landing-page-bg-gradient-blue {
  background: #0a2a5a;
}
.landing-page-bg-gradient-purple {
  background: #2a1a5a;
}
.landing-page-bg-whatsapp {
  background: #0a3a2a;
}

.landing-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BOTONES ===== */
.landing-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
}
.landing-page-btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
}
.landing-page-btn i {
  font-size: 1.05rem;
}
.landing-page-btn-cta {
  background: #facc15;
  color: #1e293b;
}
.landing-page-btn-cta:hover {
  background: #fde047;
  box-shadow: 0 8px 40px rgba(250, 204, 21, 0.5);
}
.landing-page-btn-cyan {
  background: #22d3ee;
  color: #0f0f1a;
  box-shadow: 0 6px 28px rgba(34, 211, 238, 0.3);
}
.landing-page-btn-cyan:hover {
  box-shadow: 0 8px 40px rgba(34, 211, 238, 0.5);
}
.landing-page-btn-violet {
  background: #a78bfa;
  color: #0f0f1a;
  box-shadow: 0 6px 28px rgba(167, 139, 250, 0.3);
}
.landing-page-btn-violet:hover {
  box-shadow: 0 8px 40px rgba(167, 139, 250, 0.5);
}
.landing-page-btn-emerald {
  background: #34d399;
  color: #0f0f1a;
  box-shadow: 0 6px 28px rgba(52, 211, 153, 0.3);
}
.landing-page-btn-emerald:hover {
  box-shadow: 0 8px 40px rgba(52, 211, 153, 0.5);
}
.landing-page-btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.3);
}
.landing-page-btn-wa:hover {
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}
.landing-page-btn-outline {
  background: transparent;
  color: #facc15;
  border: 2px solid #facc15;
}
.landing-page-btn-outline:hover {
  background: #facc15;
  color: #1e293b;
}
.landing-page-btn-lg {
  padding: 18px 38px;
  font-size: 1.15rem;
      text-decoration: none;
    color: #000;
}
.landing-page-btn-full {
  width: 100%;
}

/* ===== REVEAL ===== */
.landing-page-rev {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.landing-page-rev.in {
  opacity: 1;
  transform: translateY(0);
}
.landing-page-d1 {
  transition-delay: 0.08s;
}
.landing-page-d2 {
  transition-delay: 0.15s;
}
.landing-page-d3 {
  transition-delay: 0.22s;
}
.landing-page-d4 {
  transition-delay: 0.29s;
}
@media (prefers-reduced-motion: reduce) {
  .landing-page-rev,
  .landing-page-rev.in {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== DIVIDERS ===== */
.landing-page-div-wrap {
  display: block;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  margin-bottom: -1px;
}
.landing-page-div-wrap svg {
  display: block;
  width: 100%;
}

/* ===== HERO ===== */
.landing-page-hero {
  background: #0f0f1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
}
.landing-page-hero-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 500px at 50% -10%, rgba(124, 58, 237, 0.15), transparent 70%),
    radial-gradient(ellipse 400px 400px at 80% 90%, rgba(34, 211, 238, 0.08), transparent 60%);
}
.landing-page-hero-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 24px 0;
  text-align: center;
  width: 100%;
}
.landing-page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #000;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
        margin-top: 40px;
}
.landing-page-hero-eyebrow i {
  color: #facc15;
}
.landing-page-hero h1 {
      margin-bottom: 18px;
    margin-top: 0px;
    font-size: calc(1.5em + 1.8vw);
}
.landing-page-hero-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: #c8c8d8;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.75;
}
.landing-page-hero-sub strong {
  color: #fff;
}

.landing-page-hero-video-wrap {
  max-width: 820px;
  margin: 24px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.landing-page-hero-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

.landing-page-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 28px;
}
.landing-page-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  color: #c8c8d8;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.landing-page-pill i {
  color: #facc15;
  font-size: 1rem;
}
.landing-page-pill:hover {
  border-color: #facc15;
  color: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.landing-page-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.landing-page-cta-note {
  font-size: 0.9rem;
  color: #c8c8d8;
  text-align: center;
}
.landing-page-cta-note i {
  color: #facc15;
}

/* ===== GALLERY ===== */
.landing-page-gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .landing-page-gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 540px) {
  .landing-page-gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.landing-page-gal-item {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.03);
}
.landing-page-gal-item:hover {
  transform: scale(1.04);
  border-color: #facc15;
  box-shadow: 0 8px 28px rgba(250, 204, 21, 0.15);
}
.landing-page-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.landing-page-gal-item:hover img {
  transform: scale(1.08);
}
.landing-page-gal-item .zoom-ico {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-size: 1.4rem;
}
.landing-page-gal-item:hover .zoom-ico {
  opacity: 1;
}

/* ===== LIGHTBOX ===== */
.landing-page-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}
.landing-page-lb.active {
  display: flex;
}
.landing-page-lb-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
}
.landing-page-lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.landing-page-lb-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.landing-page-lb-prev,
.landing-page-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.landing-page-lb-prev {
  left: 16px;
}
.landing-page-lb-next {
  right: 16px;
}
.landing-page-lb-prev:hover,
.landing-page-lb-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ===== FEATURES ===== */
.landing-page-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .landing-page-feat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .landing-page-feat-grid {
    grid-template-columns: 1fr;
  }
}
.landing-page-feat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px 20px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing-page-feat-card:hover {
  border-color: #facc15;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.landing-page-feat-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 4px;
}
.landing-page-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-page-feat-card p {
  font-size: 1rem;
  color: #c8c8d8;
  line-height: 1.65;
      margin: 0px;
}

/* ===== CURRICULUM ===== */
.landing-page-curr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .landing-page-curr-grid {
    grid-template-columns: 1fr;
  }
}
.landing-page-curr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.landing-page-curr-item:hover {
  border-color: #facc15;
  background: rgba(250, 204, 21, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.landing-page-curr-item i {
  color: #facc15;
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 24px;
}
.landing-page-curr-item:hover i {
  color: #facc15;
}
.landing-page-curr-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #c8c8d8;
  line-height: 1.3;
}
.landing-page-curr-item:hover .landing-page-curr-name {
  color: #fff;
}
.landing-page-curr-num {
  font-size: 0.9rem;
  font-weight: 900;
  color: #8a8aa6;
  margin-left: auto;
  flex-shrink: 0;
}
.landing-page-curr-item.more {
  border-color: rgba(250, 204, 21, 0.2);
  background: rgba(250, 204, 21, 0.05);
  justify-content: center;
}
.landing-page-curr-item.more i {
  color: #facc15;
  width: auto;
}
.landing-page-curr-item.more .landing-page-curr-name {
  color: #facc15;
  font-weight: 800;
}

/* ===== PROBLEMA ===== */
.landing-page-prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
@media (max-width: 580px) {
  .landing-page-prob-grid {
    grid-template-columns: 1fr;
  }
}
.landing-page-prob-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.landing-page-prob-card:hover {
  border-color: #fb7185;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.landing-page-prob-x {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
    background: rgb(255 100 100);
    color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
}
.landing-page-prob-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}
.landing-page-prob-card p {
  font-size: 0.95rem;
  color: #c8c8d8;
  line-height: 1.6;
}
.landing-page-truth-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 20px;
  padding: 28px 24px;
}
.landing-page-truth-box h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #facc15;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.landing-page-truth-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.landing-page-truth-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  color: #c8c8d8;
}
.landing-page-truth-list li i {
  color: #facc15;
  font-size: 1.05rem;
  width: 18px;
  flex-shrink: 0;
}
.landing-page-truth-list li.cta-li {
  color: #fff;
  font-weight: 700;
}
.landing-page-truth-list li.cta-li i {
  color: #facc15;
}

/* ===== BONOS ===== */
.landing-page-bonos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .landing-page-bonos-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
.landing-page-bono-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.landing-page-bono-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.landing-page-bono-card.cyan-b:hover {
  border-color: #22d3ee;
}
.landing-page-bono-card.amber-b:hover {
  border-color: #8bff9f;
}
.landing-page-bono-card.emerald-b:hover {
  border-color: #daadec;
}
.landing-page-bono-card.rose-b:hover {
  border-color: #fb7185;
}
.landing-page-bono-img-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.landing-page-bono-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.landing-page-bono-card:hover .landing-page-bono-img-wrap img {
  transform: scale(1.05);
}
.landing-page-bono-ribbon {
  position: absolute;
  top: 16px;
  left: 0;
  background: #facc15;
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 8px 24px;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.4);
  z-index: 5;
}
.landing-page-bono-body {
  padding: 28px 26px 30px;
}
.landing-page-bono-num {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.landing-page-bono-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.25;
}
.landing-page-bono-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.landing-page-bono-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.landing-page-bono-old {
  font-size: 1.15rem;
  text-decoration: line-through;
  display: flex;
  align-items: center;
  gap: 4px;
}
.landing-page-bono-free {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #facc15;
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 8px;
}

.landing-page-bonos-total {
  margin-top: 32px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(250, 204, 21, 0.08);
  border: 2px solid rgba(250, 204, 21, 0.2);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.landing-page-bonos-total .bt-icon {
  font-size: 3rem;
  color: #facc15;
}
.landing-page-bonos-total .bt-left {
  text-align: left;
}
.landing-page-bt-lbl {
  font-size: 0.95rem;
  color: #c8c8d8;
  margin-bottom: 4px;
  font-weight: 600;
}
.landing-page-bt-old-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #c8c8d8;
  text-decoration: line-through;
  text-decoration-color: #fb7185;
  text-decoration-thickness: 3px;
}
.landing-page-bt-arrow {
  font-size: 2.2rem;
  color: #facc15;
  margin: 0 8px;
}
.landing-page-bt-pay-now {
  font-size: 2.2rem;
  font-weight: 900;
  color: #facc15;
}
.landing-page-bt-sub {
  font-size: 0.95rem;
  color: #facc15;
  font-weight: 700;
  margin-top: 2px;
}

/* ===== TESTIMONIOS ===== */
.landing-page-testi-scroll-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
.landing-page-testi-scroll-wrap::before,
.landing-page-testi-scroll-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.landing-page-testi-scroll-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #0f0f1a, transparent);
}
.landing-page-testi-scroll-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #0f0f1a, transparent);
}
.landing-page-testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: landing-page-scrollTestis 50s linear infinite;
}
.landing-page-testi-track:hover {
  animation-play-state: paused;
}
@keyframes landing-page-scrollTestis {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.landing-page-testi-card {
  flex-shrink: 0;
  width: 360px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.landing-page-testi-card:hover {
  border-color: #facc15;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.landing-page-testi-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.landing-page-testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}
.landing-page-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-page-testi-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.landing-page-testi-loc {
  font-size: 0.9rem;
  color: #c8c8d8;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.landing-page-testi-loc i {
  font-size: 0.8rem;
  color: #facc15;
}
.landing-page-testi-stars {
  color: #facc15;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: 3px;
}
.landing-page-testi-text {
  font-size: 1.05rem;
  color: #c8c8d8;
  line-height: 1.7;
  font-style: italic;
}

/* ===== ABOUT ===== */
.landing-page-about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .landing-page-about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.landing-page-about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.landing-page-about-logo-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  width: 100%;
}
.landing-page-about-logo-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}
.landing-page-about-tagline {
  font-size: 0.9rem;
  color: #c8c8d8;
  margin-top: 4px;
}
.landing-page-about-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.landing-page-a-counter {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.landing-page-a-counter .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #facc15;
}
.landing-page-a-counter .lbl {
  font-size: 0.85rem;
  color: #c8c8d8;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.landing-page-about-right h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  text-align: left;
}
.landing-page-about-right p {
  font-size: 1.05rem;
  color: #c8c8d8;
  line-height: 1.8;
  margin-bottom: 12px;
}
.landing-page-about-mission {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 6px;
}
.landing-page-about-mission h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #facc15;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.landing-page-about-mission p {
  font-size: 0.95rem;
  color: #c8c8d8;
  line-height: 1.7;
  margin: 0;
}
.landing-page-about-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ===== PRICING ===== */
.landing-page-pricing-card {
  max-width: 740px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(250, 204, 21, 0.2);
  border-radius: 20px;
  padding: 42px 36px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}
.landing-page-pr-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #facc15;
  color: #1e293b;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.landing-page-pr-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 26px;
}
.landing-page-pr-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.landing-page-pr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.landing-page-pr-row:hover {
  border-color: #facc15;
}
.landing-page-pr-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #c8c8d8;
}
.landing-page-pr-name i {
  color: #facc15;
  font-size: 1.05rem;
  width: 18px;
}
.landing-page-pr-old {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c8c8d8;
  text-decoration: line-through;
  text-decoration-color: #fb7185;
}
.landing-page-spots-bar {
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-page-dots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.landing-page-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.landing-page-dot.on {
  background: #facc15;
}
.landing-page-spots-txt {
  font-size: 0.95rem;
  color: #c8c8d8;
}
.landing-page-spots-txt strong {
  color: #fb7185;
}
.landing-page-price-block {
  text-align: center;
  margin-bottom: 24px;
}
.landing-page-price-lbl {
  font-size: 0.9rem;
  font-weight: 900;
  color: #facc15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.landing-page-price-lbl i {
  margin-right: 4px;
}
.landing-page-price-big {
  font-size: clamp(3.5rem, 9vw, 5rem);
  font-weight: 900;
  color: #facc15;
  line-height: 1;
}
.landing-page-price-local {
  font-size: 0.9rem;
  color: #c8c8d8;
  margin-top: 4px;
}
.landing-page-price-urgency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.15);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 12px;
  color: #c8c8d8;
}
.landing-page-price-urgency i {
  color: #facc15;
}
.landing-page-pr-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 12px;
  margin-top: 16px;
}
.landing-page-pr-t-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #c8c8d8;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.landing-page-pr-t-item i {
  color: #facc15;
  font-size: 0.85rem;
}

/* ===== GUARANTEE ===== */
.landing-page-guarantee-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(250, 204, 21, 0.25);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 0 60px rgba(250, 204, 21, 0.06);
  position: relative;
  overflow: hidden;
}
.landing-page-g-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .landing-page-g-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.landing-page-g-shield-box {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: rgba(250, 204, 21, 0.08);
  border: 3px solid rgba(250, 204, 21, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #facc15;
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.08);
}
.landing-page-g-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #facc15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.landing-page-g-title i {
  color: #facc15;
}
.landing-page-g-text {
  font-size: 1.05rem;
  color: #c8c8d8;
  line-height: 1.75;
  margin-bottom: 16px;
}
.landing-page-g-text strong {
  color: #fff;
}
.landing-page-g-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
@media (max-width: 480px) {
  .landing-page-g-items {
    grid-template-columns: 1fr;
  }
}
.landing-page-g-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(250, 204, 21, 0.04);
  border: 1px solid rgba(250, 204, 21, 0.08);
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 0.95rem;
  color: #c8c8d8;
}
.landing-page-g-item i {
  color: #facc15;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.landing-page-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.landing-page-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.landing-page-faq-item.open {
  border-color: #facc15;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.landing-page-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.landing-page-faq-q-l {
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-page-faq-q-l i {
  color: #facc15;
  font-size: 1rem;
  flex-shrink: 0;
}
.landing-page-faq-tog {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.08);
  color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.landing-page-faq-item.open .landing-page-faq-tog {
  transform: rotate(45deg);
  background: #facc15;
  color: #1e293b;
}
.landing-page-faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 1rem;
  color: #c8c8d8;
  line-height: 1.72;
}
.landing-page-faq-item.open .landing-page-faq-a {
  display: block;
}

/* ===== FINAL CTA ===== */
.landing-page-final-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 52px 40px;
  text-align: center;
}
.landing-page-final-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.15);
  color: #facc15;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.landing-page-final-chip i {
  color: #facc15;
}
.landing-page-final-checks {
  max-width: 460px;
  margin: 0 auto 28px;
  display: grid;
  gap: 8px;
  text-align: left;
}
.landing-page-final-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 1rem;
  color: #c8c8d8;
}
.landing-page-final-checks li i {
  color: #facc15;
  font-size: 1rem;
}
.landing-page-final-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.landing-page-final-note {
  font-size: 0.85rem;
  color: #c8c8d8;
}
.landing-page-final-note i {
  color: #facc15;
  margin: 0 2px;
}

.landing-page-final-price-card {
  max-width: 500px;
  margin: 24px auto 28px;
  background: rgba(250, 204, 21, 0.06);
  border: 2px solid rgba(250, 204, 21, 0.15);
  border-radius: 20px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}
.landing-page-fp-item {
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.landing-page-fp-item .fp-icon {
  font-size: 1.6rem;
  color: #facc15;
  margin-bottom: 4px;
}
.landing-page-fp-item .fp-label {
  font-size: 0.85rem;
  color: #c8c8d8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.landing-page-fp-item .fp-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-top: 2px;
}
.landing-page-fp-item .fp-value.amber {
  color: #facc15;
}
.landing-page-fp-item .fp-value.green {
  color: #34d399;
}

/* ===== GRUPO PRIVADO ===== */
.landing-page-grupo-section {
  background: linear-gradient(145deg, #0a3a2a, #0d5a3a);
  border-radius: 20px;
  padding: 60px 50px;
  margin: 40px 0;
  border: 2px solid rgba(37, 211, 102, 0.2);
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.05);
  position: relative;
  overflow: hidden;
}
.landing-page-grupo-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08), transparent 70%);
  pointer-events: none;
}
.landing-page-grupo-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.05), transparent 70%);
  pointer-events: none;
}
.landing-page-grupo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.landing-page-grupo-left h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.landing-page-grupo-left h2 i {
  color: #25D366;
  margin-right: 12px;
}
.landing-page-grupo-left p {
  font-size: 1.1rem;
  color: #c8c8d8;
  line-height: 1.8;
  margin-bottom: 24px;
}
.landing-page-grupo-left .benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing-page-grupo-left .benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #c8c8d8;
}
.landing-page-grupo-left .benefits li i {
  color: #25D366;
  font-size: 1.2rem;
  width: 26px;
}
.landing-page-grupo-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.landing-page-grupo-right .qr-placeholder {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #25D366;
}
.landing-page-grupo-right .btn-grupo {
  background: #25D366;
  color: #fff;
  padding: 18px 44px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.15rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.landing-page-grupo-right .btn-grupo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.landing-page-grupo-right .grupo-stats {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}
.landing-page-grupo-right .grupo-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #c8c8d8;
}
.landing-page-grupo-right .grupo-stats i {
  color: #25D366;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .landing-page-grupo-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .landing-page-grupo-left .benefits {
    align-items: center;
  }
  .landing-page-grupo-right .grupo-stats {
    flex-direction: column;
    gap: 10px;
  }
  .landing-page-grupo-section {
    padding: 30px 20px;
  }
}

/* ===== TOAST ===== */
.landing-page-toast {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 9997;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #facc15;
  border-radius: 14px;
  padding: 12px 14px;
  max-width: 270px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.landing-page-toast.show {
  transform: translateX(0);
}
.landing-page-toast i {
  font-size: 1.2rem;
  color: #facc15;
  flex-shrink: 0;
  margin-top: 2px;
}
.landing-page-toast-body {
  font-size: 0.9rem;
  color: #c8c8d8;
  line-height: 1.5;
}
.landing-page-toast-body strong {
  color: #facc15;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .landing-page-sec {
    padding: 56px 0;
  }
  .landing-page-wrap {
    padding: 0 16px;
  }
  .landing-page-btn {
    font-size: 1rem;
    padding: 13px 20px;
  }
  .landing-page-btn-lg {
    font-size: 1.05rem;
    padding: 15px 24px;
  }
  .landing-page-final-actions {
    flex-direction: column;
  }
  .landing-page-final-card,
  .landing-page-pricing-card,
  .landing-page-guarantee-card {
    padding: 28px 16px;
  }
  .landing-page-g-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .landing-page-g-shield-box {
    margin: 0 auto;
  }
  .landing-page-bonos-grid {
    grid-template-columns: 1fr;
  }
  .landing-page-final-price-card {
    grid-template-columns: 1fr 1fr;
  }
  .landing-page-bt-old-price {
    font-size: 1.6rem;
  }
  .landing-page-bt-pay-now {
    font-size: 1.6rem;
  }
  .landing-page-testi-card {
    width: 300px;
  }
}