/* ===========================
   ESTILOS GENERALES
=========================== */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0d001a;
    color: white;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    line-height: 1.6;
}

/* ===========================
   HERO CON VIDEO
=========================== */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168,110,255,0.3), rgba(0,0,0,0.8));
}

.title {
    font-size: 3rem;
    z-index: 2;
    animation: fadeIn 2s ease-out;
}

.subtitle {
    font-size: 1.3rem;
    margin-top: 10px;
    z-index: 2;
    animation: fadeIn 3s ease-out;
}

.btn {
    margin-top: 25px;
    padding: 14px 30px;
    background: linear-gradient(45deg, #a86eff, #ffcc66);
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    z-index: 2;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* ===========================
   BENEFICIOS
=========================== */

.beneficios {
    padding: 60px 20px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 60px;
    margin-bottom: 15px;
}

/* ===========================
   PRECIOS
=========================== */

.precios {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(45deg, #2e003e, #4b0082);
}

.planes {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.plan {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    width: 260px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
    text-align: center;
}

.plan:hover {
    transform: scale(1.05);
}

.destacado {
    border: 2px solid #ffcc66;
}

.precio {
    font-size: 2rem;
    margin: 10px 0;
    color: #ffcc66;
}

.plan ul {
    list-style: none;
    padding: 0;
}

.plan li {
    margin: 8px 0;
}

/* ===========================
   TESTIMONIOS
=========================== */

.testimonios {
    padding: 60px 20px;
    text-align: center;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testi {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    font-style: italic;
    backdrop-filter: blur(6px);
}

.testi span {
    display: block;
    margin-top: 10px;
    color: #ffcc66;
}

/* ===========================
   CTA
=========================== */

.cta {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(45deg, #4b0082, #2e003e);
}

/* ===========================
   FORMULARIO
=========================== */

.formulario {
    padding: 60px 20px;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
}

textarea {
    height: 120px;
}

button {
    padding: 14px;
    background: linear-gradient(45deg, #ffcc66, #a86eff);
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

/* ===========================
   WHATSAPP
=========================== */

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 2rem;
    padding: 12px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 10px #25D366;
    z-index: 999;
}

/* ===========================
   FOOTER
=========================== */

footer {
    text-align: center;
    padding: 25px;
    background: #0a0014;
}

/* ===========================
   ANIMACIONES
=========================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
