/* ========== RESET Y BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: #1e1e2a;
    background: #fff;
    line-height: 1.5;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TIPOGRAFÍA ========== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.section-title span {
    color: #c83b70;
}
.section-subtitle {
    text-align: center;
    color: #5a5a6e;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ========== BOTONES ========== */
.btn-primary {
    display: inline-block;
    background: #c83b70;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #a02c55;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,59,112,0.3);
}
.btn-outline-sm {
    display: inline-block;
    background: transparent;
    border: 1.5px solid #c83b70;
    color: #c83b70;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.btn-outline-sm:hover {
    background: #c83b70;
    color: white;
}
.btn-light {
    background: white;
    color: #c83b70;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-light:hover {
    background: #fce4ec;
    transform: translateY(-2px);
}
.btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* ========== HEADER ========== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.95);
    flex-wrap: wrap;
}
header .logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #c83b70, #f098b0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
nav {
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links li a {
    text-decoration: none;
    font-weight: 600;
    color: #2d2d3a;
    transition: 0.3s;
}
.nav-links li a:hover,
.nav-links li a.active {
    color: #c83b70;
}
.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: 20px;
}

/* ========== LOGO IMAGEN ========== */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* ========== HERO CON VIDEO Y TEXTO ========== */
.hero-video-text {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video-text #heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.hero-video-text .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}
.hero-video-text .hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}
.hero-video-text .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.808);
}
.hero-video-text .btn-primary {
    background: #c83b70;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.3s;
}
.hero-video-text .btn-primary:hover {
    background: #a02c55;
    transform: scale(1.05);
}

/* ========== HERO SOLO VIDEO (sin texto) ========== */
.hero-video-only {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}
.hero-video-only #heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* ========== SECCIÓN SERVICIOS DESTACADOS ========== */
.services-highlight {
    padding: 80px 0;
    background: #fef8f9;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(200,59,112,0.1);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: #c83b70;
    box-shadow: 0 20px 30px -10px rgba(200,59,112,0.2);
}
.service-icon {
    font-size: 3rem;
    color: #c83b70;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.service-card p {
    color: #5a5a6e;
}

/* ========== SECCIÓN PAQUETES (tarjetas con animación) ========== */
.packages {
    padding: 80px 0;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.package-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}
.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.3s; }
.package-card:nth-child(3) { animation-delay: 0.5s; }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.package-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover .package-img img {
    transform: scale(1.05);
}
.package-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}
.package-card p {
    padding: 0 1.5rem;
    color: #5a5a6e;
    margin-bottom: 1.5rem;
}
.package-card .btn-outline-sm {
    margin: 0 1.5rem 1.5rem;
    display: inline-block;
}
.package-card ul {
    list-style: disc;
    color: #5a5a6e;
    font-size: 0.9rem;
    line-height: 1.4;
    padding-left: 1.2rem;
    margin: 1rem 0;
}
.package-card ul li {
    margin-bottom: 0.4rem;
}

/* ========== PRECIOS Y BADGES ========== */
.price {
    font-weight: 700;
    color: #c83b70;
    margin: 0.5rem 0 1rem;
    font-size: 1.2rem;
}
.price .old {
    text-decoration: line-through;
    color: #aaa;
    font-weight: 400;
    margin-right: 8px;
}
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #8db600;
    color: white;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: bold;
    z-index: 2;
}
.btn-add {
    background: #f0f0f0;
    border: none;
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.btn-add:hover {
    background: #c83b70;
    color: white;
}

/* ========== SECCIÓN MARKETING INSIGHT ========== */
.marketing-insight {
    background: #fef8f9;
    padding: 80px 0;
}
.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.insight-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: justify;
}
.insight-text p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    color: #2d2d3a;
}
.highlight-card {
    background: white;
    border-left: 6px solid #c83b70;
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    max-width: 1000px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    text-align: justify;
    line-height: 1.7;
    color: #1e1e2a;
}
.highlight-card p {
    margin-bottom: 1rem;
}
.highlight-card strong {
    color: #c83b70;
}
.cards-insight {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}
.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.insight-card:hover {
    transform: translateY(-5px);
}
.insight-card i {
    font-size: 2.5rem;
    color: #c83b70;
    margin-bottom: 1rem;
}
.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.insight-platform {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(200,59,112,0.2);
}
.insight-platform i {
    font-size: 2rem;
    color: #c83b70;
    margin-bottom: 0.5rem;
}
.insight-tips {
    background: #fff0f3;
    padding: 2rem;
    border-radius: 32px;
    margin-top: 2rem;
}
.insight-tips ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}
.insight-tips li {
    margin: 0.8rem 0;
}
.conclusion {
    font-weight: bold;
    font-size: 1.2rem;
    color: #c83b70;
    text-align: center;
}

/* ========== BANNER INSPIRACIONAL ========== */
.inspire-banner {
    background: linear-gradient(135deg, #2d1b3c, #1a1a2e);
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.inspire-banner h2 {
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}
.inspire-banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.inspire-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}
.inspire-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.inspire-item i {
    font-size: 2.5rem;
    color: #f098b0;
}
.inspire-item span {
    font-weight: 500;
}

/* ========== CTA FINAL ========== */
.final-cta {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
}
.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.final-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #5a5a6e;
    font-size: 1.1rem;
}

/* ========== SEPARATE SERVICES (CONTACT BLOCK) ========== */
.separate-services {
    padding: 60px 0;
    background: #fef8f9;
}
.contact-block {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.contact-block h3 {
    color: #c83b70;
    margin-bottom: 1rem;
}
.contact-block p {
    margin-bottom: 1.5rem;
}

/* ========== FOOTER ========== */
footer {
    background: #11111a;
    color: #ccc;
    padding: 60px 20px 30px;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}
.footer-col {
    flex: 1;
    min-width: 180px;
}
.footer-col h4 {
    color: white;
    margin-bottom: 1.2rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}
.footer-col a:hover {
    color: #c83b70;
}
.social-icons a {
    margin-right: 15px;
    font-size: 1.2rem;
}
.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a35;
    font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        background: white;
        padding: 20px 0;
        gap: 15px;
    }
    .nav-links.show {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .hero-video-text .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-video-text .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .inspire-banner h2 {
        font-size: 1.6rem;
    }
    .inspire-features {
        gap: 1.5rem;
    }
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }
}