* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: relative;
    z-index: 100;
    padding: 30px 0; /* Aumentar significativamente */
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.9); /* Más opaco */
    border-bottom: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); /* Sombra sutil */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo img {
    height: 60px; /* Tamaño más grande */
    width: auto;
    max-width: 350px;
    filter: drop-shadow(0 2px 8px rgba(0, 245, 255, 0.3)); /* Sombra del logo */
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 245, 255, 0.5));
}

/* Ajustar navegación para el header más alto */
.nav-links {
    display: flex;
    gap: 35px; /* Más espacio entre enlaces */
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem; /* Texto ligeramente más grande */
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00f5ff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    
    .logo img {
        height: 55px;
        max-width: 280px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 0;
    }
    
    .logo img {
        height: 45px;
        max-width: 220px;
    }
    
    .nav-links {
        display: none; /* Ocultar en móvil muy pequeño */
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00f5ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: #666;
}

/* Hero Section */
.service-hero {
    padding: 80px 0 60px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInUp 0.8s ease-out;
}

.service-hero .subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.service-hero .price-tag {
    display: inline-block;
    background: linear-gradient(45deg, #00f5ff, #0099ff);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.price-tag2 {
    display: inline-block;
    color: #00f5ff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out 0.4s both;
    background: transparent;
    color: #00f5ff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none; /* Para botones */
    font-family: inherit; /* Para botones */    
}

.cta-primary {
    background: linear-gradient(45deg, #00f5ff, #0099ff);
    color: #000;
}

.cta-secondary {
    background: transparent;
    color: #00f5ff;
    border: 2px solid #00f5ff;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 245, 255, 0.4);
}

.cta-secondary:hover {
    background: rgba(0, 245, 255, 0.1);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
    backdrop-filter: blur(5px);
}

.content-section:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.15);
    border-color: rgba(0, 245, 255, 0.5);
}

.feature-icon {
    font-size: 3rem;
    color: #00f5ff;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #00f5ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00f5ff, #0099ff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: #00f5ff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-step p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #00f5ff;
}

.benefit-icon {
    font-size: 2rem;
    color: #00f5ff;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Pricing Table */
.pricing-table {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    margin-bottom: 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: #00f5ff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.pricing-header .price-note {
    color: #b0b0b0;
    font-size: 1rem;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.pricing-feature .check {
    color: #00f5ff;
    font-weight: bold;
}

/* FAQ Section */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question h4 {
    color: #00f5ff;
    font-size: 1.2rem;
}

.faq-toggle {
    color: #00f5ff;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #e0e0e0;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-cta p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Footer */
/* Footer Component Styles */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00f5ff;
}

.email-signup {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 20px 25px;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: #00f5ff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.email-input::placeholder {
    color: #b0b0b0;
}

.email-submit {
    background: linear-gradient(45deg, #00f5ff, #0099ff);
    color: #000;
    padding: 20px 40px;
    border: none;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-item {
    color: #e0e0e0;
}

.contact-item a {
    color: #00f5ff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.privacy-notice {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .email-signup {
        flex-direction: column;
        gap: 15px;
    }
    
    .email-input {
        border-radius: 25px;
    }
    
    .email-submit {
        border-radius: 25px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .footer h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   VIDEO MODAL STYLES
   ============================================ */

.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    max-width: 1000px;
    border: 2px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease-out;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #00f5ff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(0, 245, 255, 0.2);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /*16:9 aspect ratio*/
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    background: #000;
}

/* Personalizar controles del video */
.video-container video::-webkit-media-controls {
    border-radius: 15px;
}

.video-container video::-webkit-media-controls-panel {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}


.video-info {
    text-align: center;
    color: #ffffff;
}

.video-info h3 {
    color: #00f5ff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-info p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Botón terciario para el nuevo layout */
.cta-tertiary {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #b0b0b0;
    border: 2px solid rgba(176, 176, 176, 0.3);
}

.cta-tertiary:hover {
    color: #00f5ff;
    border-color: rgba(0, 245, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.2);
}

/* Animaciones */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { 
        opacity: 0; 
        transform: translateY(50px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-modal-content {
        padding: 20px;
        margin: 10px;
        max-width: 95vw;
    }
    
    .video-modal-close {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary, .cta-secondary, .cta-tertiary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        padding: 15px;
        border-radius: 15px;
    }
    
    .video-container {
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .video-container iframe {
        border-radius: 10px;
    }
}

/* Evitar scroll del body cuando el modal está abierto */
body.modal-open {
    overflow: hidden;
}





/* ============================================
   BREADCRUMB RESPONSIVE - DEBAJO DEL LOGO EN MÓVIL
   Agregar a src/css/servicios.css
   ============================================ */

/* Ajustar el header para móvil */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
    }
        
    /* Breadcrumb debajo del logo */
    .breadcrumb {
        order: 2;
        align-self: flex-start;
        margin-left: 0;
        padding-left: 0;
    }
    
    /* Botón hamburguesa a la derecha */
    .mobile-menu-toggle {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        order: 3;
    }
    
    /* Ocultar selector de idiomas desktop */
    .language-selector,
    #language-selector,
    #service-language-selector {
        display: none !important;
    }
}

/* Ajustes específicos para el breadcrumb en móvil */
@media (max-width: 768px) {
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #b0b0b0;
        font-size: 0.85rem;
        margin-top: 5px;
        width: 100%;
    }
    
    .breadcrumb a {
        color: #00f5ff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .breadcrumb a:hover {
        color: #ffffff;
    }
    
    .breadcrumb span {
        color: #666;
        margin: 0 2px;
    }
}

/* Móvil muy pequeño */
@media (max-width: 480px) {
    .header-content {
        padding: 12px 0;
        gap: 10px;
    }
    
    .logo img {
        height: 40px;
        max-width: 200px;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        margin-top: 10px;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 18px;
    }
}

/* Ajuste para que el header sea más compacto en móvil */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .header-content {
        position: relative;
        min-height: 60px;
    }
}

/* Asegurar que el breadcrumb no interfiera con el layout */
@media (max-width: 768px) {
    .breadcrumb {
        z-index: 10;
        pointer-events: auto;
    }
    
    /* Si hay contenido que se solapa, ajustar el padding del siguiente elemento */
    .service-hero {
        padding-top: 50px;
    }
}

/* Versión alternativa si prefieres que el breadcrumb esté centrado */
@media (max-width: 768px) {
    .breadcrumb.centered {
        align-self: center;
        text-align: center;
        justify-content: center;
    }
}

/* Versión alternativa con fondo para mejor legibilidad */
@media (max-width: 768px) {
    .breadcrumb.with-background {
        background: rgba(0, 0, 0, 0.5);
        padding: 8px 15px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 245, 255, 0.2);
    }
}