/* --- CONFIGURACIÓN GENERAL --- */
:root {
    --bg-dark: #0A0A0A;
    --bg-card: #141414;
    --text-light: #F5F5F5;
    --text-secondary: #A9A9A9;
    --accent-red: #E50914;
    --border-color: #2a2a2a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
h2, h3 { font-family: 'Teko', sans-serif; font-weight: 600; letter-spacing: 1px; }
section { padding: 6rem 0; text-align: center; }
.highlight { color: var(--accent-red); }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1589903308904-1010c2294adc?auto=format&fit=crop&q=80&w=1740') no-repeat center center/cover;
    background-attachment: fixed;
}
.hero-content { animation: fadeIn 2s ease-in-out; }
.main-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    color: var(--text-light);
    text-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 650px;
    margin: 1.5rem auto 2.5rem;
    font-weight: 300;
}
.cta-button {
    background-color: var(--accent-red);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.4);
}

/* --- SECCIONES DE CONTENIDO --- */
.intro-section { border-bottom: 1px solid var(--border-color); }
.intro-section h2, .pricing-section h2 { font-size: 3.5rem; margin-bottom: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.2;}
.intro-section p { max-width: 800px; margin: 0 auto; font-size: 1.2rem; color: var(--text-secondary); }


/* --- SECCIÓN SERVICIOS (DISEÑO MINIMALISTA GARANTIZADO) --- */
.services-section {
    background-color: var(--bg-dark);
}
.services-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
    background-color: #1a1a1a;
    border-color: var(--accent-red);
    transform: translateY(-10px);
}
.service-card h3 { /* Número del servicio */
    font-size: 3rem;
    color: var(--accent-red);
    line-height: 1;
}
.service-card h2 { /* Título del servicio */
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.service-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}


/* --- SECCIÓN PAQUETES --- */
.pricing-section { background-color: var(--bg-card); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 4rem; justify-content: center; }
.pricing-card {
    background-color: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 10px; padding: 2.5rem; display: flex; flex-direction: column; transition: all 0.3s ease; position: relative;
}
.pricing-card h3 { font-size: 2.5rem; text-transform: uppercase; color: var(--accent-red); }
.price { font-size: 3.5rem; font-family: 'Teko'; line-height: 1; margin: 1rem 0 0.5rem; }
.currency { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.description { color: var(--text-secondary); min-height: 80px; }
.pricing-card ul { list-style: none; text-align: left; margin: 2rem 0; flex-grow: 1; }
.pricing-card li { margin-bottom: 1rem; font-size: 1.1rem; }
.cta-button-card {
    background-color: transparent; border: 2px solid var(--accent-red); color: var(--accent-red); padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; display: block; text-transform: uppercase;
}
.cta-button-card:hover { background-color: var(--accent-red); color: var(--text-light); }

.pricing-card.recommended {
    border: 2px solid var(--accent-red);
    transform: scale(1.05);
}
.recommended-badge {
    position: absolute; top: 1.5rem; right: 1.5rem; background-color: var(--accent-red); color: var(--text-light); padding: 2px 12px; border-radius: 20px; font-family: 'Roboto'; font-size: 0.8rem; font-weight: 700;
}
.pricing-card.recommended .cta-button-card { background-color: var(--accent-red); color: var(--text-light); }

/* --- FINAL CTA & FOOTER --- */
.final-cta {
    padding: 8rem 1rem;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(https://images.unsplash.com/photo-1554224154-260325b82d41?auto=format&fit=crop&q=80&w=1740) no-repeat center center/cover;
}
.final-cta h2 { font-size: 4rem; margin-bottom: 2rem; }
footer { text-align: center; padding: 3rem 1rem; color: var(--text-secondary); }
footer p { margin: 0; }
.tagline { font-size: 0.9rem; opacity: 0.7; }

/* --- ANIMACIONES y RESPONSIVE DESIGN --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 768px) {
    section { padding: 4rem 1rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 3rem auto 0; }
    .pricing-card.recommended { transform: scale(1); }
    h2, .intro-section h2, .pricing-section h2 { font-size: 2.8rem !important; }
}