/* css/landing.css */

/* Hereda variables de global.css, pero añade específicos */
body {
    background-color: #000; /* Fondo base negro para elegancia */
    color: var(--color-text-light);
    overflow-x: hidden; /* Evita scroll horizontal */
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent; /* Transparente al inicio */
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95); /* Negro sólido al bajar */
    padding: 15px 50px;
    box-shadow: 0 2px 20px rgba(255, 133, 192, 0.2);
}

.nav-logo img {
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.btn-cta-nav {
    padding: 10px 25px;
    background-color: var(--color-primary);
    color: white !important;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 133, 192, 0.4);
}

.btn-cta-nav:hover {
    background-color: white;
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}

/* --- HERO SECTION (PORTADA) --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../uploads/hero-bg.jpg'); /* Imagen de fondo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    background: rgba(255, 133, 192, 0.2);
    color: var(--color-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--color-primary);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 20px rgba(255, 133, 192, 0.5);
}

.btn-primary:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 133, 192, 0.6);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* --- ANIMACIONES --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links { display: none; } /* Ocultamos menú en móvil por ahora (agregaremos hamburguesa luego) */
    .hero h1 { font-size: 2.5rem; }
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- ESTILOS DE PRECIOS --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(255, 133, 192, 0.15);
}

.price-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    color: var(--color-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-desc {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px; /* Para alinear botones */
}

/* Formulario Contacto */
form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
}