/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.4.1753704467
Updated: 2025-07-28 12:07:47

*/


/* =================================
   TABS
   ================================= */

/* Desactivar scroll suave para navegación directa */
html, body {
    scroll-behavior: auto !important;
}
/* Evitar transiciones en el scroll */
* {
    scroll-behavior: auto !important;
}

/* Solo aplicar scroll suave en elementos específicos si es necesario */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Mostrar los controles de pestañas para tabs_img */
.tabs_img .et_pb_tabs_controls {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
}

/* Ocultar el estilo por defecto de las pestañas */
.tabs_img .et_pb_tabs_controls li {
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1;
    min-width: 200px;
	transition: all 0.3s ease;
}

.tabs_img .et_pb_tabs_controls li:target {
    animation: highlight-tab 2s ease-in-out;
}

@keyframes highlight-tab {
    0% { 
        background-color: rgba(117, 85, 83, 0.2);
        transform: scale(1.02);
    }
    50% { 
        background-color: rgba(117, 85, 83, 0.4);
    }
    100% { 
        background-color: transparent;
        transform: scale(1);
    }
}

/* Indicador visual cuando la pestaña está siendo targeting */
.tabs_img .et_pb_tabs_controls li.highlighted {
    box-shadow: 0 0 10px rgba(117, 85, 83, 0.5);
}

.tabs_img .et_pb_tabs_controls li a {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: inherit !important;
    text-decoration: none !important;
    display: block !important;
    width: 100%;
}

.tabs_img .et_pb_tabs_controls li:hover a,
.tabs_img .et_pb_tabs_controls li.et_pb_tab_active a {
    background: none !important;
    color: inherit !important;
}

/* Estilos específicos para pestañas con clase tabs_img - Layout vertical */
.tabs_img .custom-tab-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px 60px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 280px;
    position: relative;
}

.tabs_img .custom-tab-header:hover {
    background: #e9ecef;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #dee2e6;
}

.tabs_img .et_pb_tabs_controls li.et_pb_tab_active {
    border: 4px solid #f39c12;
}

.tabs_img .et_pb_tabs_controls li.et_pb_tab_active .custom-tab-header {
    background: #fff;
    transform: translateY(-5px);
}

.tabs_img .tab-icon {
    /*width: 200px;
    height: 200px;*/
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tabs_img .tab-icon img {
    max-width: 220px;
    height: auto;
    border-radius: 50%;
}

.tabs_img .tab-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tabs_img .tab-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #2C774F;
    line-height: 1.2;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs_img .tab-description {
    font-size: 13px;
    margin: 0;
    color: #7f8c8d;
    line-height: 1.3;
    flex-grow: 1;
}

.tabs_img .tab-arrow {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.tabs_img .et_pb_all_tabs{
    border-top: 2px solid #f39c12;
}

.tabs_img .et_pb_tabs_controls li.et_pb_tab_active .tab-arrow {
    transform: translateX(-50%) rotate(180deg);
    color: #f39c12;
}

.tabs_img .et_pb_tabs_controls li.et_pb_tab_active .tab-icon img {
    border: 3px solid #f39c12;
}

/* Estilos para el contenido desplegado */
.tabs_img .et_pb_tab_content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .tabs_img .et_pb_tabs_controls {
        gap: 10px;
    }
    
    .tabs_img .et_pb_tabs_controls li {
        min-width: 180px;
    }
    
    .tabs_img .custom-tab-header {
        min-height: 260px;
        padding: 15px 10px;
    }
    
    .tabs_img .tab-icon {
        width: 100px;
        height: 100px;
    }
    
    .tabs_img .tab-icon img {
        max-width: 70px;
    }
    
    .tabs_img .tab-title {
        font-size: 14px;
    }
    
    .tabs_img .tab-description {
        font-size: 12px;
    }
}

@media (max-width: 980px) {
    .tabs_img .et_pb_tabs_controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tabs_img .et_pb_tabs_controls li {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
    }
    
    .tabs_img .custom-tab-header {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .tabs_img .et_pb_tabs_controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .tabs_img .et_pb_tabs_controls li {
        flex: 1;
        min-width: 0;
    }
    
    .tabs_img .custom-tab-header {
        flex-direction: row;
        text-align: left;
        min-height: auto;
        padding: 15px;
    }
    
    .tabs_img .tab-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .tabs_img .tab-icon img {
        max-width: 60px;
    }
    
    .tabs_img .tab-content {
        text-align: left;
        flex: 1;
    }
    
    .tabs_img .tab-title {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 8px;
    }
    
    .tabs_img .tab-description {
        font-size: 12px;
    }
    
    .tabs_img .tab-arrow {
        position: static;
        transform: none;
        margin-left: 15px;
        align-self: center;
    }
    
    .tabs_img .et_pb_tabs_controls li.et_pb_tab_active .tab-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .tabs_img .custom-tab-header {
        padding: 12px;
    }
    
    .tabs_img .tab-icon {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }
    
    .tabs_img .tab-icon img {
        max-width: 45px;
    }
    
    .tabs_img .et_pb_tab_content {
        padding: 20px;
    }
}

.tabs_img li:not(.et_pb_tab_active) {
    opacity: .5;
}
.tabs_img.et_pb_tabs {
    border: 0;
}
.tabs_img .et_pb_tab {
    padding: 0;
}
ul.et_pb_tabs_controls {
    background-color: inherit;
}


/* =================================
   UBICACIONES
   ================================= */

.wpgmp_tabs_container .wpgmp_toggle_container,
.wpgmp_tabs,
.info.legend.leaflet-control{
	display: none !important;
}
.wpgmp_tabs_container .wpgmp_tab_item .wpgmp_cat_title {
	font-size: .8em !important;
}
.wpgmp_toggle_main_container {
	padding: 10px;
}
.fc-infobox-title{
	line-height: 1.1 !important;
	color: #000 !important;
}
.wpgmp_toggle_main_container,
.fc-infobox{
	font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif !important;
}
.wpgmp_tabs_container .wpgmp_tab_item .wpgmp_cat_title{
	text-transform: inherit !important;
}
.fc-infobox-layout-7 .fc-infobox-img{
	overflow: inherit !important;
}
.fc-infobox-layout-7 .fc-infobox-img img{
	aspect-ratio: inherit !important;
	border-radius: 5px;
}

@media (min-width: 981px) and (max-width: 1200px) {
	.wpgmp_map{
		max-height:600px !important;
	}
}
@media (min-width: 769px) and (max-width: 980px) {
	.wpgmp_map{
		max-height:500px !important;
	}
}
@media (min-width: 769px) {
	.wpgmp_tabs_container {
		left: 5px !important;
		bottom: 5px !important;
		top: inherit !important;
		right: inherit !important;
		max-width: 430px;
	}
}
@media (max-width: 768px) {
	.wpgmp_map{
		max-height:350px !important;
	}
}

.wpgmp_tabs_container #wpgmp_tab_0 .wpgmp_tab_item input[type=checkbox], 
.wpgmp_tabs_container #wpgmp_tab_2 .wpgmp_tab_item input[type=checkbox], 
.wpgmp_tabs_container #wpgmp_tab_3 .wpgmp_tab_item input[type=checkbox] {
	display: table-cell;
    opacity: 1;
    width: auto;
    margin-left: 0 !important;
}

@media (max-width: 991px) {
	.fc-infobox-content-wrapper {
		display: block !important;
	}
	.fc-infobox-img{
		margin-bottom: 10px;
	}
	.fc-infobox-title{
		font-size: 1.1em !important;
	}
	.wpmp_categoria .fc-badge{
		padding: 2px 5px !important;
		text-align: center;
		font-size: .8em !important;
	}
}
@media (max-width: 500px) {
	.fc-infobox-direccion,
	.fc-infobox-cp,
	.fc-infobox-ciudad{
		font-size: .9em !important;
	}
	.wpmp_categoria .fc-badge{
		font-size: .7em !important;
		padding: 2px 5px !important;
		text-align: center;
	}
}

/* =================================
   UBICACIONES - ESTILOS CONDICIONALES
   ================================= */

/* Ocultar elementos con dirección vacía */
.fc-infobox-direccion.direccion-vacia {
    display: none !important;
}

/* Estilos para las categorías */
.wpmp_categoria .cat_prod {
    background-color: #755553 !important;
    color: white !important;
}

.wpmp_categoria .cat_prev {
    background-color: #fac800 !important;
    color: white !important;
}

.wpmp_categoria .cat_bolsas {
    background-color: #008EC5 !important;
    color: white !important;
}

/* Estilos base para los badges */
.wpmp_categoria .fc-badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}


/* =================================
   CF7 ESTILOS
   ================================= */

/* Contenedor principal */
.cf7_resp {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Filas */
.cf7_row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    box-sizing: border-box;
}

/* Reset para elementos de formulario */
.cf7_row * {
    box-sizing: border-box;
}

/* Columnas base */
[class*="cf7_col"] {
    position: relative;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/* Sistema de 12 columnas */
.cf7_col1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.cf7_col2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.cf7_col3 { flex: 0 0 25%; max-width: 25%; }
.cf7_col4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.cf7_col5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.cf7_col6 { flex: 0 0 50%; max-width: 50%; }
.cf7_col7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.cf7_col8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.cf7_col9 { flex: 0 0 75%; max-width: 75%; }
.cf7_col10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.cf7_col11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.cf7_col12 { flex: 0 0 100%; max-width: 100%; }

/* Estilos para elementos de formulario */
.cf7_resp input[type="text"],
.cf7_resp input[type="email"],
.cf7_resp input[type="tel"],
.cf7_resp input[type="url"],
.cf7_resp input[type="number"],
.cf7_resp input[type="date"],
.cf7_resp input[type="password"],
.cf7_resp textarea,
.cf7_resp select {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: .8em;
    line-height: 1.2;
    box-sizing: border-box;
}

.cf7_resp textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 180px;
}

.cf7_resp label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: .9em;
    line-height: 1.1em;
}

/* Responsive breakpoints */

/* Desktop grande (981px y arriba) - comportamiento normal */

/* Tablets grandes (850px a 980px) - 1/3 cada columna */
@media (max-width: 980px) and (min-width: 850px) {
    .cf7_col1, .cf7_col2, .cf7_col3, .cf7_col4,
    .cf7_col5, .cf7_col6, .cf7_col7, .cf7_col8,
    .cf7_col9, .cf7_col10, .cf7_col11 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .cf7_col12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablets medianas (769px a 849px) - 50% cada columna */
@media (max-width: 849px) and (min-width: 769px) {
    .cf7_col1, .cf7_col2, .cf7_col3, .cf7_col4,
    .cf7_col5, .cf7_col6, .cf7_col7, .cf7_col8,
    .cf7_col9, .cf7_col10, .cf7_col11 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .cf7_col12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablets (768px y abajo) - 100% todas las columnas */
@media (max-width: 768px) {
    .cf7_col1, .cf7_col2, .cf7_col3, .cf7_col4,
    .cf7_col5, .cf7_col6, .cf7_col7, .cf7_col8,
    .cf7_col9, .cf7_col10, .cf7_col11 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .cf7_col12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .cf7_resp {
        padding: 0 8px;
    }
    
    .cf7_row {
        margin-left: -6px;
        margin-right: -6px;
    }
    
    [class*="cf7_col"] {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* Móviles pequeños (480px y abajo) */
@media (max-width: 480px) {
    .cf7_resp {
        padding: 0 5px;
    }
    
    .cf7_row {
        margin-left: -3px;
        margin-right: -3px;
    }
    
    [class*="cf7_col"] {
        padding-left: 3px;
        padding-right: 3px;
    }
}

/* Clases de utilidad adicionales */
.cf7_text_center { text-align: center; }
.cf7_text_left { text-align: left; }
.cf7_text_right { text-align: right; }

.cf7_mb_0 { margin-bottom: 0 !important; }
.cf7_mb_1 { margin-bottom: 10px !important; }
.cf7_mb_2 { margin-bottom: 20px !important; }
.cf7_mb_3 { margin-bottom: 30px !important; }

.cf7_mt_0 { margin-top: 0 !important; }
.cf7_mt_1 { margin-top: 10px !important; }
.cf7_mt_2 { margin-top: 20px !important; }
.cf7_mt_3 { margin-top: 30px !important; }

/* Botones */
.cf7_resp input[type="submit"],
.cf7_resp button,
.cf7_btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff7013;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
	white-space: normal;
}

.cf7_resp input[type="submit"]:hover,
.cf7_resp button:hover,
.cf7_btn:hover {
    background-color: #452725;
    padding: 10px 20px !important;
}

/* Ejemplo de uso con Contact Form 7 */
.cf7_resp .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Excepción para checkbox de aceptación */
.cf7_resp .cf7_acepto .wpcf7-form-control-wrap {
    display: inline-block !important;
    width: auto !important;
}

.cf7_resp .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    line-height: 1em;
}

/* Estilos para checkbox de aceptación */
.cf7_resp .cf7_acepto {
    margin-bottom: 15px;
}

.cf7_resp .cf7_acepto p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    line-height: 1.2;
	font-size: .8em;
}

.cf7_resp .cf7_acepto input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    transform: scale(1.2);
    margin-top: 2px;
}

.cf7_resp .cf7_acepto a {
    color: #007cba;
    text-decoration: underline;
}

.cf7_resp .cf7_acepto a:hover {
    color: #005a87;
}

.cf7_resp .cf7_acepto .wpcf7-list-item {
    margin-left: 0;
}

.cf7_resp .cf7_legal {
  font-size: .7em;
  line-height: 1.1em;
}

.cf7_resp .cf7_center {
    text-align: center;
}

.cf7_resp .cf7_req:after{
    content: "*";
    position: relative;
    margin-left: 2px;
    font-size: 1em;
    font-weight: 500;
    color: #FF0000;
    line-height: 100%;
}

/* Placeholder - Versión corregida para todos los navegadores */
.cf7_resp input::-webkit-input-placeholder, 
.cf7_resp textarea::-webkit-input-placeholder { 
    /* WebKit browsers (Chrome, Safari) */
    color: #666666 !important;
    opacity: 1;
}

.cf7_resp input:-moz-placeholder, 
.cf7_resp textarea:-moz-placeholder { 
    /* Mozilla Firefox 4 to 18 */
    color: #666666 !important;
    opacity: 1;
}

.cf7_resp input::-moz-placeholder, 
.cf7_resp textarea::-moz-placeholder { 
    /* Mozilla Firefox 19+ */
    color: #666666 !important;
    opacity: 1;
}

.cf7_resp input:-ms-input-placeholder, 
.cf7_resp textarea:-ms-input-placeholder { 
    /* Internet Explorer 10+ */
    color: #666666 !important;
    opacity: 1;
}

.cf7_resp input::placeholder, 
.cf7_resp textarea::placeholder { 
    /* Estándar moderno (Chrome 57+, Firefox 51+, Safari 10.1+) */
    color: #666666 !important;
    opacity: 1;
}

/* Estilos DIVI */
.wpcf7-text, .wpcf7-textarea, .wpcf7-captchar, .wpcf7-select, .wpcf7-date, .wpcf7-number{
	background-color: #eee !important;
	border: 1px solid #452725 !important;
	width: 100% !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 10px !important;
	font-size: 14px;
	color: #262626 !important;
	padding: 16px !important;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cf7_checkboxes{
	background-color: #eee; 
	padding: 6px 20px !important
}
.cf7_checkboxes .wpcf7-form-control-wrap{display: block;}
.cf7_checkboxes .wpcf7-list-item{
	display: block;
	margin: 0 !important;
}