/* Reset Ejecutivo */
.catalogo-ejecutivo * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.catalogo-ejecutivo {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--brand-text);
    background: var(--brand-background);
}

/*---------------- Barra de redes sociales sticky---------------------- */
.redes-sociales-sticky {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    padding: 0 10px;
}

.redes-sociales-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(10px);
    border-radius: 0 25px 25px 0;
    padding: 20px 8px;
}

.red-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-secondary);
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.red-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.red-social-link:hover::before {
    left: 100%;
}

.red-social-link:hover {
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(234, 102, 102, 0.4);
}

.red-social-icon {
    width: 40px;
    height: 40px;

}

.red-social-text {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

/* Tooltip para redes sociales */
.red-social-link::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.red-social-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(15px);
}

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

/* Header Ejecutivo */
.ejecutivo-header {
    background: var(--brand-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.brand-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-secondary);
    margin-bottom: 0.25rem;
}

.company-slogan {
    font-size: 0.9rem;
    color: var(--brand-secondary);
    opacity: 0.8;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--brand-secondary);
    color: var(--brand-background);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(48, 19, 11, 0.2);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.3);
}

.contact-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-text small {
    opacity: 0.9;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-background) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--brand-secondary);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--brand-text);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-primary {
    background: var(--brand-accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.3);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sección Servicios Ejecutivos */
.servicios-ejecutivos {
    padding: 4rem 0;
    background: var(--brand-light);
}

/* Navegación de categorías */

.categorias-navegacion {
    margin-bottom: 3rem;
}

.nav-scroll-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.categorias-lista {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

.categorias-lista::-webkit-scrollbar {
    display: none;
}

.categoria-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--brand-secondary);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
    color: var(--brand-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.categoria-tab:hover {
    border-color: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.categoria-tab.active {
    background: var(--brand-accent);
    color: white;
    border-color: var(--brand-accent);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-text {
    font-size: 0.95rem;
}

.scroll-indicator {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--brand-secondary);
}

.scroll-indicator:hover {
    background: var(--brand-accent);
    color: white;
    border-color: var(--brand-accent);
}

/* Contenido de categorías */
.categorias-contenido {
    position: relative;
}

.categoria-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.categoria-content.active {
    display: block;
}

.categoria-header {
    text-align: center;
    margin-bottom: 3rem;
}

.categoria-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-secondary);
    margin-bottom: 1rem;
}

.categoria-descripcion {
    font-size: 1.1rem;
    color: var(--brand-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.servicio-card {
    background: var(--brand-secondary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.servicio-imagen-contenedor {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.servicio-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.servicio-card:hover .servicio-imagen {
    transform: scale(1.05);
}

.servicio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servicio-card:hover .servicio-overlay {
    opacity: 1;
}

.btn-ver-detalles {
    background: var(--brand-secondary);
    color: var(--brand-text);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ver-detalles:hover {
    background: var(--brand-accent);
    color: white;
}

.servicio-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.servicio-nombre {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-background);
    margin-bottom: 0.75rem;
}

.servicio-descripcion {
    color: var(--brand-background);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.servicio-precio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--brand-light);
    border-radius: 8px;
}

.precio-label {
    font-weight: 500;
    color: var(--brand-background);
}

.precio-valor {
    font-weight: 700;
    color: var(--brand-background);
    font-size: 1.1rem;
}

.servicio-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.btn-consultor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-background);
    color: var(--brand-secondary);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-grow: 1;
    justify-content: center;
}

.btn-consultor:hover {
    transform: translateY(-2px);
}

.servicio-estado {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.estado-disponible {
    background: #d4edda;
    color: #155724;
}

.estado-agotado {
    background: #f8d7da;
    color: #721c24;
}

.estado-proximamente {
    background: #fff3cd;
    color: #856404;
}

/* Modal Ejecutivo */
.modal-ejecutivo {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-contenido {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-cerrar {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-cerrar:hover {
    background: rgba(0, 0, 0, 0.7);
}

#modalImagen {
    width: 100%;
    height: auto;
    display: block;
}

.modal-titulo {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-text);
    background: white;
}

/* Mapa Ejecutivo */
.mapa-ejecutivo {
    padding: 4rem 0;
    background: var(--brand-background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-secondary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--brand-text);
    opacity: 0.8;
}

.mapa-contenedor-ejecutivo {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.mapframe-ejecutivo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.info-corporativa {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--brand-secondary);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--brand-text);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-background);
}

.info-content p {
    color: var(--brand-background);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--brand-background);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/*----------------- Footer Ejecutivo--------------- */
.ejecutivo-footer {
    background: black;
    color: white;
    padding: 3rem 0 1rem;
}

.piefooter {
    display: flex;
    flex-direction: row;
    background: black;
    color: white;
    justify-content: center;
}

.piefooter a {
    color: white;
    text-decoration: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-descripcion {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mapa-contenedor-ejecutivo {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-scroll-container {
        gap: 0.25rem;
    }

    .categoria-tab {
        padding: 0.75rem 1rem;
    }

    .scroll-indicator {
        width: 35px;
        height: 35px;
    }

    .modal-contenido {
        width: 95%;
        margin: 5% auto;
    }
/* ------------redes sociales sticky----------------*/
    .redes-sociales-sticky {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        transform: none;
        padding: 10px;

    }

    .redes-sociales-container {
        flex-direction: row;
        justify-content: center;
        border-radius: 25px;
        padding: 12px 20px;
        margin: 0 auto;
        max-width: 400px;
    }

    .red-social-link {
        width: 40px;
        height: 40px;
    }

    .red-social-link:hover {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Animaciones sutiles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.mapa-contenedor-ejecutivo {
    animation: fadeInUp 0.8s ease-out;
}