/* ========================================
   ESTILOS GENERALES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   HEADER
   ======================================== */
header {
    background: #1a1a2e;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    color: #fff;
    transition: color 0.3s;
    font-weight: 500;
}

.menu a:hover {
    color: #e94560;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 180px 5% 120px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.highlight {
    color: #e94560;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #e94560;
    color: #fff;
    border: 2px solid #e94560;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: #c73e54;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233,69,96,0.3);
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* ========================================
   SERVICIOS DESTACADOS
   ======================================== */
.servicios-destacados {
    padding: 5rem 5%;
    background: #fff;
}

.servicios-destacados h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #e94560;
}

.icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.servicio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.servicio-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ========================================
   VIDEO DESTACADO
   ======================================== */
.video-destacado {
    padding: 5rem 5%;
    background: #1a1a2e;
    color: #fff;
    text-align: center;
}

.video-destacado h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-container iframe {
    display: block;
}

/* ========================================
   POR QUÉ ELEGIRME
   ======================================== */
.por-que-elegirme {
    padding: 5rem 5%;
    background: #fff;
}

.por-que-elegirme h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ventaja {
    text-align: center;
    padding: 2rem;
}

.numero {
    font-size: 3rem;
    font-weight: bold;
    color: #e94560;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.ventaja h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.ventaja p {
    color: #666;
}

/* ========================================
   TESTIMONIOS
   ======================================== */
.testimonios {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.testimonios h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonio-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonio-card span {
    font-weight: bold;
    color: #e94560;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: #fff;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-grande {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background: #fff;
    color: #e94560;
    border: 2px solid #fff;
}

.btn-grande:hover {
    background: transparent;
    color: #fff;
}

/* ========================================
   PORTAFOLIO
   ======================================== */
.portafolio {
    padding: 150px 5% 5rem;
    background: #fff;
}

.portafolio h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.filtros {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filtro-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #1a1a2e;
    background: transparent;
    color: #1a1a2e;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: #1a1a2e;
    color: #fff;
}

.galeria-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.video-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.categoria-tag {
    background: #e94560;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* ========================================
   SERVICIOS PAGE
   ======================================== */
.servicios-page {
    padding: 150px 5% 5rem;
    background: #f8f9fa;
}

.servicios-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.precio-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.precio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.precio-card.destacado {
    border-color: #e94560;
    transform: scale(1.05);
}

.precio-card.destacado:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    background: #e94560;
    color: #fff;
    padding: 0.5rem 1.5rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.precio {
    font-size: 3rem;
    color: #e94560;
    font-weight: bold;
}

.precio span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.plan-features {
    text-align: left;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan {
    display: block;
    background: #1a1a2e;
    color: #fff;
    padding: 1rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-plan:hover {
    background: #e94560;
    transform: translateY(-3px);
}

/* Servicios Adicionales */
.servicios-adicionales {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.servicios-adicionales h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.adicionales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.adicional-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.adicional-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.precio-adicional {
    color: #e94560;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.adicional-card p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 3rem 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.faq-item {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ========================================
   CONTACTO
   ======================================== */
.contacto {
    padding: 150px 5% 5rem;
    background: #f8f9fa;
}

.contacto h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.formulario-contacto {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
}

.btn-submit {
    background: #e94560;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c73e54;
    transform: translateY(-3px);
}

.contacto-alternativo {
    background: #1a1a2e;
    color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
}

.contacto-alternativo h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contacto-item .icon {
    font-size: 1.5rem;
}

.contacto-item p {
    font-size: 1rem;
}

.tiempo-respuesta {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.tiempo-respuesta h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tiempo-respuesta p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.mensaje-exito,
.mensaje-error {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.mensaje-exito {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensaje-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #1a1a2e;
    color: #fff;
    text-align: center;
    padding: 3rem 5%;
}

footer p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.redes-sociales {
    margin: 1.5rem 0;
}

.redes-sociales a {
    color: #fff;
    margin: 0 0.8rem;
    transition: color 0.3s;
}

.redes-sociales a:hover {
    color: #e94560;
}

.whatsapp {
    margin-top: 1rem;
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .contacto-container {
        grid-template-columns: 1fr;
    }
    
    .precio-card.destacado {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .portafolio h1,
    .servicios-page h1,
    .contacto h1 {
        font-size: 2.2rem;
    }
    
    .galeria-videos {
        grid-template-columns: 1fr;
    }
    
    .precios-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 5% 80px;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
    }
    
    .filtros {
        flex-direction: column;
        align-items: center;
    }
    
    .filtro-btn {
        width: 100%;
        max-width: 250px;
    }
}