/* =========================================
   1. VARIABLES Y RESET
   ========================================= */
:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-fear: #ff4d4d;
    --accent-hope: #00d2ff;
    --card-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* =========================================
   2. ESTILOS GENERALES Y UTILIDADES
   ========================================= */
section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

/* Animaciones de Scroll */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

.slide-show {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   3. HEADER / HERO SECTION
   ========================================= */
header {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000;
}

/* Video de Fondo */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-bg.visible {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Contenido del Header */
.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

/* Logotipo en Header */
.brand {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.brand img {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.7));
    transition: filter 0.3s ease;
}

.brand img:hover {
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 1));
}

/* Textos Hero */
h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ddd;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 10;
    opacity: 0.8;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* =========================================
   4. SECCIÓN FEAR (MIEDO) Y DETALLES
   ========================================= */
.fear-section h2 span {
    color: var(--accent-fear);
    display: block;
    font-size: 1.5rem;
    margin-top: 10px;
    letter-spacing: 3px;
}

/* Grid de Tarjetas (Resumen) */
.grid-cards {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    grid-template-columns: 1fr;
    transition: max-height 0.8s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
}

.grid-cards.hidden-mode {
    max-height: 0;
    opacity: 0;
    transform: translateY(-30px);
    margin: 0;
    pointer-events: none;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-left: 3px solid var(--accent-fear);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-warning {
    color: var(--accent-fear);
    font-size: 1.2em;
}

/* Botón Detalle */
.btn-secondary {
    margin-top: 40px;
    padding: 12px 30px;
    font-size: 1rem;
    background-color: transparent;
    color: #888;
    border: 1px solid #555;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--accent-fear);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.3);
}

/* Contenedor de Detalles */
.details-container {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s ease-in-out, opacity 0.5s ease-in-out;
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
    text-align: left;
}

.details-container.expanded {
    max-height: 3000px;
    opacity: 1;
}

.detail-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin-bottom: 20px;
    border-left: 2px solid #333;
    border-radius: 0 10px 10px 0;
}

.detail-block h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-block h5 {
    color: var(--accent-fear);
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-block p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.detail-block ul {
    list-style: none;
    padding-left: 0;
}

.detail-block li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #bbb;
    font-size: 0.9rem;
}

.detail-block li::before {
    content: '•';
    color: var(--accent-fear);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Estilos para la Ficha de Fuentes/Referencias */
.sources-block {
    border-left: 2px solid #555;
    background: rgba(0, 0, 0, 0.3);
}

.sources-title {
    color: #888;
    margin-top: 0;
}

.sources-list {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    list-style: none;
    padding: 0;
}

.sources-list li {
    margin-bottom: 10px;
    padding-left: 0;
    /* Override general */
}

.sources-list li::before {
    content: none;
    /* Quitamos el punto rojo general */
}

.source-link {
    color: #888;
    text-decoration: none;
    border-bottom: 1px dotted #555;
    transition: 0.3s;
}

.source-link:hover {
    color: var(--accent-hope);
    border-bottom-color: var(--accent-hope);
}

/* =========================================
   5. SECCIÓN CLOUD (NUBE)
   ========================================= */
.cloud-section {
    background-color: #0f0f0f;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.cloud-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
}

.cloud-text {
    flex: 1;
    min-width: 300px;
}

/* Frase de Impacto "Tu Nube..." */
.cloud-impact-title {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.cloud-highlight {
    color: var(--accent-fear);
    font-weight: 800;
    text-transform: uppercase;
}

/* Frase Emocional "Para ellos..." */
.cloud-emotional-quote {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    border-left: 2px solid var(--accent-hope);
    padding-left: 15px;
    font-style: italic;
}

.cloud-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #aaa;
}

/* Caja de "La Trampa Legal" */
.legal-trap-box {
    margin-top: 25px;
    padding-left: 15px;
    border-left: 3px solid var(--accent-fear);
}

.legal-trap-title {
    font-size: 1.1rem;
    color: #fff;
    display: block;
}

.legal-trap-text {
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 5px;
}

.cloud-visual {
    font-size: 10rem;
    color: #333;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
}

.cloud-visual::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-fear);
    font-size: 5rem;
    font-weight: bold;
}

/* =========================================
   6. SECCIÓN HISTORIA (ANCESTROS)
   ========================================= */
.history-section {
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.history-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    text-align: center;
    z-index: 2;
}

.history-content h2 span {
    color: #cda434;
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
    letter-spacing: 2px;
}

.history-text {
    font-size: 1.2rem;
    max-width: 800px;
    line-height: 1.6;
}

.history-text-sub {
    font-size: 1.1rem;
    color: #aaa;
}

.history-img-container {
    margin: 40px 0;
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
    box-shadow: 0 0 30px rgba(255, 77, 77, 0.1);
}

.history-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.5) contrast(1.2);
    transition: transform 5s ease;
}

.history-img-container:hover .history-img {
    transform: scale(1.1);
}

.timeline-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #cda434, transparent);
    margin: 20px auto;
}

/* =========================================
   7. SECCIÓN SOLUCIÓN (ESPERANZA)
   ========================================= */
.solution-section {
    background: radial-gradient(circle at center, #001a22 0%, #000 100%);
    text-align: center;
}

.solution-section h2 {
    color: var(--accent-hope);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.solution-subtitle {
    margin-top: 20px;
}

/* Disco 3D Realista */
.mdisc-container-3d {
    width: 220px;
    height: 220px;
    margin: 50px auto;
    perspective: 1000px;
    position: relative;
}

.mdisc-3d {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 10s linear infinite;

    /* CARA FRONTAL */
    background:
        radial-gradient(circle at center, transparent 20%, #000 21%, transparent 22%),
        conic-gradient(from 0deg, #333 0%, #00d2ff 10%, #555 25%, #ff4d4d 40%, #333 50%, #00d2ff 60%, #555 75%, #ff4d4d 90%, #333 100%);

    box-shadow: 0 0 30px rgba(0, 210, 255, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Agujero físico (Frente) */
.mdisc-3d::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(1px);
    width: 15%;
    height: 15%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: #000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

/* CARA TRASERA */
.mdisc-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);

    background:
        radial-gradient(circle at center, #000 0%, #000 14%, rgba(255, 255, 255, 0.2) 14.5%, rgba(255, 255, 255, 0.2) 15.5%, transparent 16%),
        radial-gradient(circle at center, transparent 20%, #000 21%, transparent 22%),
        conic-gradient(from 0deg, #333 0%, #00d2ff 10%, #555 25%, #ff4d4d 40%, #333 50%, #00d2ff 60%, #555 75%, #ff4d4d 90%, #333 100%);

    transform: translateZ(-1px) rotateY(180deg);
}

@keyframes rotate3d {
    0% {
        transform: rotateX(15deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(15deg) rotateY(360deg);
    }
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    text-align: center;
    max-width: 200px;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-hope);
    margin-bottom: 10px;
}

/* =========================================
   8. SECCIÓN PRECIOS Y LOGÍSTICA
   ========================================= */
.pricing-section {
    background-color: #0d0d0d;
    position: relative;
    z-index: 5;
    padding-bottom: 100px;
}

.pricing-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.pricing-subtitle {
    color: var(--accent-hope);
    font-size: 1.2rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.pricing-card {
    background: #151515;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-hope);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.pricing-card.popular {
    border-color: var(--accent-hope);
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.3);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-hope);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.plan-storage {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.plan-storage strong {
    color: #fff;
    font-size: 1.2rem;
}

.plan-price {
    font-size: 2.5rem;
    color: var(--accent-hope);
    font-weight: 900;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.plan-desc {
    color: #888;
    font-size: 0.9rem;
}

/* Grid Logística */
.logistics-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.info-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.card-time {
    border-left: 5px solid #cda434;
}

.card-delivery {
    border-left: 5px solid var(--accent-hope);
}

.logistics-subtext {
    font-size: 0.9rem;
    color: #888;
}

.logistics-warning {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #cda434 !important;
    font-style: italic;
}

.logistics-note {
    color: #888 !important;
    font-size: 0.9rem;
    font-style: italic;
}

/* --- HISTORIA REAL / REALITY CHECK --- */
.reality-check {
    max-width: 800px;
    margin: 80px auto 0 auto;
    padding: 30px;
    border-top: 2px solid var(--accent-fear);
    border-bottom: 1px solid #333;
    text-align: center;
    position: relative;
    background: rgba(255, 77, 77, 0.05);
}

.reality-check h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-fear);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 0 0 15px rgba(255, 77, 77, 0.3);
}

.reality-story {
    text-align: left;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #ddd;
    line-height: 1.7;
}

.reality-conclusion {
    border-top: 1px dashed #555;
    padding-top: 25px;
    margin-top: 10px;
    font-style: italic;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.reality-check .highlight {
    color: var(--accent-hope);
    font-weight: bold;
}

.reality-check strong {
    color: #fff;
    font-weight: 700;
}

.icon-pulse {
    font-size: 2rem;
    display: inline-block;
    animation: pulse-heart 1.5s infinite ease-in-out;
}

@keyframes pulse-heart {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.2);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.2);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================
   9. SECCIÓN CTA
   ========================================= */
.cta-section {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #0a1518 0%, #000 100%);
    height: auto;
    min-height: 60vh;
}

.cta-box {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--accent-hope);
    padding: 50px 30px;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.15);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--accent-hope);
    color: #000;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    line-height: 1;
}

.btn-whatsapp img {
    width: 28px;
    height: 28px;
    filter: brightness(0);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.8);
    background-color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 210, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

.cta-secondary-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

.link-email {
    color: #bbb;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 5px;
    display: inline-block;
    transition: 0.3s;
    border-bottom: 1px dashed #555;
}

.link-email:hover {
    color: var(--accent-hope);
    border-bottom-color: var(--accent-hope);
}

/* =========================================
   10. FOOTER
   ========================================= */
footer {
    padding: 60px 20px 40px 20px;
    text-align: center;
    background: linear-gradient(to top, #000 0%, #0a0a0a 100%);
    border-top: 1px solid #222;
}

.footer-branding {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.4));
    transition: transform 0.3s ease;
    margin-left: 80px;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.9;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background-color: #333;
    margin: 0 auto 30px auto;
}

.footer-info {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}

.footer-info a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-info a:hover {
    color: var(--accent-hope);
}

.privacy-trigger {
    margin-top: 10px;
}

/* Créditos */
.footer-credits {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #222;
    font-size: 0.7rem;
    color: #444;
}

.footer-credits a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--accent-hope);
}

/* =========================================
   11. MODAL (AVISO DE PRIVACIDAD)
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--accent-hope);
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 210, 255, 0.2);
    color: #ccc;
    line-height: 1.6;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}

.modal-content strong {
    color: #fff;
}

.modal-list {
    margin: 15px 0 15px 20px;
}

.modal-link {
    color: var(--accent-hope);
    text-decoration: none;
    font-weight: bold;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--accent-hope);
}

.privacy-link {
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.3s;
}

.privacy-link:hover {
    color: var(--accent-hope);
}

/* =========================================
   12. MEDIA QUERIES GENERALES
   ========================================= */

/* Desktop Grandes */
@media (min-width: 1200px) {
    h1 {
        font-size: 4rem;
    }

    .grid-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets */
@media (min-width: 700px) {
    h1 {
        font-size: 3rem;
    }

    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Móviles y Tablets Pequeñas (< 900px) */
@media (max-width: 900px) {
    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Móviles (< 768px) */
@media (max-width: 768px) {

    /* Hero */
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .brand img {
        height: 30px;
    }

    /* General */
    h2 {
        font-size: 2rem;
    }

    /* Cloud Section */
    .cloud-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .cloud-visual {
        font-size: 8rem;
    }

    .cloud-visual::after {
        font-size: 4rem;
    }

    /* M-Disc */
    .mdisc-container-3d {
        width: 180px;
        height: 180px;
    }

    /* Logística */
    .logistics-grid {
        flex-direction: column;
        padding: 0 20px;
    }

    /* Reality Check */
    .reality-check h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }

    /* CTA */
    .cta-title {
        font-size: 1.8rem;
    }

    .btn-whatsapp {
        font-size: 1rem;
        padding: 15px 25px;
        width: 100%;
    }

    /* Footer */
    .footer-logo img {
        height: auto;
        width: auto;
        max-width: 85%;
        max-height: 60px;
        margin-left: 10px;
    }

    .footer-slogan {
        font-size: 0.8rem;
        letter-spacing: 1px;
        padding: 0 10px;
    }
}