@charset "UTF-8";
/* CSS Document */

/* ==========================================================================
   VARIABLES CSS - Colores RolOrtiz
   ========================================================================== */
:root {
	--color-azul-oscuro: #0C3A5D;
	--color-azul-medio: #1E5A8A;
	--color-rojo: #E53935;
	--color-gris-claro: #F5F5F5;
	--color-gris-footer: #E8E8E8;
	--color-blanco: #ffffff;
	--color-negro: #333333;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
header.site-header {
	background: #ffffff;
	padding: 0px;
	width: 100%;
	display: block;
	z-index: 999;
	position: sticky;
	top: 0;
}

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

/* Header Logo */
.header-logo {
	flex: 0 0 auto;
}

.header-logo .custom-logo-link {
	display: block;
	padding: 10px 0;
}

.header-logo .custom-logo-link img,
.header-logo img {
	max-width: 240px;
	width: 100%;
	height: auto;
	display: block;
}

.header-logo .site-title-link {
	color: var(--color-blanco);
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
	font-family: 'Archivo', sans-serif;
}

/* Header Navigation */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-navigation .header-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.main-navigation .header-menu li {
	margin: 0;
	padding: 0;
	position: relative;
}

.main-navigation .header-menu li:before {
	display: none;
}

.main-navigation .header-menu li a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #00468C;
	text-decoration: none;
	font-family: 'Lexend', sans-serif;
	font-size: 14px;
	font-weight: 400;
	padding: 20px 18px;
	transition: all 0.3s ease;
	position: relative;
}

.main-navigation .header-menu li a:hover {
	color: #FF4646;
}

.main-navigation .header-menu li.current-menu-item a,
.main-navigation .header-menu li.current-menu-parent a {
	color: #FF4646;
}

/* Ícono de home en el primer elemento del menú */
.main-navigation .header-menu li:first-child a:before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 4px;
}

/* Submenú */
.main-navigation .header-menu ul.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--color-azul-medio);
	min-width: 200px;
	padding: 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	z-index: 99999;
}

.main-navigation .header-menu li:hover > ul.sub-menu {
	display: block;
}

.main-navigation .header-menu ul.sub-menu li {
	display: block;
	width: 100%;
}

.main-navigation .header-menu ul.sub-menu li a {
	padding: 12px 18px;
	font-size: 13px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-navigation .header-menu ul.sub-menu li a:before {
	display: none;
}

.main-navigation .header-menu ul.sub-menu li:last-child a {
	border-bottom: none;
}

/* Header Redes Sociales */
.header-redes-sociales {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-red-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: transparent;
	border-radius: 50%;
	border:2px solid #FF4646;
	transition: all 0.3s ease;
	overflow: hidden;
}

.header-red-social:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

.header-red-social img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

/* Menu Toggle Button */
.menu-toggle.menu-btn {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	position: relative;
}

#nav-icon3 {
	width: 25px;
	height: 20px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	cursor: pointer;
}

#nav-icon3 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--color-blanco);
	border-radius: 3px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
	top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
	top: 8px;
}

#nav-icon3 span:nth-child(4) {
	top: 16px;
}

.toggled #nav-icon3 span:nth-child(1) {
	top: 8px;
	width: 0%;
	left: 50%;
}

.toggled #nav-icon3 span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.toggled #nav-icon3 span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.toggled #nav-icon3 span:nth-child(4) {
	top: 8px;
	width: 0%;
	left: 50%;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer.site-footer {
	background-color: #0568DD; /* fallback */
  background-image: linear-gradient(
    90deg,
    #0568DD 0%,
    #0B4583 69%
  );
	position: relative;
	width: 100%;
	margin-top: auto;
}

/* Footer Top - Logo y mensaje */
.footer-top {
	background: var(--color-azul-oscuro);
	padding: 30px 0;
}

.footer-top-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.footer-logo img {
	max-width: 100px;
	height: auto;
}

.footer-mensaje {
	max-width: 400px;
}

.footer-mensaje p {
	color: var(--color-blanco);
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	text-align: left;
}

.footer-mensaje p strong {
	color: var(--color-blanco);
	font-weight: 700;
}

/* Footer Main */
.footer-main {
	padding: 25px 0;
}

.footer-main-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-col {
	display: flex;
	align-items: center;
}

.footer-col-logo {
	flex: 0 0 auto;
}

.footer-col-logo .custom-logo-link img,
.footer-col-logo img {
	max-width: 200px;
	height: auto;
}

.footer-col-menu {
	flex: 1;
	justify-content: center;
}

.footer-col-redes {
	flex: 0 0 auto;
}

/* Footer Menu */
.footer-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

.footer-menu li {
	margin: 0;
	padding: 0;
}

.footer-menu li:before {
	display: none;
}

.footer-menu li a {
	color: #ffffff;
	text-decoration: none;
	font-family: 'Lexend', sans-serif;
	font-size: 13px;
	font-weight: 400;
	transition: all 0.3s ease;
}

.footer-menu li a:hover {
	color: #FF4646;
	opacity: 1;
}

/* Footer Redes Sociales */
.footer-redes-sociales {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-red-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: transparent;
	border-radius: 50%;
	border:2px solid #ffffff;
	transition: all 0.3s ease;
	overflow: hidden;
}

.footer-red-social:hover {
	opacity: 0.6;
	transform: scale(1.1);
}

.footer-red-social img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* Footer Copyright */
.footer-copyright {
	padding: 15px 0;
}

.footer-copyright p {
	color: #ffffff;
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
	text-align: center;
	font-family: 'Lexend', sans-serif;
}

/* ==========================================================================
   LEGACY STYLES (mantener compatibilidad)
   ========================================================================== */
.site-main {
}

.columna-footer-logo {
	display: inline-block;
	vertical-align: middle;
	width: 240px;
}

.columna-footer-copyright {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 490px);
}

.columna-footer-redes {
	display: inline-block;
	vertical-align: middle;
	width: 240px;
}

/* Icon 3 */
#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  width: 25px;
  height: 40px;
  /*position: relative;*/
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #d7263d;
  border-radius: 8px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon3 span:nth-child(1) {
  top: 9px;
}
#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 18px;
}
#nav-icon3 span:nth-child(4) {
  top: 27px;
}
#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.page{
	margin:0 auto;
}
.page-content, .entry-content{
	margin:0 auto;
}
.wpforms-submit-container{
	text-align: center !important;
}
.wpforms-submit{
	color: #ffffff !important;
    border: none !important;
    font-weight: 900 !important;
    padding: 15px 25px !important;
    display: inline-block;
    margin: 4px auto !important;
    text-decoration: none !important;
    cursor: pointer;
    width: auto !important;
    min-width: 180px !important;
    text-align: center !important;
    border-radius: 30px !important;
    background: rgb(213,61,138) !important;
background: linear-gradient(90deg, rgba(213,61,138,1) 0%, rgba(226,87,56,1) 100%) !important;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px !important;
    line-height: 17px !important;
    height: auto !important;
	text-transform: uppercase !important;
}
div.wpforms-container-full .wpforms-form .wpforms-field-label{
	font-family: "Lexend", serif;
    font-size: 16px !important;
    line-height: 18px;
    padding: 0px 0px;
    color: #ffffff;
    width: 100%;
    margin: 0 auto 10px;
}
div.wpforms-container-full .wpforms-field.wpforms-field-radio ul li input+label, div.wpforms-container-full .wpforms-field.wpforms-field-checkbox ul li input+label {
	font-family: "Lexend", serif;
    font-size: 16px !important;
    line-height: 18px;
	color: #343a40;
}
div.wpforms-container-full .wpforms-form .wpforms-one-half{
	width: 50%;
	display: inline-block;
	float:none !important;
}
div.wpforms-container-full .wpforms-field.wpforms-field-checkbox ul{
	margin:5px auto 0px;
}
.custom-logo-link {
	display: inline-block;
	vertical-align: middle;
	padding: 0px;
}
.main-navigation {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 140px);
	text-align: right;
}
.main-navigation ul{
	padding:0px;
	display: block;
}
.main-navigation li {
	display: inline-block;
	float:none;
	padding: 0px;
	margin:0 auto;
}
.main-navigation li:before {
	display:none;
}
.menu-btn {
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    border: 0px;
    z-index: 9999999999;
    font-size: 26px;
    line-height: 26px;
    outline: none;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 12px;
    top: 10px;
    padding: 10px;
    opacity: 1 !important;
}
/*** ESTILOS MENU RESPONSIVE ***/


.pushy-content .menu-item-830 a span, .pushy-content .menu-item-1005 a span, .pushy-content .menu-item-694 a span {
	display: block;
	text-align: center;
}

.menu-btn{
	background: transparent;
    color: #ffffff;
    box-shadow: none;
    border: 0px;
    z-index: 9999999999;
    font-size: 26px;
    line-height: 26px;
    outline: none;
    cursor: pointer;
    display: none;
    position: absolute;
	right: 10px;
    top: 12px;
    padding: 10px;
    opacity: 1 !important;
}
.menu-btn:hover{
	box-shadow: none;
	border: 0px;
}
#menu-menu-responsive{
	padding: 0px;
	margin: 20px 0px 0px;
	list-style: none;
}
.pushy-content .menu li{
	width:100%;
	padding: 0px;
}
.pushy a{
	color: #ffffff !important;
	padding: 5px 0px;
	margin: 0px auto;
	text-align: left;
	font-weight: 700;
}
.pushy a:hover{
	color: #ffffff !important;
	opacity:0.5 !important;
}
.pushy a::before{
	display:none !important;
}
.pushy ul li{
	margin:12px auto;
}
.pushy ul li .sub-menu li{
	margin:0 auto;
}
.pushy ul li .sub-menu li a{
	font-weight:400;
	color: #efefef !important;
}
.pushy ul li .sub-menu li a:after{
	display:none;
}
.pushy-submenu-open.sub-menu{
	display:block;
}
.pushy-submenu-closed.sub-menu{
	display:none;
}
.pushy-content .sub-menu li a{
	border:none !important;
}
.main-navigation a{
	color: #ffffff;
	opacity:1 !important;
	font-weight:400;
	border-radius:0px;
	padding: 24px 16px;
	text-align: left;
	font-family: "Lexend", serif;
}
.main-navigation a:hover{
	color:#ffffff;
	font-weight:700;
}
.main-navigation li.current-menu-item a, .main-navigation li.current-menu-parent a{
	color:#ffffff;
	font-weight:700;
}
.main-navigation li ul li.current-menu-item a{
	color:#ffffff;
	font-weight:700;
}
div.wpforms-container-full .wpforms-form input[type=text], div.wpforms-container-full .wpforms-form input[type=number], div.wpforms-container-full .wpforms-form input[type=email]{
	width: 100%;
    color: #343a40 !important;
    height: auto;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    border: none !important;
    background: #f2f2f2 !important;
    font-size: 13px;
    line-height: 17px;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium{
	padding: 16px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 12px !important;
    border: none !important;
    background: #f2f2f2 !important;
    width: 100%;
    margin-bottom: 2px;
    color: #343a40 !important;
    height: 108px !important;
    font-size: 13px;
    line-height: 17px;
}
div.wpforms-container-full .wpforms-form select{
	-webkit-appearance: none;
	padding-top: 0px;
	background: transparent !important;
	width: 100%;
	margin-bottom: 2px;
	background: url(../images/ico-select.png) #f2f2f2 no-repeat center right 8px !important;
	background-size: 30px !important;
	padding: 12px 40px 12px 12px !important;
	font-size: 13px;
	line-height: 17px;
	color: #606060 !important;
	height: auto;
	border-radius:12px !important;
	border: none !important;
}
div.wpforms-container-full{
	margin:20px auto !important;
}
.wpforms-form{
	position: relative;
}
.wpforms-submit-container{
	text-align: right;
	padding: 10px !important;
}
.vc_section {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.owl-prev{
	left:-25px;
	position:absolute;
	top:35%;
	margin: 0 auto !important;
	padding: 0px !important;
	background:transparent !important;
}
.owl-next{
	right:-25px;
	position:absolute;
	top:35%;
	margin: 0 auto !important;
	padding: 0px !important;
	background:transparent !important;
}
.owl-dots {
	position: absolute;
	width: 100%;
}
.caja-borde{
	padding:20px;
	overflow: hidden;
}
.bordes-redondeados {
    border-radius: 12px;
}
.bordes-redondeados img {
    border-radius: 12px;
}
.item-post-productos{
	width:24%;
	display:inline-block;
	vertical-align: middle;
	padding:12px;
}
.flex-reverse{
	flex-direction: row-reverse;
}
.width-33{
	width:33% !important;
	display: inline-block;
	vertical-align: top;
}
#rev_slider_1_1_wrapper .bt-caja-verde, #rev_slider_2_1_wrapper .bt-caja-verde, #rev_slider_1_1_wrapper .bt-caja-azul, #rev_slider_2_1_wrapper .bt-caja-azul, #rev_slider_1_1_wrapper .bt-caja-rojo, #rev_slider_2_1_wrapper .bt-caja-rojo{
	min-width: auto !important;
}
#wpforms-408-field_1-container, #wpforms-408-field_2-container, #wpforms-408-field_3-container, #wpforms-408-field_4-container, #wpforms-408-field_6-container{
	position:relative;
}
#wpforms-408-field_1-container:after{
	content:'';
	width: 50px;
	height: 41px;
	background: url(../images/form-name.png) #f5c03e no-repeat center left 16px;
	background-size: 20px;
	margin: 0px auto;
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 10px;
	border-radius: 30px 0px 0px 30px;
}
#wpforms-408-field_2-container:after{
	content:'';
	width: 50px;
	height: 41px;
	background: url(../images/form-name.png) #f5c03e no-repeat center left 16px;
	background-size: 20px;
	margin: 0px auto;
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 10px;
	border-radius: 30px 0px 0px 30px;
}
#wpforms-408-field_3-container:after{
	content:'';
	width: 50px;
	height: 41px;
	background: url(../images/form-phone.png) #f5c03e no-repeat center left 16px;
	background-size: 20px;
	margin: 0px auto;
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 10px;
	border-radius: 30px 0px 0px 30px;
}
#wpforms-408-field_4-container:after{
	content:'';
	width: 50px;
	height: 41px;
	background: url(../images/form-mail.png) #f5c03e no-repeat center left 16px;
	background-size: 20px;
	margin: 0px auto;
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 10px;
	border-radius: 30px 0px 0px 30px;
}
#wpforms-408-field_6-container:after{
	content:'';
	width: 50px;
	height: 41px;
	background: url(../images/form-name.png) #f5c03e no-repeat center left 16px;
	background-size: 20px;
	margin: 0px auto;
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 10px;
	border-radius: 30px 0px 0px 30px;
}
div.wpforms-container-full input[type=checkbox], div.wpforms-container-full input[type=radio]{
	border: 0px !important;
}
div.wpforms-container-full .wpforms-form .iti input[type=tel]{
	padding: 12px !important;
	font-size: 13px;
	line-height: 17px;
	color: #606060 !important;
	height: auto;
	border-radius:12px !important;
	border: none !important;
}
.sections-160{
	padding:160px 0px;
}
.sections-120{
	padding:120px 0px;
}
.sections-80{
	padding:80px 0px;
}
.section-ayuda-tabs {
	margin: 0px auto 60px;
  }
  .ayuda-tabs {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
  }
  ul.tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 40%;
	display: inline-block;
	vertical-align: top;
	padding-right: 20px;
  }
  ul.tabs li {
	margin: 0;
    cursor: pointer;
    color: #58595B;
    position: relative;
    background: #F5F5F5;
    padding: 4px 8px !important;
    margin: 8px auto;
	border-radius: 8px;
  }
  ul.tabs li:first-child{
	margin:0px auto 8px;
  }
  ul.tabs li:last-child{
	margin:8px auto 0px;
  }
  ul.tabs li h6 {
	color: #000000;
	margin: 10px auto;
	border: none !important;
	vertical-align: middle;
	display: inline-block;
	width: 100%;
	text-align: left;
  }
  ul.tabs li h6 strong {
	font-weight: 600;
	font-size: 15px;
	line-height: 17px;
  }
  .tab_drawer_heading svg {
	fill: #70767a;
	max-width: 60px;
	width: 60px;
	height: 60px;
	display: inline-block;
	vertical-align: middle;
	margin-right: -5px;
  }
  .tab_drawer_heading:hover {
	color: #333;
  }
  ul.tabs li.active {
	display: block;
  }
  ul.tabs li.active,
  ul.tabs li:hover{
	background:#eb4a15 !important;
  }
  ul.tabs li h5{
	margin:5px auto;
  }
  ul.tabs li.active h5,
  ul.tabs li:hover h5{
	color:#ffffff !important;
  }
  .section-ayuda-tabs .tab_container {
	width: 60%;
	display: inline-block;
	overflow: auto;
	padding: 0px 45px;
  }
  .tab_content {
	padding: 0px !important;
	display: none;
  }
  .tab_drawer_heading {
	display: none;
  }

  ul.tabs li{
	position:relative;
}
ul.tabs li:before {
	display:none;
}
ul.tabs li.active:after {
	content:'';
	width: 0; 
	height: 0; 
	border-left: 15px solid #eb4a15;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    right: -15px;
    top: calc(50% - 15px);
}
.contenido-tab{
	height: 320px;
    display: table-cell;
    vertical-align: middle;
    padding: 0px 20px;
    border: 1px solid #eb4a15 ;
    border-radius: 12px;
}
  
  @media screen and (max-width: 800px) {
	ul.tabs {
	  display: none;
	}
	.tab_container {
	  width: 100% !important;
	  border-left: none;
	}
	.tab_content {
	  padding: 0px;
	}
	.tab_drawer_heading {
		margin: 0;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		background: 0 0;
		display: block;
		box-sizing: border-box;
		text-decoration: none;
		color: #58595B;
		position: relative;
		background: #F5F5F5;
		padding: 16px !important;
		margin: 8px auto;
		border-radius:12px;
	}
	.tab_drawer_heading.d_active, .tab_drawer_heading:hover {
		background: #eb4a15;
		color: #ffffff;
	}
	.d_active {
	  	color: #333;
	}
	.section-ayuda-tabs .tab_container {
		padding: 0px 10px;
	}
	.contenido-tab{
		height: auto;
		display: block;
		margin:20px auto;
	}
	.tab_drawer_heading{
		position:relative;
	}
	.tab_drawer_heading.d_active:after {
		content:'';
		width: 0; 
		height: 0; 
		border-left: 15px solid transparent;
    	border-right: 15px solid transparent;
    	border-top: 15px solid #eb4a15 ;
		position: absolute;
		top: 100%;
		left: calc(50% - 15px);
	}
  }
  .wpforms-container .wpforms-field {
    padding: 10px 0 !important;
  }
  .wpforms-container .wpforms-field-layout{
	padding:0px !important;
  }
  .show-mobile{
	display:none;
  }
  .item-post-cursos{
	width: 46%;
    display: inline-block;
    vertical-align: top;
    padding: 0px;
    margin: 0px 1.5% 30px;
	border:4px solid #ffffff;
  }
  .main-navigation ul ul{
	background: #8e8e8e;
  }
  .main-navigation ul ul a {
    padding: 12px;
	color:#ffffff;
	border-radius:0px;
}
.main-navigation ul ul a:hover {
	color:#000000;
	background:#ffffff;
}
.redes-sociales {
	text-align: left;
	display:inline-block;
}
.redes-sociales a {
    display: inline-block;
    margin: 1px;
    padding: 0px;
}
.redes-sociales a:hover{
	opacity:0.6 !important;
}
.redes-sociales a img {
    max-width: 32px !important;
    margin: 0 auto;
    padding: 0px !important;
}
.fondo-gradiente-azul {
    background-color: #0568DD; /* fallback */
    background-image: linear-gradient(
    90deg,
    #0568DD 0%,
    #0B4583 69%
);
/* ================= ESTILOS PERSONALIZADOS TARJETAS DE PRODUCTO - ROLORTIZ ================= */
/* Contenedor principal del producto en el loop */
.woocommerce ul.products::before{
	display:none !important;
}
.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e5e7ea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    margin-bottom: 30px;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
/* Contenedor de la imagen del producto con fondo de cuadrícula */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
    position: relative;
    text-decoration: none;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}
/* Información del producto personalizada */
.rolortiz-producto-info {
    padding: 20px;
    background: #fff;
}
/* Código del producto */
.rolortiz-producto-info .producto-codigo {
    font-size: 14px;
    line-height: 1.4;
    color: #888;
    margin: 0 0 8px;
    font-family: 'Lexend', sans-serif;
    text-align: left;
}
.rolortiz-producto-info .producto-codigo .codigo-label {
    color: #666;
    font-weight: 500;
}
/* Nombre del producto */
.rolortiz-producto-info .producto-nombre {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    font-family: 'Lexend', sans-serif;
    text-align: left;
}
.rolortiz-producto-info .producto-nombre a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.rolortiz-producto-info .producto-nombre a:hover {
    color: #0C3A5D;
    opacity: 1;
}
/* Sección de precios */
.rolortiz-producto-info .producto-precios {
    margin-bottom: 20px;
}
.rolortiz-producto-info .precio-label {
    font-size: 14px;
    line-height: 1.4;
    color: #E53935;
    font-weight: 500;
    margin: 0 0;
    font-family: 'Lexend', sans-serif;
    text-align: left;
}
.rolortiz-producto-info .precios-contenedor {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.rolortiz-producto-info .precio-oferta {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #0C3A5D;
    font-family: 'Lexend', sans-serif;
}
.rolortiz-producto-info .precio-oferta .woocommerce-Price-currencySymbol {
    font-size: 0.8em;
}
.rolortiz-producto-info .precio-regular-tachado {
    font-size: 18px;
    line-height: 1.2;
    color: #999;
    text-decoration: line-through;
    font-family: 'Lexend', sans-serif;
}
/* Botones */
.rolortiz-producto-info .producto-botones {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Botón Cotizar con WhatsApp */
.rolortiz-producto-info .btn-cotizar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #075CB0;
    padding: 6px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
    flex: 1;
    gap: 8px;
}
.rolortiz-producto-info .btn-cotizar:hover {
    background: linear-gradient(135deg, #0C3A5D 0%, #072842 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 58, 93, 0.3);
    opacity: 1;
    color: #fff;
}
.rolortiz-producto-info .btn-cotizar-texto {
    flex: 1;
    text-align: center;
}
.rolortiz-producto-info .btn-cotizar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.rolortiz-producto-info .btn-cotizar-whatsapp svg {
    width: 44px;
    height: 44px;
}
/* Botón Ver Producto / Descarga */
.rolortiz-producto-info .btn-ver-producto {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #E53935;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.rolortiz-producto-info .btn-ver-producto:hover {
    background: #C62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    opacity: 1;
}
.rolortiz-producto-info .btn-ver-producto svg {
    width: 24px;
    height: 24px;
}
/* Grid de productos WooCommerce */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0;
    margin: 0;
}
.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}
/* Ocultar elementos por defecto de WooCommerce que ya no necesitamos */
.woocommerce ul.products li.product .onsale {
    display: none !important;
}
/* Responsive */
@media screen and (max-width: 1200px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 900px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    .rolortiz-producto-info .precio-oferta {
        font-size: 26px;
    }
    .rolortiz-producto-info .producto-nombre {
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rolortiz-producto-info {
        padding: 15px 20px 20px;
    }
    .rolortiz-producto-info .producto-botones {
        flex-direction: row;
    }
    .rolortiz-producto-info .btn-cotizar {
        padding: 10px 15px;
        font-size: 14px;
    }
    .rolortiz-producto-info .btn-cotizar-whatsapp {
        width: 32px;
        height: 32px;
    }
    .rolortiz-producto-info .btn-ver-producto {
        width: 44px;
        height: 44px;
    }
}

/* ============== ESTILOS PÁGINA DETALLE DE PRODUCTO - ROLORTIZ ================ */
/* Contenedor principal del detalle */
.woocommerce div.product {
    position: relative;
}
/* Layout del producto - 3 columnas */
.woocommerce div.product .woocommerce-product-gallery {
    width: 35% !important;
    float: left;
}
.woocommerce div.product .summary {
    width: 65% !important;
    float: right;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-left: 30px;
}
/* Galería de imágenes */
.woocommerce div.product .woocommerce-product-gallery .flex-viewport {
    background-color: #fdf5f5;
    background-image: 
        linear-gradient(rgba(200, 100, 100, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 100, 100, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 12px;
    padding: 20px;
}
.woocommerce div.product .woocommerce-product-gallery .flex-viewport img {
    mix-blend-mode: multiply;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    background-color: #fdf5f5;
    background-image: 
        linear-gradient(rgba(200, 100, 100, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 100, 100, 0.05) 1px, transparent 1px);
    background-size: 10px 10px;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li:hover,
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li.flex-active {
    border-color: #0C3A5D;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img {
    mix-blend-mode: multiply;
}
/* Contenedor info + caja precio */
.rolortiz-detalle-producto {
    display: flex;
    width: 100%;
    gap: 25px;
}
/* Información principal del producto */
.detalle-info-principal {
    flex: 1;
    min-width: 0;
}
.detalle-codigo {
    font-size: 14px;
    line-height: 1.4;
    color: #888;
    margin: 0 0 10px;
    font-family: 'Lexend', sans-serif;
}
.detalle-codigo .codigo-label {
    color: #666;
    font-weight: 500;
}
.detalle-nombre {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    font-family: 'Lexend', sans-serif;
}
.detalle-categorias {
    margin-bottom: 20px;
}
.detalle-categorias a {
    display: inline-block;
    background: #0C3A5D;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
    transition: background 0.3s ease;
    margin-right: 8px;
    margin-bottom: 8px;
}
.detalle-categorias a:hover {
    background: #1E5A8A;
    opacity: 1;
}
/* Tabla de especificaciones */
.detalle-especificaciones,
.detalle-especificaciones-acf {
    margin-bottom: 20px;
}
.tabla-especificaciones {
    width: 100%;
    border-collapse: collapse;
}
.tabla-especificaciones tr {
    border-bottom: 1px solid #f0f0f0;
}
.tabla-especificaciones tr:last-child {
    border-bottom: none;
}
.tabla-especificaciones th {
    text-align: left;
    padding: 10px 15px 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    font-family: 'Lexend', sans-serif;
    width: 40%;
}
.tabla-especificaciones td {
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    font-family: 'Lexend', sans-serif;
}
/* Descripción corta */
.detalle-descripcion-corta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}
.detalle-descripcion-corta p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
/* Caja de precio y cotización */
.detalle-caja-precio {
    width: 280px;
    flex-shrink: 0;
    position: relative;
}
.caja-precio-contenido {
    background: #fff;
    border: 2px solid #0C3A5D;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    z-index: 2;
}
.detalle-caja-precio .precio-seccion {
    margin-bottom: 20px;
}
.detalle-caja-precio .precio-label {
    font-size: 14px;
    line-height: 1.4;
    color: #E53935;
    font-weight: 500;
    margin: 0 0 5px;
    font-family: 'Lexend', sans-serif;
}
.detalle-caja-precio .precios-contenedor {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.detalle-caja-precio .precio-oferta {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #0C3A5D;
    font-family: 'Lexend', sans-serif;
}
.detalle-caja-precio .precio-oferta .woocommerce-Price-currencySymbol {
    font-size: 0.75em;
}
.detalle-caja-precio .precio-regular-tachado {
    font-size: 18px;
    line-height: 1.2;
    color: #999;
    text-decoration: line-through;
    font-family: 'Lexend', sans-serif;
}
/* Botón cotizar en detalle */
.btn-cotizar-detalle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #1E5A8A 0%, #0C3A5D 100%);
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
}
.btn-cotizar-detalle:hover {
    background: linear-gradient(135deg, #0C3A5D 0%, #072842 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 58, 93, 0.3);
    opacity: 1;
    color: #fff;
}
.btn-cotizar-detalle svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
/* Imagen decorativa del camión */
.caja-precio-decoracion {
    position: absolute;
    right: -120px;
    bottom: -30px;
    width: 250px;
    z-index: 1;
    pointer-events: none;
}
.camion-decorativo {
    width: 100%;
    height: auto;
    opacity: 0.9;
}
/* Ocultar elementos por defecto de WooCommerce en detalle */
.woocommerce div.product .woocommerce-product-rating,
.woocommerce div.product .product_meta,
.woocommerce div.product form.cart {
    display: none !important;
}
/* Productos relacionados */
.woocommerce div.product .related.products {
    clear: both;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid #f0f0f0;
}
.woocommerce div.product .related.products > h2 {
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Lexend', sans-serif;
}
.woocommerce div.product .related.products > h2 .titulo-destacado {
    font-weight: 700;
}
/* Responsive para productos grid */
@media screen and (max-width: 1200px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    .caja-precio-decoracion {
        display: none;
    }
}
@media screen and (max-width: 992px) {
    .woocommerce div.product .woocommerce-product-gallery {
        width: 100% !important;
        float: none;
        margin-bottom: 30px;
    }
    .woocommerce div.product .summary {
        width: 100% !important;
        float: none;
        padding-left: 0;
    }
    .rolortiz-detalle-producto {
        flex-direction: column;
    }
    .detalle-caja-precio {
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 900px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    .rolortiz-producto-info .precio-oferta {
        font-size: 26px;
    }
    .rolortiz-producto-info .producto-nombre {
        font-size: 16px;
    }
    .detalle-nombre {
        font-size: 24px;
    }
}
@media screen and (max-width: 600px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rolortiz-producto-info {
        padding: 15px 20px 20px;
    }
    .rolortiz-producto-info .producto-botones {
        flex-direction: row;
    }
    .rolortiz-producto-info .btn-cotizar {
        padding: 10px 15px;
        font-size: 14px;
    }
    .rolortiz-producto-info .btn-cotizar-whatsapp {
        width: 32px;
        height: 32px;
    }
    .rolortiz-producto-info .btn-ver-producto {
        width: 44px;
        height: 44px;
    }
    .detalle-nombre {
        font-size: 22px;
    }
    .detalle-caja-precio .precio-oferta {
        font-size: 28px;
    }
    .woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li {
        width: 60px;
        height: 60px;
    }
}
/* ======== BREADCRUMB DE WOOCOMMERCE - ROLORTIZ ======== */
.rolortiz-breadcrumb-container {
    padding: 15px 0;
}
.rolortiz-breadcrumb {
    font-size: 13px;
    line-height: 1.5;
    font-family: 'Lexend', sans-serif;
}
.rolortiz-breadcrumb .breadcrumb-item {
    color: #666;
}
.rolortiz-breadcrumb .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.rolortiz-breadcrumb .breadcrumb-item a:hover {
    color: #0C3A5D;
    opacity: 1;
}
.rolortiz-breadcrumb .breadcrumb-separator {
    color: #999;
    margin: 0 8px;
}
.rolortiz-breadcrumb .breadcrumb-item:last-child {
    color: #0C3A5D;
    font-weight: 600;
}
/* ========= SHORTCODE: BANNER SUPERIOR - ROLORTIZ ========== */
.rolortiz-banner {
    width: 100%;
}
.rolortiz-banner .width-1200 {
    text-align: center;
}
/* ========= SHORTCODE: PRODUCTOS RECIENTES CAROUSEL - ROLORTIZ ========== */
.rolortiz-productos-recientes {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
}
.productos-recientes-titulo {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
    color: #333;
    margin: 0 0 30px;
    font-family: 'Lexend', sans-serif;
    text-align: left;
}
.productos-recientes-titulo .titulo-destacado {
    font-weight: 700;
}
.productos-carousel-container {
    position: relative;
    padding: 0 40px;
}
.productos-carousel .producto-carousel-item {
    background: #fff;
    border: 2px solid #0C3A5D;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.productos-carousel .producto-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.productos-carousel .producto-imagen-link {
    display: block;
    padding: 20px;
    background-color: #fdf5f5;
    background-image: 
        linear-gradient(rgba(200, 100, 100, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 100, 100, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    text-decoration: none;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.productos-carousel .producto-imagen-link img {
    max-width: 100%;
    max-height: 150px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.productos-carousel .producto-carousel-info {
    padding: 15px 20px 20px;
    background: #fff;
}
.productos-carousel .producto-codigo {
    font-size: 13px;
    line-height: 1.4;
    color: #888;
    margin: 0 0 5px;
    font-family: 'Lexend', sans-serif;
}
.productos-carousel .producto-codigo .codigo-label {
    color: #666;
    font-weight: 500;
}
.productos-carousel .producto-nombre {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    font-family: 'Lexend', sans-serif;
    min-height: 40px;
}
.productos-carousel .producto-nombre a {
    color: inherit;
    text-decoration: none;
}
.productos-carousel .producto-nombre a:hover {
    color: #0C3A5D;
    opacity: 1;
}
.productos-carousel .producto-precios {
    margin-bottom: 15px;
}
.productos-carousel .precio-label {
    font-size: 12px;
    line-height: 1.4;
    color: #E53935;
    font-weight: 500;
    margin: 0 0 3px;
    font-family: 'Lexend', sans-serif;
}
.productos-carousel .precios-contenedor {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.productos-carousel .precio-oferta {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #0C3A5D;
    font-family: 'Lexend', sans-serif;
}
.productos-carousel .precio-regular-tachado {
    font-size: 14px;
    line-height: 1.2;
    color: #999;
    text-decoration: line-through;
    font-family: 'Lexend', sans-serif;
}
.productos-carousel .producto-botones {
    display: flex;
    align-items: center;
    gap: 8px;
}
.productos-carousel .btn-cotizar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E5A8A 0%, #0C3A5D 100%);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
    flex: 1;
    gap: 6px;
}
.productos-carousel .btn-cotizar:hover {
    background: linear-gradient(135deg, #0C3A5D 0%, #072842 100%);
    opacity: 1;
    color: #fff;
}
.productos-carousel .btn-cotizar-texto {
    flex: 1;
    text-align: center;
}
.productos-carousel .btn-cotizar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.productos-carousel .btn-ver-producto {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #E53935;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.productos-carousel .btn-ver-producto:hover {
    background: #C62828;
    opacity: 1;
}
/* Flechas de navegación carousel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #0C3A5D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #0C3A5D;
    padding: 0;
}
.carousel-nav:hover {
    background: #0C3A5D;
    color: #fff;
}
.carousel-nav.carousel-prev {
    left: 0;
}
.carousel-nav.carousel-next {
    right: 0;
}
/* ========== SHORTCODE: LOCALES/SUCURSALES - ROLORTIZ =========== */
.rolortiz-locales-section {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
}
.locales-titulo {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
    color: #333;
    margin: 0 0 30px;
    font-family: 'Lexend', sans-serif;
    text-align: center;
}
.locales-titulo strong {
    font-weight: 700;
}
.locales-container {
    position: relative;
}
.locales-slider-container {
    padding: 0 40px;
}
.locales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.local-item {
    background: #0C3A5D;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.local-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.local-icono {
    margin-bottom: 10px;
}
.local-icono svg {
    width: 32px;
    height: 32px;
    fill: #E53935;
}
.local-ciudad {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    font-family: 'Lexend', sans-serif;
}
.local-telefonos {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px;
    font-family: 'Lexend', sans-serif;
}
.local-direccion {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px;
    font-family: 'Lexend', sans-serif;
}
.local-btn-contacto {
    display: inline-block;
    background: transparent;
    border: 2px solid #E53935;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
}
.local-btn-contacto:hover {
    background: #E53935;
    color: #fff;
    opacity: 1;
}
/* ========= SHORTCODE: SECCIÓN DE CONTACTO - ROLORTIZ =========== */
.rolortiz-contacto-section {
    padding: 60px 0;
    background: #f5f5f5;
}
.contacto-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.contacto-izquierda {
    flex: 1;
    max-width: 400px;
}
.contacto-titulo {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
    color: #0C3A5D;
    margin: 0 0 10px;
    font-family: 'Lexend', sans-serif;
}
.contacto-titulo strong {
    font-weight: 700;
}
.contacto-subtitulo {
    font-size: 20px;
    line-height: 1.4;
    color: #333;
    margin: 0 0 15px;
    font-family: 'Lexend', sans-serif;
}
.contacto-descripcion {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 20px;
    font-family: 'Lexend', sans-serif;
}
.contacto-imagen {
    margin-top: 20px;
}
.contacto-imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.contacto-derecha {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contacto-sin-form {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
}
/* ========== RESPONSIVE PARA NUEVOS SHORTCODES ============ */
@media screen and (max-width: 1024px) {
    .locales-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .locales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contacto-container {
        flex-direction: column;
    }
    .contacto-izquierda {
        max-width: 100%;
    }
    .contacto-derecha {
        width: 100%;
    }
    .productos-recientes-titulo,
    .locales-titulo {
        font-size: 24px;
        text-align: center;
    }
}
@media screen and (max-width: 600px) {
    .locales-grid {
        grid-template-columns: 1fr;
    }
    .productos-carousel-container,
    .locales-slider-container {
        padding: 0 30px;
    }
    .carousel-nav {
        width: 30px;
        height: 30px;
    }
    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
    .rolortiz-productos-recientes,
    .rolortiz-locales-section {
        padding: 30px 0;
    }
    .contacto-titulo {
        font-size: 22px;
    }
    .contacto-derecha {
        padding: 20px;
    }
}
/* ======== CONTENEDOR DE MÓDULOS EN PÁGINA DE PRODUCTO ========== */
.rolortiz-modulos-producto {
    width: 100%;
    clear: both;
}
.rolortiz-modulos-producto .rolortiz-productos-recientes {
    border-top: 1px solid #f0f0f0;
    padding-top: 50px;
    margin-top: 30px;
}
.rolortiz-modulos-producto .rolortiz-contacto-section {
    margin-top: 0;
}
.rolortiz-modulos-producto .rolortiz-locales-section {
    background: #fff;
    padding-bottom: 60px;
}
