/**
 * OTC Network Widget - Estilos CSS
 */

.otc-network-widget {
    position: relative;
    min-height: 300px;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    overflow: hidden;
    border-radius: 8px;
}

/* Canvas de fondo con animación */
.otc-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Contenedor del contenido */
.otc-network-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Título del widget */
.otc-network-widget-title {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

/* Contenedor de elementos de contacto */
.otc-network-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Estilos para cuadrícula */
.grid-enabled .otc-network-contact-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Elemento de contacto individual */
.contact-item {
    padding: 10px 0;
    transition: all 0.3s ease;
    min-height: 40px;
    display: flex;
    margin-bottom: 15px;
}

/* Para cuadrícula - ajusta el elemento a llenar su espacio */
.grid-enabled .contact-item {
    height: 100%;
}

/* Contenedor para icono y textos */
.contact-item-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

/* Contenedor de textos */
.contact-item-text-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Estructura para el icono de contacto */
.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 3px; /* Ligero ajuste para alinear mejor con el título */
}

.contact-item-icon i,
.contact-item-icon svg {
    font-size: 22px;
    color: #FF8C00; /* Color naranja como en la imagen */
    line-height: 1;
}

/* Título del elemento de contacto */
.contact-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #FF8C00; /* Color naranja como en la imagen */
    margin: 0 0 5px 0;
    line-height: 1.2;
}

/* Texto principal de contacto */
.contact-item-text {
    font-size: 15px;
    margin: 0;
    text-decoration: none;
    color: #FFFFFF;
}/**
 * OTC Network Widget - Estilos CSS
 */

.otc-network-widget {
    position: relative;
    min-height: 300px;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    overflow: hidden;
    border-radius: 8px;
}

/* Canvas de fondo con animación */
.otc-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Contenedor del contenido */
.otc-network-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Título del widget */
.otc-network-widget-title {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

/* Contenedor de elementos de contacto */
.otc-network-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Elemento de contacto individual */
.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Icono del elemento de contacto */
.contact-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    flex-shrink: 0; /* Evita que el icono se encoja */
}

.contact-item-icon i,
.contact-item-icon svg {
    color: #FF8C00;
    font-size: 20px;
    line-height: 1; /* Elimina espacio adicional alrededor del icono */
    display: inline-block; /* Asegura comportamiento inline adecuado */
    vertical-align: middle; /* Alineación vertical con el texto */
}

/* Texto del elemento de contacto */
.contact-item-text {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #FFFFFF;
    flex-grow: 1;
    display: flex; /* Asegura comportamiento flex */
    align-items: center; /* Alinea verticalmente con el icono */
    min-height: 24px; /* Altura mínima igual a la del icono */
}

/* Clase adicional para forzar alineación del icono */
.aligned-icon {
    vertical-align: middle !important;
    margin: auto !important;
}

a.contact-item-text:hover {
    text-decoration: underline;
    color: #FF8C00;
}

/* Responsive */
@media (min-width: 768px) {
    .otc-network-widget {
        min-height: 400px;
    }
    
    .otc-network-contact-items {
        gap: 20px;
    }
    
    .contact-item {
        padding: 10px 15px;
    }
    
    .contact-item-text {
        font-size: 18px;
    }
}

/* Estilos para dos columnas en pantallas más grandes */
@media (min-width: 992px) {
    .otc-network-contact-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
    }
}

/* Animación de entrada para los elementos */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-item {
    animation: fadeInRight 0.5s ease forwards;
    opacity: 0;
}

/* Retardo en la animación para elementos consecutivos */
.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }
.contact-item:nth-child(5) { animation-delay: 0.5s; }
.contact-item:nth-child(6) { animation-delay: 0.6s; }
.contact-item:nth-child(7) { animation-delay: 0.7s; }
.contact-item:nth-child(8) { animation-delay: 0.8s; }
.contact-item:nth-child(9) { animation-delay: 0.9s; }
.contact-item:nth-child(10) { animation-delay: 1s; }

/* Estilos para la barra inferior, si se necesita */
.otc-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #800080;
    color: #FFFFFF;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.otc-bottom-bar-text {
    font-size: 14px;
}

.otc-bottom-bar-button {
    background-color: #FFFFFF;
    color: #800080;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.otc-bottom-bar-button:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.contact-