.elementor-4357 .elementor-element.elementor-element-4bcaee02{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:48px 48px;--row-gap:48px;--column-gap:48px;--flex-wrap:wrap;--padding-top:0px;--padding-bottom:48px;--padding-left:0px;--padding-right:0px;}.elementor-4357 .elementor-element.elementor-element-39caad1f{--display:flex;--padding-top:5px;--padding-bottom:5px;--padding-left:5px;--padding-right:5px;}.elementor-4357 .elementor-element.elementor-element-39caad1f:not(.elementor-motion-effects-element-type-background), .elementor-4357 .elementor-element.elementor-element-39caad1f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-6adeee7 );}.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__item > *{font-family:"Lato", Sans-serif;font-size:13px;font-weight:400;line-height:18px;}.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__item-link{color:var( --e-global-color-primary );}.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__item-link:hover{font-family:"Lato", Sans-serif;font-size:13px;font-weight:400;text-decoration:underline;line-height:18px;color:var( --e-global-color-accent );}.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__item-sep{margin-left:4px;margin-right:4px;font-size:10px;color:var( --e-global-color-accent );padding:5px 1px 1px 1px;}.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__browse{padding:2px 0px 0px 0px;}.elementor-4357 .elementor-element.elementor-element-7fa8174d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:48px 48px;--row-gap:48px;--column-gap:48px;}.elementor-4357 .elementor-element.elementor-element-33bd4c81 .elementor-heading-title{color:var( --e-global-color-primary );}.elementor-4357 .elementor-element.elementor-element-955f72f{--display:flex;--min-height:90vh;--gap:48px 48px;--row-gap:48px;--column-gap:48px;}@media(max-width:1024px){.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__item > *{font-size:13px;line-height:18px;}.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__item-link:hover{font-size:13px;line-height:18px;}.elementor-4357 .elementor-element.elementor-element-7fa8174d{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}}@media(max-width:767px){.elementor-4357 .elementor-element.elementor-element-39caad1f{--margin-top:0px;--margin-bottom:16px;--margin-left:0px;--margin-right:0px;}.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__item > *{font-size:13px;line-height:18px;}.elementor-4357 .elementor-element.elementor-element-3ddca452 .jet-breadcrumbs__item-link:hover{font-size:13px;line-height:18px;}}/* Start custom CSS for shortcode, class: .elementor-element-311ddc1 *//* Sucursales Styles - Versión con dos pestañas principales y tarjetas */
.sucursales-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    font-family: inherit;
}

/* Main tabs container */
.main-tabs-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Main tabs navigation */
.main-tabs-nav {
    display: flex;
    background-color: #0056B3;
    padding: 0;
}

.main-tab {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.main-tab:hover {
    color: white;
    background-color: rgba(255,255,255,0.1);
}

.main-tab.active {
    color: white;
    background-color: rgba(255,255,255,0.2);
}

.main-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
}

/* Main tab content */
.main-tab-content {
    display: none;
    padding: 20px;
}

.main-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Region section */
.region-section {
    margin-bottom: 30px;
}

.region-title {
    color: #0056B3;
    background-color: #f0f4f8;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 20px;
    margin: 0 0 20px 0;
    border-left: 5px solid #0056B3;
}

/* Sucursales container */
.sucursales-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Sucursal card */
.sucursal-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sucursal-header {
    padding: 15px;
    display: flex;
    align-items: center;
    background-color: #f0f4f8;
    border-bottom: 1px solid #eee;
}

.sucursal-imagen {
    margin-right: 15px;
    flex-shrink: 0;
}

.sucursal-imagen img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sucursal-nombre {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #0056B3;
    text-transform: uppercase;
}

.sucursal-body {
    padding: 15px;
    flex: 1;
}

/* Sucursal details */
.sucursal-detail {
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.sucursal-detail:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #0056B3;
    margin-bottom: 5px;
}

.detail-value {
    line-height: 1.4;
}

/* Phone links */
.telefono-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.telefono-link {
    display: inline-flex;
    align-items: center;
    color: #0056B3;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.telefono-link:hover {
    color: #003d80;
    text-decoration: underline;
}

.telefono-link.whatsapp {
    color: #25D366;
}

.telefono-link.whatsapp:hover {
    color: #128C7E;
}

.telefono-icon {
    margin-right: 6px;
}

/* Email link */
.email-link {
    color: #0056B3;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* Map link */
.mapa-link {
    display: inline-flex;
    align-items: center;
    color: #00A651;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.mapa-link:hover {
    transform: translateY(-2px);
    text-decoration: underline;
}

.mapa-link svg {
    margin-right: 8px;
}

/* All ejecutivos container */
.all-ejecutivos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Ejecutivo card */
.ejecutivo-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ejecutivo-region-label {
    background-color: #f0f4f8;
    padding: 8px 15px;
    color: #0056B3;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.ejecutivo-region-label span {
    font-weight: 600;
}

.ejecutivo-content {
    display: flex;
    padding: 15px;
}

.ejecutivo-foto {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    overflow: hidden;
    border-radius: 4px;
    margin-right: 15px;
}

.ejecutivo-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ejecutivo-info {
    flex: 1;
}

.ejecutivo-nombre {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.ejecutivo-cargo {
    color: #0056B3;
    font-size: 14px;
    margin-bottom: 8px;
}

.ejecutivo-contacto {
    font-size: 14px;
}

.ejecutivo-email {
    margin-bottom: 8px;
}

.ejecutivo-telefono {
    padding: 3px 0;
}

.no-sucursales {
    padding: 15px;
    font-style: italic;
    color: #888;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .sucursales-container,
    .all-ejecutivos-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .sucursales-container,
    .all-ejecutivos-container {
        grid-template-columns: 1fr;
    }
    
    .sucursal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .sucursal-imagen {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .main-tab {
        padding: 12px 15px;
        font-size: 15px;
        flex: 1;
    }
}

@media screen and (max-width: 480px) {
    .main-tab {
        padding: 10px;
        font-size: 14px;
    }
    
    .ejecutivo-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ejecutivo-foto {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100px;
        height: 100px;
    }
}/* End custom CSS */