/*** 
====================================================================
  CSS COMPLETO EPIC PCE - MANTENIENDO ESTRUCTURA ORIGINAL
  Totalmente detallado y específico
====================================================================
***/

/* ====================================================
   1. FONTS E IMPORTS - MANTENIENDO ESTRUCTURA EXACTA
==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url(../css/font-awesome-all.css);
@import url(../css/flaticon.css);
@import url(../css/owl.css);
@import url(../css/bootstrap.css);
@import url(../css/jquery.fancybox.min.css);
@import url(../css/animate.css);
@import url(../css/jquery-ui.css);
@import url(../css/jquery.bootstrap-touchspin.css);

/* ====================================================
   2. RESET COMPLETO - COPIADO EXACTO
==================================================== */
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* ====================================================
   3. GLOBAL SETTINGS - TODOS LOS ESTILOS ORIGINALES
==================================================== */
body {
  font-size: 15px;
  color: #848484;
  line-height: 26px;
  font-weight: 400;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding: 0px;
    margin: 0 auto;
  }
}

.container-fluid {
  padding: 0px;
  margin: 0 auto;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.small-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 15px;
}

.boxed_wrapper {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  background: #ffffff;
}

a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  color: inherit;
}

a:hover {
  text-decoration: none;
  outline: none;
  color: #dc542c;
}

a:focus {
  outline: none;
  text-decoration: none;
}

input, button, select, textarea {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  outline: none;
}

ul, li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

input {
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  line-height: 26px;
  color: #615e5d;
  margin-bottom: 15px;
  font-style: normal;
  transition: all 500ms ease;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
  line-height: 1.3;
  color: #2b3c6b;
}

.centred {
  text-align: center;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.gray-bg {
  background: #f2f1f0;
}

.black-bg {
  background: #3b3634;
}

.sec-pad {
  padding: 144px 0px 150px 0px;
}

figure {
  margin: 0px;
  display: block;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition: all 500ms ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(220, 84, 44, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(220, 84, 44, 0.1);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(220, 84, 44, 0);
  }
}

/* ====================================================
   4. BOTONES - TODAS LAS VARIANTES
==================================================== */
.theme-btn {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  padding: 12px 30px;
  background-color: #dc542c;
  line-height: 26px;
  color: #ffffff !important;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: all 500ms ease;
  z-index: 1;
  border-radius: 25px;
  letter-spacing: 0.7px;
  border: 2px solid #dc542c;
  overflow: hidden;
}

.theme-btn:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #253b70;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  border-radius: 25px;
  letter-spacing: 0.7px;
}

.theme-btn:hover:before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.theme-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 84, 44, 0.3);
}

/* ====================================================
   5. PAGINATION
==================================================== */
.pagination {
  position: relative;
  display: block;
  margin-top: 30px;
  text-align: center;
}

.pagination li {
  display: inline-block;
  margin: 0px 5px;
  list-style: none;
}

.pagination li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  height: 60px;
  font-weight: 700;
  width: 60px;
  line-height: 60px;
  text-align: center;
  color: #2b3c6b;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.active {
  background: #dc542c;
  color: #ffffff;
  border-color: #dc542c;
}

/* ====================================================
   6. PRELOADER COMPLETO
==================================================== */
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/preloader.gif);
}

/* ====================================================
   7. SCROLL TO TOP COMPLETO
==================================================== */
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 20px;
  border-radius: 50%;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: #dc542c;
  transition: .5s ease;
  border: 2px solid #dc542c;
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top:hover {
  background: #253b70;
  transform: translateY(-3px);
}

.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

/* ====================================================
   8. SEC-TITLE COMPLETO CON TODAS LAS VARIANTES
==================================================== */
.sec-title h5 {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 26px;
  color: #dc542c;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  margin-bottom: 13px;
  padding: 0px 50px 0px 50px;
}

.sec-title h5:before {
  position: absolute;
  content: '';
  background: #dc542c;
  width: 30px;
  height: 2px;
  left: 0px;
  bottom: 11px;
}

.sec-title h5:after {
  position: absolute;
  content: '';
  background: #dc542c;
  width: 30px;
  height: 2px;
  right: 0px;
  bottom: 11px;
}

.sec-title.style-two h5:after {
  display: none;
}

.sec-title.style-two h5 {
  padding-right: 0px;
}

.sec-title h1 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #2b3c6b;
}

.sec-title.centred h1 {
  text-align: center;
}

.sec-title.centred h5 {
  text-align: center;
}

/* ====================================================
   9. MAIN HEADER COMPLETO
==================================================== */
.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  background: #ffffff;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  left: 0px;
  top: 0px;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  z-index: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.main-header .header-top {
  position: relative;
  display: block;
  background: #253b70;
  width: 100%;
  padding: 16px 0px 17px 0px;
}

.main-header .header-top .social-links {
  float: left;
}

.main-header .header-top .header-info {
  float: right;
}

.main-header .header-top .social-list li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.main-header .header-top .social-list li:last-child {
  margin-right: 0px;
}

.main-header .header-top .social-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
}

.main-header .header-top .social-list li a:hover,
.main-header .header-top .header-info li a:hover {
  color: #dc542c;
}

.main-header .header-top .header-info li {
  position: relative;
  display: inline-block;
  margin-right: 32px;
  padding: 0px 0px 0px 22px;
}

.main-header .header-top .header-info li:last-child {
  margin-right: 0px;
}

.main-header .header-top .header-info li:before {
  position: absolute;
  content: '';
  border: 1px dashed #59688d;
  height: 20px;
  width: 1px;
  top: 5px;
  right: -18px;
}

.main-header .header-top .header-info li:last-child:before {
  display: none;
}

.main-header .header-top .header-info li i {
  position: absolute;
  left: 0px;
  top: 7px;
  font-size: 14px;
  color: #dc542c;
}

.main-header .header-top .header-info li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #d3d8e2;
}

.main-header .outer-content li {
  position: relative;
  display: inline-block;
}

.main-header .header-bottom {
  position: relative;
  padding: 10px 0;
}

.main-header .header-bottom .container {
  position: relative;
}

.main-header .logo-box {
  float: left;
}

.main-header .logo-box .logo {
  position: relative;
  display: inline-block;
  padding: 26px 0px;
}

.main-header .logo-box .logo img {
  max-height: 60px;
  width: auto;
}

.main-header .nav-outer {
  float: right;
}

.main-header .menu-area {
  float: left;
  position: relative;
}

.main-header .menu-area .main-menu {
  display: block;
}

/* ====================================================
   10. MAIN MENU COMPLETO CON TODOS LOS ESTILOS
==================================================== */
.main-menu {
  position: relative;
  display: block;
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navigation {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  margin: 0px 18px;
}

.main-menu .navigation > li:first-child {
  margin-left: 0px;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  color: #2b3c6b;
  line-height: 26px;
  font-weight: 700;
  opacity: 1;
  text-transform: capitalize;
  padding: 47px 0px 42px 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {
  color: #dc542c;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 250px;
  z-index: 100;
  display: none;
  background: #ffffff;
  border-top: 3px solid #dc542c;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  padding: 7px 30px;
  border-bottom: 1px solid #e5e5e5;
  transition: all 500ms ease;
}

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

.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  font-family: 'Montserrat', sans-serif;
  padding: 6px 0px;
  line-height: 24px;
  font-size: 15px;
  color: #2b3c6b;
  font-weight: 700;
  text-align: left;
  text-transform: capitalize;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li:hover {
  background: #dc542c;
  border-bottom: 1px solid #dc542c;
}

.main-menu .navigation > li > ul > li:hover a {
  color: #ffffff;
  padding-left: 10px;
}

.main-menu .navigation > li > ul > li:last-child:hover {
  border-bottom: none;
}

.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  display: block;
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 18px;
  border: 1px solid #ffffff;
  color: #ffffff;
  width: 35px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.navbar-header {
  display: none;
}

/* Sub-menu styles */
.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0%;
  width: 230px;
  z-index: 100;
  display: none;
  padding: 0px 0px;
  background-color: #ffffff;
  border-top: 3px solid #dc542c;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0;
  display: block;
}

.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  margin: 0px;
  border-bottom: 1px solid #e5e5e5;
}

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

.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 25px !important;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  text-transform: capitalize;
  color: #2b3c6b !important;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a {
  color: #ffffff !important;
  background: #dc542c;
  padding-left: 35px !important;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
  position: absolute;
  content: "\f105";
  font-size: 16px;
  color: #222;
  top: 6px;
  right: -12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li.dropdown:hover > a:after {
  color: #ffffff;
}

/* Sticky header menu styles */
.sticky-header .main-menu .navigation > li {
  margin: 0px !important;
}

.sticky-header .main-menu .navigation > li:before {
  display: none !important;
}

.sticky-header .main-menu .navigation > li > a {
  padding: 14px 30px 16px 30px !important;
}

.sticky-header .main-menu .navigation > li > a {
  color: #222222;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  background: #dc542c;
  color: #ffffff !important;
}

.sticky-header .logo-box {
  position: relative;
  float: left;
  margin-top: 10px;
}

.sticky-header .menu-area {
  position: relative;
  float: right !important;
}

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

/* ====================================================
   11. MAIN SLIDER COMPLETO
==================================================== */
.main-slider {
  position: relative;
}

.main-slider.style-two .slide {
  position: relative;
  padding: 195px 0px 170px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.main-slider.style-two .slide:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.0);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.main-slider .content-box {
  position: relative;
  display: block;
  max-width: 700px;
  width: 100%;
}

.main-slider h3 {
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 35px;
  color: #dc542c;
  font-weight: 900;
  opacity: 0;
  margin-bottom: 11px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}

.main-slider .active h3 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 1000ms;
}

.main-slider h1 {
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: #2b3c6b;
  font-weight: 900;
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
}

.main-slider .active h1 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1500ms;
}

.main-slider.style-two h1 {
  color: #fff;
  text-shadow: 5px 6px 0px #6aa9c2;
}

.main-slider .text {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #454442;
  margin-bottom: 37px;
  opacity: 0;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
}

.main-slider .active .text {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1500ms;
}

.main-slider .btn-box {
  opacity: 0;
  -webkit-transition: all 1800ms ease;
  -moz-transition: all 1800ms ease;
  -ms-transition: all 1800ms ease;
  -o-transition: all 1800ms ease;
  transition: all 1800ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.main-slider .active .btn-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 1800ms;
}

/* Slider navigation */
.main-slider .owl-dots {
  position: absolute;
  text-align: center;
  left: 50%;
  bottom: 52px;
  display: none;
}

.main-slider .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.50);
  cursor: pointer;
  margin: 0px 3px;
  transition: all 500ms ease;
}

.main-slider .owl-dots .owl-dot.active span,
.main-slider .owl-dots .owl-dot:hover span {
  background: #ffffff;
  border: none;
}

.main-slider .owl-nav {
  position: absolute;
  left: 0px;
  top: 50%;
  z-index: 1;
  width: 100%;
  margin-top: -20px;
}

.main-slider .owl-theme .owl-controls .owl-nav [class*="owl-"] {
  position: absolute;
  color: rgba(255, 255, 255, 0.10);
}

.main-slider .nav-style-two .owl-nav .owl-prev {
  left: 70px;
}

.main-slider .owl-nav .owl-prev {
  position: absolute;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  background: #dc542c;
  width: 75px;
  height: 75px;
  line-height: 75px;
  font-weight: 700;
  margin: 0px;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-next {
  position: absolute;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  background: #dc542c;
  width: 75px;
  height: 75px;
  line-height: 75px;
  font-weight: 700;
  margin: 0px;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider .nav-style-two .owl-nav .owl-next {
  right: 70px;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover {
  background-color: #fff;
  color: #b2b2b2;
}

/* ====================================================
   12. ANIMACIONES GLOBALES
==================================================== */
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(-8px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(-8px);
  }
}

@keyframes zoom-fade {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scale(1);
  }
}

/* ====================================================
   13. ABOUT SECTION COMPLETO
==================================================== */
.about-section {
  position: relative;
  display: block;
  padding: 144px 0px 250px 0px;
}

.about-section .anim-icon .icon-2 {
  background: url(../images/epic-patterns.png);
  width: 188px;
  height: 192px;
  top: 70px;
  right: 110px;
  background-repeat: no-repeat;
  animation: zoomIn 1s;
}

.about-section .image-box {
  position: relative;
  display: block;
  margin: 6px 30px 0px 140px;
}

.about-section .image-box:before {
  position: absolute;
  content: '';
  background-image: url('/images/epic-patterns.png');
  width: 215px;
  height: 215px;
  border-radius: 50%;
  left: -185px;
  top: 55px;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.about-section .image-box .image {
  position: relative;
  display: block;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-box .image img {
  width: 100%;
}

.about-section .image-box .image-1 {
  position: relative;
  display: block;
  border-radius: 30px;
}

.about-section .image-box .image-1 img {
  border-radius: 30px;
}

.about-section .image-box .image-2 {
  position: absolute;
  left: -85px;
  bottom: -125px;
  border: 15px solid #fff;
  border-radius: 30px;
}

.about-section .content-box .sec-title {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.about-section .content-box .bold-text {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #4c4c4c;
  font-weight: 400;
  margin-bottom: 15px;
}

.about-section .content-box p {
  position: relative;
  display: block;
  margin-bottom: 46px;
}

.about-section .anim-icon .icon-1 {
  background: url(../images/icons/anim-icon-1.png);
  width: 210px;
  height: 275px;
  left: 60px;
  top: 40px;
  background-repeat: no-repeat;
}

.about-section .anim-icon .icon-3 {
  background: url(../images/icons/anim-icon-3.png);
  width: 102px;
  height: 198px;
  bottom: -40px;
  right: 150px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
  z-index: 1;
}

/* ====================================================
   14. OFFER SECTION COMPLETO
==================================================== */
.offer-section.pt-50.pb-50.centred {
  position: relative;
  display: block;
  background: #f1f0e9;
  padding: 50px 0;
}

.offer-section .anim-icon .icon-1 {
  background: url(../images/epic-patterns.png);
  width: 200px;
  height: 200px;
  left: 120px;
  bottom: -40px;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
  z-index: 1;
}

.offer-section .sec-title {
  margin-bottom: 30px;
}

.offer-section .sec-title h5 {
  color: #dc542c;
}

.offer-section .sec-title h1 {
  color: #2b3c6b;
}

/* ====================================================
   15. WHAT WE OFFER SECTION COMPLETO (TUS SERVICIOS)
==================================================== */
.what-we-offer-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.what-we-offer-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.what-we-offer-section .row {
  margin-left: 0;
  margin-right: 0;
}

.what-we-offer-section .col-md-6 {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.text-column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.text-content {
  max-width: 500px;
  z-index: 2;
  position: relative;
}

.offer-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.offer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.action-btn {
  display: inline-block;
  padding: 12px 30px;
  /* background-color: #007bff; */
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.action-btn:hover {
  /* background-color: #0056b3; */
  transform: translateY(-2px);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  color: white;
  text-decoration: none;
}

.what-we-offer-section .image-column {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.what-we-offer-section .image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.bg-light-blue {
  background-color: #fff;
}

.bg-light-green {
  background-color: #fff;
}

.bg-light-yellow {
  background-color: #fff;
}

.bg-light-purple {
  background-color: #fff;
}

.epic-fut-btn {
  background-color: #682a2c;
}

.epic-language-btn {
  background-color: #e4a632;
}

.epic-15-btn {
  background-color: #dc4030;
}

.epic-padel-btn {
  background-color: #74a444;
}

.epic-fut-btn:hover {
  background-color: #fff;
  color: #682a2c;
  border: 1px solid #682a2c;
  scale: 1.01;
}

.epic-language-btn:hover {
  background-color: #fff;
  color: #e4a632;
  border: 1px solid #e4a632;
  scale: 1.01;
}

.epic-15-btn:hover {
  background-color: #fff;
  color: #dc4030;
  border: 1px solid #dc4030;
  scale: 1.01;
}

.epic-padel-btn:hover {
  background-color: #fff;
  color: #74a444;
  border: 1px solid #74a444;
  scale: 1.01;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

/* ====================================================
   16. TESTIMONIAL SECTION COMPLETO
==================================================== */
.testimonial-style-two {
  position: relative;
  display: block;
  background: #f0efe9;
  padding: 144px 0px 143px 0px;
}

.testimonial-style-two .anim-icon .icon-1 {
  background: url(../images/epic-patterns.png);
  width: 285px;
  height: 287px;
  right: 30px;
  bottom: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: float-bob-y 2s infinite linear;
}

.testimonial-style-two .sec-title.centred {
  margin-bottom: 60px;
}

.testimonial-carousel.owl-carousel.owl-theme {
  position: relative;
}

.testimonial-block-two {
  position: relative;
}

.testimonial-block-two .inner-box {
  position: relative;
  display: block;
  background: #fff;
  padding: 51px 30px 60px 50px;
  border-radius: 20px;
}

.testimonial-block-two .inner-box .text {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #2b3c6b;
  margin-bottom: 20px;
  padding-bottom: 51px;
  z-index: 1;
}

.testimonial-block-two .inner-box .text:before {
  position: absolute;
  content: '';
  background: url(../images/icons/border-shap.png);
  width: 100%;
  height: 20px;
  left: 0px;
  bottom: 0px;
  background-repeat: no-repeat;
}

.testimonial-block-two .inner-box .text:after {
  position: absolute;
  content: "\f109";
  font-family: Flaticon;
  font-size: 60px;
  line-height: 60px;
  color: #e3f4f9;
  left: 50%;
  margin-left: -50px;
  top: 30px;
  z-index: -1;
}

.testimonial-style-two .owl-item:nth-child(odd) .testimonial-block-two .inner-box .text:after {
  color: #ffeae8;
}

.testimonial-block-two .inner-box .author-info {
  position: relative;
  display: block;
  padding: 17px 0px 11px 95px;
}

.testimonial-block-two .inner-box .author-info .author-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 75px;
  height: 75px;
  overflow: hidden;
  border-radius: 50%;
}

.testimonial-block-two .inner-box .author-info .author-thumb img {
  width: 100%;
  border-radius: 50%
}

.testimonial-block-two .inner-box .author-info h5 {
  position: relative;
  display: block;
  font-size: 18px;
  color: #43b3d9;
  font-weight: 700;
  margin-bottom: 0px;
}

.testimonial-block-two .inner-box .author-info .designation {
  position: relative;
  display: block;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-style-two .owl-item:nth-child(odd) .testimonial-block-two .inner-box .author-info h5 {
  color: #dc542c;
}

.testimonial-style-two .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 65px;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot span {
  border: 3px solid #c5c7cc;
  height: 14px;
  width: 14px;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot.active span,
.testimonial-style-two .owl-theme .owl-dots .owl-dot span:hover {
  background: transparent;
  border-color: #dc542c;
}

/* ====================================================
   17. CONTACT INFO SECTION COMPLETO
==================================================== */
.contact-info-section.sec-pad.centred {
  position: relative;
  display: block;
  padding: 144px 0px 100px 0px;
}

.contact-info-section .sec-title {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.contact-info-section .single-info-box .inner-box {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 89px 15px 76px 15px;
  box-shadow: 0 20px 50px rgba(229, 229, 229, 0.8);
}

.contact-info-section .single-info-box .inner-box .icon-box {
  position: relative;
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  color: #dc542c;
  font-weight: 400;
  margin-bottom: 33px;
}

.contact-info-section .single-info-box:hover .inner-box .icon-box:before {
  transform: rotate(25deg);
}

.contact-info-section .info-column:nth-child(2) .single-info-box .inner-box .icon-box {
  color: #43b3d9;
}

.contact-info-section .info-column:last-child .single-info-box .inner-box .icon-box {
  color: #dc542c;
}

.contact-info-section .single-info-box .inner-box .icon-box:before {
  position: absolute;
  content: '';
  background: url(../images/icons/icon-3.png);
  width: 65px;
  height: 70px;
  right: -20px;
  top: -10px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.contact-info-section .info-column:nth-child(2) .single-info-box .inner-box .icon-box:before {
  position: absolute;
  content: '';
  background: url(../images/icons/icon-2.png);
  width: 64px;
  height: 70px;
  right: -20px;
  top: -10px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.contact-info-section .info-column:last-child .single-info-box .inner-box .icon-box:before {
  position: absolute;
  content: '';
  background: url(../images/icons/icon-1.png);
  width: 56px;
  height: 71px;
  right: -20px;
  top: -10px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.contact-info-section .single-info-box .inner-box .text {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.contact-info-section .single-info-box .inner-box .text a {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.contact-info-section .single-info-box .inner-box .text a:hover {
  color: #dc542c;
}

.contact-info-section .single-info-box .inner-box h3 {
  margin-bottom: 29px;
  font-size: 22px;
  color: #2b3c6b;
  font-weight: 700;
}

/* ====================================================
   18. CONTACT FORM SECTION COMPLETO
==================================================== */
.contact-form-section.sec-pad {
  position: relative;
  display: block;
  background: #f0ede7;
  padding: 100px 0px 144px 0px;
}

.contact-form-section .sec-title.centred {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.contact-form-section .contact-form {
  position: relative;
}

.contact-form-section .contact-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-form-section .contact-form .form-group:last-child {
  margin-bottom: 0px;
}

.contact-form-section .contact-form .form-group input[type='text'],
.contact-form-section .contact-form .form-group input[type='email'],
.contact-form-section .contact-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 15px;
  color: #2b3c6b;
  transition: all 500ms ease;
}

.contact-form-section .contact-form .form-group textarea {
  height: 170px;
  resize: none;
  margin-bottom: 30px;
}

.contact-form-section .contact-form .form-group input:focus,
.contact-form-section .contact-form .form-group textarea:focus {
  border-color: #dc542c;
}

.contact-form-section .contact-form .form-group input::-webkit-input-placeholder,
.contact-form-section .contact-form .form-group textarea::-webkit-input-placeholder {
  color: #2b3c6b;
}

.contact-form-section .contact-form .form-group.message-btn.centred {
  text-align: center;
  margin-top: 20px;
}

/* ====================================================
   19. MAIN FOOTER COMPLETO
==================================================== */
.main-footer {
  position: relative;
  background: #253b70;
}

.main-footer .footer-top {
  position: relative;
  display: block;
  background: #253b70;
  padding: 145px 0px 170px 0px;
}

.parallax-scene.parallax-scene-4.parallax-icon {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.parallax-scene .icon {
  position: absolute;
  background: url(../images/epic-patterns.png);
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
}

.parallax-scene .icon-1 { left: 110px !important; top: 160px !important; }
.parallax-scene .icon-2 { left: 30% !important; top: 80px !important; }
.parallax-scene .icon-3 { left: 27% !important; top: 70% !important; }
.parallax-scene .icon-4 { left: 40% !important; top: 40% !important; }
.parallax-scene .icon-5 { left: 75% !important; top: 80px !important; }
.parallax-scene .icon-6 { left: 65% !important; top: 40% !important; }
.parallax-scene .icon-7 { left: 72% !important; top: 70% !important; }

.main-footer .footer-top .widget-title {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 27px;
}

.main-footer .footer-top .about-widget.footer-widget .widget-content .text p {
  position: relative;
  display: block;
  color: #bec5d4;
  margin-bottom: 26px;
}

.main-footer .footer-top .about-widget.footer-widget .widget-content .text p:last-child {
  margin-bottom: 0px;
}

.main-footer .footer-top .link-widget.footer-widget {
  position: relative;
  display: block;
  margin-left: 50px;
}

.main-footer .footer-top .link-widget.footer-widget .widget-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer .footer-top .link-widget.footer-widget .widget-content li {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.main-footer .footer-top .link-widget.footer-widget .widget-content li:last-child {
  margin-bottom: 0px;
}

.main-footer .footer-top .link-widget.footer-widget .widget-content li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #bec5d4;
}

.main-footer .footer-top .link-widget.footer-widget .widget-content li a:before {
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-size: 14px;
  color: #dc542c;
  font-weight: 700;
  left: 0px;
  top: 1px;
  opacity: 0;
  transition: all 500ms ease;
}

.main-footer .footer-top .link-widget.footer-widget .widget-content li a:hover:before {
  opacity: 1;
}

.main-footer .footer-top .link-widget.footer-widget .widget-content li a:hover {
  color: #dc542c;
  padding: 0px 0px 0px 18px;
}

.main-footer .footer-top .contact-widget.footer-widget {
  position: relative;
  display: block;
  margin-left: -30px;
}

.main-footer .footer-top .contact-widget.footer-widget .widget-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer .footer-top .contact-widget.footer-widget .widget-content .info-list li {
  position: relative;
  display: block;
  font-size: 15px;
  color: #bec5d4;
  padding: 0px 0px 0px 25px;
  margin-bottom: 15px;
}

.main-footer .footer-top .contact-widget.footer-widget .widget-content .info-list li i {
  position: absolute;
  left: 0px;
  top: 6px;
  color: #dc542c;
}

.main-footer .footer-top .contact-widget.footer-widget .widget-content .info-list li:last-child {
  margin-bottom: 0px;
}

.main-footer .footer-top .contact-widget.footer-widget .widget-content .info-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #bec5d4;
  margin-bottom: 10px;
}

.main-footer .footer-top .contact-widget.footer-widget .widget-content .info-list li a:hover {
  color: #dc542c;
}

.main-footer .footer-bottom {
  position: relative;
  display: block;
  background: #f0efe8;
  padding: 33px 0px;
}

.main-footer .footer-bottom .left-content.pull-left {
  float: left;
}

.main-footer .footer-bottom .left-content .copyright {
  position: relative;
  display: block;
  color: #212f54;
}

.main-footer .footer-bottom .left-content .copyright a {
  color: #212f54;
}

.main-footer .footer-bottom .left-content .copyright a:hover {
  color: #dc542c;
}

.main-footer .footer-bottom .right-content.pull-right {
  float: right;
}

.main-footer .footer-bottom .right-content .footer-logo {
  position: relative;
  display: inline-block;
  margin-right: 300px;
}

.main-footer .footer-bottom .right-content .footer-social {
  position: relative;
  display: inline-block;
  top: 3px;
}

.social-style-one.footer-social li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.social-style-one.footer-social li:last-child {
  margin-right: 0px;
}

.social-style-one.footer-social li a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background: #3b5998;
  border-radius: 50%;
}

.social-style-one.footer-social li:nth-child(2) a {
  background: #1da1f2;
}

.social-style-one.footer-social li:nth-child(3) a {
  background: #ea4335;
}

.social-style-one.footer-social li:last-child a {
  background: #7232bd;
}

.social-style-one.footer-social li a:hover {
  background: #dc542c !important;
}

/* ====================================================
   20. RESPONSIVE DESIGN COMPLETO
==================================================== */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .main-menu .navigation > li {
    margin: 0px 12px;
  }
  
  .main-slider.style-two .slide {
    padding: 150px 0px 200px 0px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .navbar-header {
    display: block;
  }
  
  .main-menu .navbar-header .navbar-toggle {
    display: block;
    background: #dc542c;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .main-menu .navbar-header .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  
  .main-menu .navbar-collapse.collapse {
    display: none !important;
  }
  
  .main-menu .navbar-collapse.collapse.in {
    display: block !important;
  }
  
  .main-menu .navigation > li {
    float: none;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .main-menu .navigation > li:last-child {
    border-bottom: none;
  }
  
  .main-menu .navigation > li > a {
    padding: 15px 20px !important;
  }
  
  .about-section .image-box {
    margin: 0px 0px 50px 0px;
  }
  
  .about-section .image-box .image-2 {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 30px;
  }
  
  .text-column {
    padding: 40px 30px;
    min-height: 400px;
  }
  
  .what-we-offer-section .image-column {
    min-height: 400px;
  }
  
  .main-footer .footer-top .link-widget,
  .main-footer .footer-top .contact-widget {
    margin-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  .header-top .social-links.pull-left,
  .header-top .header-info.pull-right {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .header-top .header-info li {
    margin-right: 15px;
  }
  
  .main-slider.style-two .slide {
    padding: 100px 0px 150px 0px;
  }
  
  .main-slider h1 {
    font-size: 36px;
    line-height: 46px;
  }
  
  .main-slider h3 {
    font-size: 22px;
  }
  
  .main-slider .nav-style-two .owl-nav .owl-prev,
  .main-slider .nav-style-two .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }
  
  .main-slider .nav-style-two .owl-nav .owl-prev {
    left: 20px;
  }
  
  .main-slider .nav-style-two .owl-nav .owl-next {
    right: 20px;
  }
  
  .about-section,
  .contact-info-section,
  .contact-form-section,
  .testimonial-style-two {
    padding: 80px 0px;
  }
  
  .offer-section {
    padding: 40px 0;
  }
  
  .text-column {
    padding: 40px 20px;
    min-height: 350px;
  }
  
  .what-we-offer-section .image-column {
    min-height: 300px;
  }
  
  .offer-title {
    font-size: 1.5rem;
  }
  
  .contact-info-section .single-info-box .inner-box {
    padding: 40px 20px 30px;
    min-height: auto;
    margin-bottom: 30px;
  }
  
  .main-footer .footer-bottom .right-content .footer-logo {
    margin-right: 0;
    margin-bottom: 20px;
    display: block;
    text-align: center;
  }
  
  .main-footer .footer-bottom .right-content .footer-social {
    display: block;
    text-align: center;
    top: 0;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 10px;
  }
  
  .main-slider h1 {
    font-size: 28px;
    line-height: 38px;
  }
  
  .main-slider h3 {
    font-size: 18px;
  }
  
  .sec-title h1 {
    font-size: 32px;
    line-height: 42px;
  }
  
  .text-column {
    padding: 30px 15px;
    min-height: 300px;
  }
  
  .what-we-offer-section .image-column {
    min-height: 250px;
  }
  
  .offer-title {
    font-size: 1.3rem;
  }
  
  .action-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .scroll-top {
    width: 45px;
    height: 45px;
    line-height: 45px;
    right: 20px;
    font-size: 18px;
  }
}

/* ====================================================
   21. CLEARFIX Y UTILIDADES
==================================================== */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.inner-container.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Utilidades de espaciado */
.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.pt-0 { padding-top: 0; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pb-0 { padding-bottom: 0; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }

/* Estados de visibilidad para wow.js */
.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
}

/* Fin del CSS Completo - EPIC PCE */





/* ====================================================
   FORMULARIO DE CONTACTO MEJORADO - EPIC PCE
==================================================== */

/* Subtítulo del formulario */
.contact-form-section .subtitle {
  font-size: 18px;
  color: #848484;
  margin-top: 10px;
  font-weight: 400;
}

/* Contenedor de input con ícono */
.input-with-icon {
  position: relative;
  display: block;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background: #dc542c;
  border-radius: 20px 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 500ms ease;
}

.input-icon i {
  color: #ffffff;
  font-size: 16px;
}

.input-with-icon input,
.input-with-icon select {
  padding-left: 65px !important;
  height: 50px;
  border-radius: 20px;
  border: 2px solid #e7e7e7;
  transition: all 500ms ease;
  width: 100%;
  font-size: 15px;
  color: #2b3c6b;
}

.input-with-icon select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  border-color: #dc542c;
  box-shadow: 0 0 0 3px rgba(220, 84, 44, 0.1);
}

/* Efecto hover en el ícono */
.input-with-icon:hover .input-icon {
  background: #253b70;
}

/* Textarea sin ícono */
.contact-form-section .contact-form .form-group textarea {
  height: 120px;
  border-radius: 20px;
  border: 2px solid #e7e7e7;
  padding: 15px 20px;
  font-size: 15px;
  color: #2b3c6b;
  transition: all 500ms ease;
  resize: vertical;
  min-height: 120px;
}

.contact-form-section .contact-form .form-group textarea:focus {
  border-color: #dc542c;
  box-shadow: 0 0 0 3px rgba(220, 84, 44, 0.1);
}

.contact-form-section .contact-form .form-group textarea::-webkit-input-placeholder {
  color: #8a8a8a;
}

/* Card de privacidad */
.privacy-card {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 500ms ease;
}

.privacy-card:hover {
  border-color: #dc542c;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-icon {
  background: #28a745;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-icon i {
  font-size: 18px;
}

.privacy-text {
  flex: 1;
  color: #495057;
  font-size: 14px;
  line-height: 1.5;
}

.privacy-text strong {
  color: #2b3c6b;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
}

/* Botón de envío mejorado */
.submit-btn {
  position: relative;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  transition: all 500ms ease;
}

.submit-btn i {
  font-size: 18px;
  transition: all 500ms ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 84, 44, 0.4);
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 767px) {
  .contact-form-section .col-md-8.offset-md-2 {
      margin-left: 0;
      margin-right: 0;
      width: 100%;
  }
  
  .privacy-card {
      flex-direction: column;
      text-align: center;
      padding: 15px;
  }
  
  .submit-btn {
      width: 100%;
      justify-content: center;
  }
  
  .input-with-icon input,
  .input-with-icon select {
      height: 48px;
      font-size: 14px;
  }
}

@media (max-width: 575px) {
  .contact-form-section .sec-title h1 {
      font-size: 28px;
      line-height: 1.3;
  }
  
  .contact-form-section .subtitle {
      font-size: 16px;
  }
}




/* ====================================================
   SECCIÓN CONTACTO MEJORADA - EPIC PCE
==================================================== */

.contact-info-section .subtitle {
  font-size: 18px;
  color: #848484;
  margin-top: 10px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards principales rediseñadas */
.contact-info-section .single-info-box .inner-box {
  padding: 40px 25px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;
  min-height: 420px;
  height: 100%;
  border: 2px solid transparent;
  background: #fff;
}

.contact-info-section .single-info-box .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #dc542c;
}

/* Íconos mejorados */
.contact-info-section .single-info-box .inner-box .icon-box {
  font-size: 50px;
  margin-bottom: 20px;
  color: #dc542c;
  transition: all 500ms ease;
}

.contact-info-section .single-info-box .inner-box:hover .icon-box {
  transform: scale(1.1);
  color: #253b70;
}

/* Jerarquía de texto */
.contact-info-section .single-info-box .inner-box h3 {
  font-size: 22px;
  color: #2b3c6b;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info-section .single-info-box .inner-box .main-info {
  font-size: 18px;
  font-weight: 600;
  color: #2b3c6b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.contact-info-section .single-info-box .inner-box .secondary-info {
  font-size: 14px;
  color: #848484;
  margin-bottom: 15px;
  line-height: 1.4;
}

.contact-info-section .single-info-box .inner-box .schedule,
.contact-info-section .single-info-box .inner-box .response-time {
  font-size: 13px;
  color: #28a745;
  background: #f8fff9;
  padding: 8px 12px;
  border-radius: 10px;
  margin-top: 15px;
  border-left: 3px solid #28a745;
}

.contact-info-section .single-info-box .inner-box .response-time {
  color: #17a2b8;
  background: #f8f9ff;
  border-left-color: #17a2b8;
}

/* Botones de acción */
.action-btn {
  margin-top: 20px;
}

.action-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 500ms ease;
  border: 2px solid transparent;
}

.map-link {
  background: #28a745;
  color: white !important;
}

.call-link {
  background: #dc542c;
  color: white !important;
}

.email-link {
  background: #253b70;
  color: white !important;
}

.action-btn a:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
  background: transparent !important;
}

.map-link:hover {
  color: #28a745 !important;
  border-color: #28a745;
}

.call-link:hover {
  color: #dc542c !important;
  border-color: #dc542c;
}

.email-link:hover {
  color: #253b70 !important;
  border-color: #253b70;
}

/* Información adicional */
.additional-info {
  margin-top: 60px;
}

.info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e9ecef;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
}

.info-item i {
  font-size: 24px;
  color: #dc542c;
  margin-top: 5px;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 16px;
  color: #2b3c6b;
  margin-bottom: 5px;
  font-weight: 700;
}

.info-content p {
  font-size: 14px;
  color: #848484;
  margin-bottom: 0;
  line-height: 1.5;
}

.info-content a {
  color: #dc542c;
  font-weight: 600;
}

.info-content a:hover {
  color: #253b70;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-info-section .single-info-box .inner-box {
      margin-bottom: 30px;
      padding: 30px 20px;
  }
  
  .info-item {
      margin-bottom: 25px;
  }
  
  .info-item:last-child {
      margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .contact-info-section .sec-title h1 {
      font-size: 32px;
  }
  
  .contact-info-section .subtitle {
      font-size: 16px;
  }
  
  .action-btn a {
      width: 100%;
      justify-content: center;
  }
  
  .info-card {
      padding: 20px;
  }
}




/* ====================================================
   SECCIÓN TESTIMONIOS MEJORADA - EPIC PCE
==================================================== */

.testimonial-style-two {
  position: relative;
  overflow: hidden;
}

.testimonial-style-two .subtitle {
  font-size: 18px;
  color: #848484;
  margin-top: 10px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Iconos animados mejorados - POSICIÓN ABSOLUTA */
.testimonial-style-two .anim-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.testimonial-style-two .anim-icon .icon-1 {
  position: absolute;
  background: url(../images/epic-patterns.png);
  width: 150px;
  height: 150px;
  right: 5%;
  top: 20%;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  animation: float-bob-y 4s infinite ease-in-out;
}

.testimonial-style-two .anim-icon .icon-2 {
  position: absolute;
  background: url(../images/epic-patterns.png);
  width: 120px;
  height: 120px;
  left: 5%;
  bottom: 20%;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  animation: float-bob-x 6s infinite ease-in-out;
}

/* Cards de testimonios mejoradas */
.testimonial-block-two .inner-box {
  position: relative;
  display: block;
  background: #fff;
  padding: 50px 40px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 20px 15px 40px;
  transition: all 500ms ease;
  border: 2px solid transparent;
}

.testimonial-block-two .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Colores específicos por servicio */
.epic-fut-testimonial { border-top: 4px solid #682a2c; }
.epic-language-testimonial { border-top: 4px solid #e4a632; }
.epic-15-testimonial { border-top: 4px solid #dc4030; }
.epic-padel-testimonial { border-top: 4px solid #74a444; }

.epic-fut-testimonial:hover { border-color: #682a2c; }
.epic-language-testimonial:hover { border-color: #e4a632; }
.epic-15-testimonial:hover { border-color: #dc4030; }
.epic-padel-testimonial:hover { border-color: #74a444; }

/* Ícono de comillas */
.quote-icon {
  position: absolute;
  top: -20px;
  left: 40px;
  background: #dc542c;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(220, 84, 44, 0.3);
}

.epic-fut-testimonial .quote-icon { background: #682a2c; }
.epic-language-testimonial .quote-icon { background: #e4a632; }
.epic-15-testimonial .quote-icon { background: #dc4030; }
.epic-padel-testimonial .quote-icon { background: #74a444; }

/* Texto del testimonio */
.testimonial-block-two .inner-box .text {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #2b3c6b;
  margin-bottom: 25px;
  z-index: 1;
  font-style: italic;
}

/* Información del autor mejorada - SIN AVATAR */
.testimonial-block-two .inner-box .author-info {
  position: relative;
  display: block;
  padding: 20px 0 0;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.author-details h5 {
  font-size: 18px;
  color: #2b3c6b;
  font-weight: 700;
  margin-bottom: 5px;
}

.author-details .designation {
  font-size: 14px;
  color: #848484;
  display: block;
  margin-bottom: 10px;
}

.service-tag {
  display: inline-block;
  background: #f8f9fa;
  color: #2b3c6b;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #e9ecef;
}

/* NAVEGACIÓN DEL CAROUSEL - CORREGIDA */
.testimonial-style-two .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.testimonial-style-two .owl-prev,
.testimonial-style-two .owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #dc542c !important;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 500ms ease;
  border: 2px solid #dc542c;
}

.testimonial-style-two .owl-prev:hover,
.testimonial-style-two .owl-next:hover {
  background: white !important;
  color: #dc542c !important;
  transform: scale(1.1);
}

/* Dots del carousel - POSICIÓN CORREGIDA */
.testimonial-style-two .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 30px;
  z-index: 5;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #c5c7cc;
  background: transparent;
  transition: all 500ms ease;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot.active span,
.testimonial-style-two .owl-theme .owl-dots .owl-dot:hover span {
  background: #dc542c;
  border-color: #dc542c;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-block-two .inner-box {
      padding: 40px 30px 30px;
      margin: 15px 10px 30px;
  }
  
  .author-info {
      text-align: center;
  }
}

@media (max-width: 767px) {
  .testimonial-style-two .sec-title h1 {
      font-size: 32px;
  }
  
  .testimonial-block-two .inner-box {
      padding: 35px 25px 25px;
  }
  
  .quote-icon {
      left: 50%;
      transform: translateX(-50%);
      top: -25px;
  }
  
  /* Ocultar flechas en móvil */
  .testimonial-style-two .owl-nav {
      display: none;
  }
  
  .testimonial-style-two .owl-dots {
      margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .testimonial-block-two .inner-box .text {
      font-size: 15px;
      line-height: 1.6;
  }
  
  .author-details h5 {
      font-size: 16px;
  }
  
  .service-tag {
      font-size: 11px;
      padding: 5px 12px;
  }
}



/* ====================================================
   SECCIÓN WHAT WE OFFER MEJORADA - EPIC PCE
==================================================== */

/* ====================================================
   SECCIÓN WHAT WE OFFER MEJORADA - EPIC PCE
==================================================== */

/* Icono animado - posición absoluta sin ocupar espacio */
.offer-section {
  position: relative;
}

.offer-section .anim-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.offer-section .anim-icon .icon-1 {
  position: absolute;
  background: url(../images/epic-patterns.png);
  width: 200px;
  height: 200px;
  left: 10%;
  top: 30%;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  animation: float-bob-x 15s infinite linear;
}

.offer-section .subtitle {
  font-size: 18px;
  color: #848484;
  margin-top: 10px;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Iconos de servicio */
.service-icon {
  margin-bottom: 25px;
  text-align: center;
}

.service-icon i {
  font-size: 50px;
  color: #2b3c6b;
  background: linear-gradient(135deg, #dc542c, #253b70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Títulos mejorados */
.offer-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2b3c6b;
  text-align: center;
  line-height: 1.2;
}

/* Descripciones mejoradas */
.offer-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
  text-align: center;
  font-weight: 400;
}

/* Botones CENTRADOS y con íconos mejorados */
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 35px;
  /* background-color: #007bff; */
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-size: 16px;
  text-transform: uppercase;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
  margin: 0 auto; /* CENTRADO */
  justify-content: center; /* CENTRADO */
}

.action-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.action-btn:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); */
  color: white;
  text-decoration: none;
}

.action-btn:hover i {
  transform: translateX(5px);
}

/* Colores específicos de botones con íconos */
.epic-fut-btn {
  background-color: #682a2c;
  box-shadow: 0 4px 15px rgba(104, 42, 44, 0.3);
}

.epic-language-btn {
  background-color: #e4a632;
  box-shadow: 0 4px 15px rgba(228, 166, 50, 0.3);
}

.epic-15-btn {
  background-color: #dc4030;
  box-shadow: 0 4px 15px rgba(220, 64, 48, 0.3);
}

.epic-padel-btn {
  background-color: #74a444;
  box-shadow: 0 4px 15px rgba(116, 164, 68, 0.3);
}

.epic-fut-btn:hover {
  background-color: #fff;
  color: #682a2c;
  border: 2px solid #682a2c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(104, 42, 44, 0.4);
}

.epic-language-btn:hover {
  background-color: #fff;
  color: #e4a632;
  border: 2px solid #e4a632;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(228, 166, 50, 0.4);
}

.epic-15-btn:hover {
  background-color: #fff;
  color: #dc4030;
  border: 2px solid #dc4030;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 64, 48, 0.4);
}

.epic-padel-btn:hover {
  background-color: #fff;
  color: #74a444;
  border: 2px solid #74a444;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(116, 164, 68, 0.4);
}

/* Contenido de texto mejor alineado */
.text-content {
  max-width: 500px;
  z-index: 2;
  position: relative;
  padding: 0 20px;
  text-align: center; /* Asegura que todo esté centrado */
  width: 100%;
}

.text-column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Contenedor del botón centrado */
.text-content .action-btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Responsive mejorado */
@media (max-width: 991px) {
  .offer-title {
      font-size: 1.8rem;
  }
  
  .offer-description {
      font-size: 1rem;
  }
  
  .text-column {
      padding: 60px 30px;
      min-height: 500px;
  }
  
  .service-icon i {
      font-size: 45px;
  }
  
  .action-btn {
      padding: 12px 30px;
      font-size: 15px;
  }
  
  /* Ajuste del icono animado en tablet */
  .offer-section .anim-icon .icon-1 {
      width: 150px;
      height: 150px;
      left: 5%;
      top: 20%;
  }
}

@media (max-width: 767px) {
  .offer-section .sec-title h1 {
      font-size: 32px;
  }
  
  .offer-title {
      font-size: 1.6rem;
  }
  
  .offer-description {
      font-size: 0.95rem;
      line-height: 1.6;
  }
  
  .text-column {
      padding: 50px 25px;
      min-height: 400px;
  }
  
  .action-btn {
      width: 100%;
      max-width: 280px;
      padding: 14px 25px;
  }
  
  /* Ocultar icono animado en móvil o hacerlo más pequeño */
  .offer-section .anim-icon .icon-1 {
      width: 100px;
      height: 100px;
      opacity: 0.05;
  }
}

@media (max-width: 575px) {
  .offer-title {
      font-size: 1.4rem;
  }
  
  .text-column {
      padding: 40px 20px;
      min-height: 350px;
  }
  
  .service-icon i {
      font-size: 40px;
  }
  
  .action-btn {
      font-size: 14px;
      padding: 12px 20px;
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}




/* ====================================================
   SECCIÓN ABOUT MEJORADA - EPIC PCE
==================================================== */

.about-section {
  position: relative;
  overflow: hidden;
}

/* Iconos animados - POSICIÓN ABSOLUTA CORREGIDA */
.about-section .anim-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-section .anim-icon .icon-1 {
  position: absolute;
  background: url(../images/epic-patterns.png);
  background-size: contain;
  width: 210px;
  height: 275px;
  left: 5%;
  top: 10%;
  background-repeat: no-repeat;
  opacity: 0.1;
  animation: float-bob-y 5s infinite ease-in-out;
}

.about-section .anim-icon .icon-2 {
  position: absolute;
  background: url(../images/epic-patterns.png);
  background-size: contain;
  width: 188px;
  height: 192px;
  right: 8%;
  top: 15%;
  background-repeat: no-repeat;
  opacity: 0.08;
  animation: zoom-fade 8s infinite linear;
}

.about-section .anim-icon .icon-3 {
  position: absolute;
  background-image: url(../images/epic-patterns.png);
  background-size: contain;
  width: 102px;
  height: 198px;
  bottom: 10%;
  right: 12%;
  background-repeat: no-repeat;
  opacity: 0.1;
  animation: float-bob-x 6s infinite ease-in-out;
}

/* Contenido mejorado */
.about-section .bold-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #2b3c6b;
  font-weight: 700;
  margin-bottom: 20px;
  font-style: italic;
}

.about-section .text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.about-section .text p strong {
  color: #dc542c;
  font-weight: 700;
}

/* Botón mejorado */
.about-section .theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 700;
}

.about-section .theme-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.about-section .theme-btn:hover i {
  transform: translateX(5px);
}

/* Imágenes mejoradas */
.about-section .image-box {
  position: relative;
  margin: 6px 30px 0px 140px;
}

.about-section .image-box:before {
  position: absolute;
  content: '';
  background-image: url('/images/epic-patterns.png');
  background-size: contain;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  left: -185px;
  top: 55px;
  opacity: 0.1;
  animation: zoom-fade 5s infinite linear;
}

.about-section .image-box .image-1 {
  position: relative;
  display: block;
  border-radius: 30px;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  overflow: hidden;
}

.about-section .image-box .image-1 img {
  border-radius: 30px;
  width: 100%;
  transition: transform 0.5s ease;
}

.about-section .image-box .image-2 {
  position: absolute;
  left: -85px;
  bottom: -125px;
  border: 15px solid #fff;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

.about-section .image-box .image-2 img {
  border-radius: 15px;
  width: 100%;
  transition: transform 0.5s ease;
}

.about-section .image-box:hover .image-1 img,
.about-section .image-box:hover .image-2 img {
  transform: scale(1.05);
}

/* Animación zoom-fade si no existe */
@keyframes zoom-fade {
0%, 100% {
  opacity: 0.05;
  transform: scale(0.8);
}
50% {
  opacity: 0.1;
  transform: scale(1);
}
}

/* Responsive */
@media (max-width: 991px) {
  .about-section .image-box {
      margin: 0px 0px 50px 0px;
  }
  
  .about-section .image-box .image-2 {
      position: relative;
      left: 0;
      bottom: 0;
      margin-top: 30px;
  }
  
  .about-section .anim-icon .icon-1,
  .about-section .anim-icon .icon-2,
  .about-section .anim-icon .icon-3 {
      opacity: 0.05;
  }
}

@media (max-width: 767px) {
  .about-section .bold-text {
      font-size: 1.1rem;
  }
  
  .about-section .text p {
      font-size: 1rem;
      text-align: left;
  }
  
  .about-section .theme-btn {
      width: 100%;
      justify-content: center;
  }
  
  .about-section .anim-icon {
      display: none; /* Ocultar en móvil para mejor rendimiento */
  }
}



/* ====================================================
   SLIDER HERO MEJORADO - EPIC PCE
==================================================== */

.main-slider.style-two .slide {
  position: relative;
  padding: 60px 0px 80px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Overlay para mejor legibilidad */
.slide-overlay {
  position: absolute;
  content: '';
  background: linear-gradient(135deg, rgba(43, 60, 107, 0.7) 0%, rgba(220, 84, 44, 0.5) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.main-slider.style-two .content-box {
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  z-index: 2;
  text-align: center;
}

/* Badge EPIC */
.badge-epic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-epic i {
  color: #ffd700;
}

/* Textos mejorados */
.main-slider.style-two h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.3;
  color: #ffd700;
  font-weight: 700;
  opacity: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-slider.style-two h1 {
  position: relative;
  display: block;
  font-size: 4rem;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 25px;
  opacity: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.main-slider.style-two .text {
  position: relative;
  display: block;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
  opacity: 0;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Botones mejorados */
.main-slider.style-two .btn-box {
  opacity: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-slider.style-two .theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #dc542c;
  background: #dc542c;
  color: white !important;
  border-radius: 30px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-slider.style-two .secondary-btn {
  background: transparent;
  border: 2px solid white;
  color: white !important;
}

.main-slider.style-two .secondary-btn:hover {
  background: white;
  color: #2b3c6b !important;
}

.main-slider.style-two .theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 84, 44, 0.4);
}

.main-slider.style-two .theme-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.main-slider.style-two .theme-btn:hover i {
  transform: translateX(5px);
}

/* Barra de progreso */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: #dc542c;
  width: 0%;
  transition: width 0.1s linear;
}

/* Animaciones mejoradas */
.main-slider .active h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.main-slider .active h1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}

.main-slider .active .text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.1s;
}

.main-slider .active .btn-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

/* Navegación mejorada */
.main-slider .nav-style-two .owl-nav .owl-prev,
.main-slider .nav-style-two .owl-nav .owl-next {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.main-slider .nav-style-two .owl-nav .owl-prev:hover,
.main-slider .nav-style-two .owl-nav .owl-next:hover {
  background: #dc542c;
  border-color: #dc542c;
  transform: scale(1.1);
}

/* Dots mejorados */
.main-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.main-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-slider .owl-dots .owl-dot.active span,
.main-slider .owl-dots .owl-dot:hover span {
  background: #dc542c;
  border-color: white;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
  .main-slider.style-two h1 {
      font-size: 3rem;
  }
  
  .main-slider.style-two .text {
      font-size: 1.1rem;
  }
  
  .main-slider.style-two .btn-box {
      flex-direction: column;
      align-items: center;
  }
  
  .main-slider.style-two .theme-btn {
      width: 250px;
      justify-content: center;
  }
}

@media (max-width: 767px) {
  .main-slider.style-two .slide {
      padding: 50px 0px 40px 0px;
      background-attachment: scroll;
  }
  
  .main-slider.style-two h1 {
      font-size: 2.2rem;
  }
  
  .main-slider.style-two h3 {
      font-size: 18px;
  }
  
  .main-slider.style-two .text {
      font-size: 1rem;
  }
  
  .badge-epic {
      font-size: 12px;
      padding: 8px 15px;
  }
}

@media (max-width: 575px) {
  .main-slider.style-two h1 {
      font-size: 1.8rem;
  }
  
  .main-slider.style-two .theme-btn {
      padding: 14px 25px;
      font-size: 14px;
  }
}



/* ====================================================
   HEADER EPIC PCE - SOLUCIÓN COMPLETA Y DEFINITIVA
==================================================== */

/* HEADER TOP - MEJORADO */
.header-top {
  background: #253b70;
  padding: 12px 0;
  font-size: 14px;
}

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

.social-links .social-list {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links .social-list a {
  color: #fff;
  transition: color 0.3s ease;
}

.social-links .social-list a:hover {
  color: #dc542c;
}

.header-info .info-list {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-info .info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d3d8e2;
}

.header-info .info-list i {
  color: #dc542c;
}

.header-info .info-list a {
  color: #d3d8e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-info .info-list a:hover {
  color: #dc542c;
}

/* HEADER BOTTOM - BASE */
.header-bottom {
  background: #ffffff;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

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

.logo-box .logo img {
  max-height: 60px;
  width: auto;
}

/* NAVEGACIÓN DESKTOP */
.nav-outer {
  display: block;
}

.menu-area {
  display: block;
}

.main-menu .navbar-collapse {
  display: block !important;
}

.main-menu .navigation {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu .navigation > li > a {
  padding: 15px 20px;
  color: #2b3c6b;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: block;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li > a:hover {
  background: #dc542c;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Botón Contacto Desktop */
.contact-nav-btn {
  background: #dc542c !important;
  color: white !important;
  margin-left: 10px;
  border: 2px solid #dc542c !important;
}

.contact-nav-btn:hover {
  background: #253b70 !important;
  color: white !important;
  border-color: #253b70 !important;
  transform: translateY(-2px);
}

/* STICKY HEADER MEJORADO */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-header.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.sticky-header .logo-box img {
  max-height: 45px;
  transition: all 0.3s ease;
}

.sticky-header .main-menu .navigation > li > a {
  padding: 12px 18px !important;
  font-size: 15px;
  margin: 0 2px;
}

/* BOTÓN HAMBURGUESA - OCULTO EN DESKTOP */
.navbar-header {
  display: none;
}

.navbar-toggle {
  display: none;
}

/* ====================================================
 RESPONSIVE - MOBILE (≤ 991px)
==================================================== */
@media (max-width: 991px) {
  /* HEADER TOP REORGANIZADO */
  .header-top .inner-container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
  }
  
  .header-info .info-list {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
  }
  
  .social-links .social-list {
      justify-content: center;
  }
  
  /* HEADER BOTTOM MOBILE */
  .header-bottom {
      padding: 10px 0;
  }
  
  .header-bottom .clearfix {
      position: relative;
  }
  
  .logo-box {
      flex: 1;
  }
  
  .logo-box .logo img {
      max-height: 50px;
  }
  
  /* BOTÓN HAMBURGUESA VISIBLE Y ALINEADO DERECHA */
  .navbar-header {
      display: block !important;
      flex: 0 0 auto;
  }
  
  .navbar-toggle {
      display: block !important;
      background: #dc542c;
      border: none;
      padding: 12px 14px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin: 0;
  }
  
  .navbar-toggle:hover {
      background: #253b70;
      transform: scale(1.05);
  }
  
  .navbar-toggle .icon-bar {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      margin: 4px 0;
      border-radius: 1px;
      transition: all 0.3s ease;
  }
  
  .navbar-toggle.active .icon-bar:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
  }
  
  .navbar-toggle.active .icon-bar:nth-child(2) {
      opacity: 0;
  }
  
  .navbar-toggle.active .icon-bar:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* OCULTAR MENÚ DESKTOP EN MOBILE */
  .nav-outer {
      display: none;
  }
  
  /* STICKY HEADER MOBILE */
  .sticky-header .menu-area {
      display: none;
  }
}

/* MODAL MOBILE */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 60, 107, 0.95);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100%;
  background: white;
  z-index: 9999;
  overflow-y: auto;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-container.active {
  left: 0;
}

.mobile-menu-header {
  background: #253b70;
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #dc542c;
}

.mobile-menu-logo img {
  max-height: 35px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-menu-content {
  padding: 0;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

.mobile-nav li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav li a {
  display: block;
  padding: 18px 25px;
  color: #2b3c6b;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav li a:hover,
.mobile-nav li a.active {
  background: #dc542c;
  color: white;
  padding-left: 35px;
}

.mobile-contact-btn {
  background: #dc542c !important;
  color: white !important;
  text-align: center;
  font-weight: 700;
  border-left: 4px solid #253b70 !important;
}

.mobile-contact-btn:hover {
  background: #253b70 !important;
  color: white !important;
  padding-left: 35px !important;
}

.mobile-menu-footer {
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.mobile-top-info {
  margin-bottom: 15px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #2b3c6b;
  text-decoration: none;
  font-size: 14px;
}

.mobile-contact-item i {
  color: #dc542c;
  width: 16px;
}

.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.mobile-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #253b70;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-social-links a:hover {
  background: #dc542c;
  transform: translateY(-2px);
}

/* SCROLL SPY ACTIVO */
.main-menu .navigation > li > a.active,
.mobile-nav li a.active {
  background: #dc542c !important;
  color: white !important;
}

/* PREVENIR DESBORDES */
body {
  overflow-x: hidden;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* MOBILE PEQUEÑO (≤ 767px) */
@media (max-width: 767px) {
  .header-top {
      padding: 10px 0;
  }
  
  .header-info .info-list {
      flex-direction: column;
      gap: 8px;
  }
  
  .mobile-menu-container {
      width: 280px;
  }
  
  .logo-box .logo img {
      max-height: 45px;
  }
}

/* MOBILE EXTRA PEQUEÑO (≤ 575px) */
@media (max-width: 575px) {
  .header-bottom {
      padding: 8px 0;
  }
  
  .navbar-toggle {
      padding: 10px 12px;
  }
  
  .mobile-menu-container {
      width: 260px;
  }
  
  .mobile-nav li a {
      padding: 16px 20px;
      font-size: 15px;
  }
}


/* ====================================================
   HEADER EPIC PCE - MEJORAS PRIORITARIAS
   Estilos específicos para corregir problemas visuales
==================================================== */

/* HEADER TOP - MÁS COMPACTO EN MOBILE */
@media (max-width: 991px) {
  .header-top {
    padding: 8px 0 !important;
    background: #253b70 !important;
  }
  
  .header-top .inner-container {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 5px !important;
  }
  
  .social-links .social-list {
    gap: 8px !important;
  }
  
  .social-links .social-list li {
    margin-right: 0 !important;
  }
  
  .social-links .social-list a {
    font-size: 13px !important;
    padding: 5px !important;
  }
  
  .header-info .info-list {
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }
  
  .header-info .info-list li {
    margin-right: 0 !important;
    padding: 0 !important;
  }
  
  .header-info .info-list li:before {
    display: none !important;
  }
  
  .header-info .info-list i {
    font-size: 12px !important;
  }
  
  .header-info .info-list a {
    font-size: 12px !important;
  }
}

/* HEADER BOTTOM - MÁS ESTILIZADO */
.header-bottom {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  box-shadow: 0 2px 20px rgba(43, 60, 107, 0.1) !important;
  padding: 12px 0 !important;
}

/* STICKY HEADER MEJORADO */
.sticky-header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(220, 84, 44, 0.2) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
  padding: 8px 0 !important;
}

.sticky-header.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.sticky-header .logo-box img {
  max-height: 40px !important;
  transition: all 0.3s ease !important;
}

/* BOTÓN HAMBURGUESA MÁS ESTILIZADO */
.navbar-toggle {
  background: linear-gradient(135deg, #dc542c 0%, #e67e22 100%) !important;
  border: 2px solid transparent !important;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(220, 84, 44, 0.3) !important;
}

.navbar-toggle:hover {
  background: linear-gradient(135deg, #253b70 0%, #34495e 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 59, 112, 0.4) !important;
}

.navbar-toggle .icon-bar {
  background: #ffffff !important;
  height: 3px !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
}

/* ====================================================
   MODAL MÓVIL - REDISEÑO COMPLETO
==================================================== */

/* OVERLAY MEJORADO */
.mobile-menu-overlay.active {
  background: linear-gradient(135deg, rgba(43, 60, 107, 0.98) 0%, rgba(37, 59, 112, 0.95) 100%) !important;
  backdrop-filter: blur(10px) !important;
}

/* CONTENEDOR DEL MODAL MÁS MODERNO */
.mobile-menu-container {
  width: 320px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  box-shadow: -5px 0 50px rgba(0, 0, 0, 0.3) !important;
}

.mobile-menu-header {
  background: linear-gradient(135deg, #253b70 0%, #2b3c6b 100%) !important;
  padding: 25px 20px !important;
  border-bottom: 4px solid #dc542c !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.mobile-menu-logo img {
  max-height: 40px !important;
  filter: brightness(0) invert(1) !important;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  font-size: 20px !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
}

.mobile-menu-close:hover {
  background: #dc542c !important;
  border-color: #dc542c !important;
  transform: rotate(90deg) scale(1.1) !important;
}

/* NAVEGACIÓN MÓVIL REDISEÑADA */
.mobile-nav {
  padding: 20px 0 !important;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(220, 84, 44, 0.1) !important;
  transition: all 0.3s ease !important;
}

.mobile-nav li:hover {
  background: rgba(220, 84, 44, 0.05) !important;
  border-bottom-color: #dc542c !important;
}

.mobile-nav li a {
  padding: 18px 25px !important;
  color: #2b3c6b !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.mobile-nav li a:hover {
  background: transparent !important;
  color: #dc542c !important;
  padding-left: 35px !important;
}

.mobile-nav li a:hover:before {
  content: "▶" !important;
  position: absolute !important;
  left: 20px !important;
  color: #dc542c !important;
  font-size: 12px !important;
}

/* BOTÓN DE CONTACTO MÓVIL - REDISEÑADO */
.mobile-contact-btn {
  /* background: linear-gradient(135deg, #dc542c 0%, #e67e22 100%) !important; */
  background-color: #e67e22;
  color: white !important;
  text-align: center !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  margin: 15px 25px !important;
  padding: 16px 25px !important;
  border: 3px solid transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 6px 20px rgba(220, 84, 44, 0.4) !important;
}

.mobile-contact-btn:hover {
  background: transparent !important;
  color: #dc542c !important;
  border-color: #dc542c !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(220, 84, 44, 0.6) !important;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.mobile-contact-btn:before {
  display: none !important;
}

/* FOOTER DEL MODAL - REDISEÑO COMPLETO */
.mobile-menu-footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  padding: 25px 20px !important;
  border-top: 3px solid #dc542c !important;
  border-radius: 20px 20px 0 0 !important;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1) !important;
}

.mobile-top-info {
  margin-bottom: 20px !important;
}

.mobile-contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 15px !important;
  background: white !important;
  border-radius: 15px !important;
  margin-bottom: 10px !important;
  text-decoration: none !important;
  color: #2b3c6b !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
}

.mobile-contact-item:hover {
  border-color: #dc542c !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(220, 84, 44, 0.2) !important;
  color: #dc542c !important;
}

.mobile-contact-item i {
  color: #dc542c !important;
  font-size: 16px !important;
  width: 20px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}

.mobile-contact-item:hover i {
  transform: scale(1.2) !important;
  color: #253b70 !important;
}

/* REDES SOCIALES MEJORADAS */
.mobile-social-links {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 20px !important;
}

.mobile-social-links a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 45px !important;
  height: 45px !important;
  background: linear-gradient(135deg, #253b70 0%, #2b3c6b 100%) !important;
  color: white !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  font-size: 18px !important;
  box-shadow: 0 4px 15px rgba(37, 59, 112, 0.3) !important;
}

.mobile-social-links a:hover {
  background: transparent !important;
  color: #253b70 !important;
  border-color: #253b70 !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(37, 59, 112, 0.4) !important;
}

/* BADGE EPIC PARA INDICAR ACTIVO */
.mobile-nav li a.active {
  /* background: linear-gradient(135deg, #dc542c 0%, #e67e22 100%) !important; */
  background-color: #e67e22;
  color: white !important;
  border-radius: 0 25px 25px 0 !important;
  margin-right: 15px !important;
  box-shadow: 0 4px 15px rgba(220, 84, 44, 0.3) !important;
}

.mobile-nav li a.active:before {
  content: "★" !important;
  position: absolute !important;
  left: 20px !important;
  color: white !important;
  font-size: 14px !important;
}

/* RESPONSIVE ADICIONAL PARA MÓVILES PEQUEÑOS */
@media (max-width: 575px) {
  .header-top .inner-container {
    flex-direction: column !important;
    gap: 8px !important;
  }
  
  .mobile-menu-container {
    width: 330px !important;
  }
  
  .mobile-contact-btn {
    margin: 15px 20px !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
  
  .mobile-nav li a {
    padding: 16px 20px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 375px) {
  .mobile-menu-container {
    width: 320px !important;
  }
  
  .mobile-contact-item {
    padding: 10px 12px !important;
    font-size: 14px !important;
  }
  
  .mobile-social-links a {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }
}

/* ANIMACIÓN DE ENTRADA MEJORADA */
@keyframes slideInRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mobile-menu-container.active {
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* SCROLL SUAVE PARA NAVEGACIÓN */
.mobile-nav li a {
  cursor: pointer !important;
}









/* ====================================================
   PÁGINAS DE SERVICIOS EPIC - ESTILOS MEJORADOS
   CSS unificado para todas las páginas de servicios
==================================================== */

/* Variables de color por servicio - GLOBALES */
:root {
  --service-futbol-color: #682a2c;
  --service-futbol-dark: #4a1d1f;
  --service-language-color: #e4a632;
  --service-language-dark: #c18a25;
  --service-15-color: #dc4030;
  --service-15-dark: #b33225;
  --service-padel-color: #74a444;
  --service-padel-dark: #5d8536;
}

/* Clases de servicio para aplicar colores */
.service-futbol {
  --service-color: var(--service-futbol-color);
  --service-dark: var(--service-futbol-dark);
}

.service-language {
  --service-color: var(--service-language-color);
  --service-dark: var(--service-language-dark);
}

.service-15 {
  --service-color: var(--service-15-color);
  --service-dark: var(--service-15-dark);
}

.service-padel {
  --service-color: var(--service-padel-color);
  --service-dark: var(--service-padel-dark);
}

/* Hero Section usando el slider del index */
.service-detail-hero {
  position: relative;
  padding: 160px 0 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.service-detail-hero:before {
  position: absolute;
  content: '';
  background: linear-gradient(135deg, var(--service-color) 0%, var(--service-dark) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.service-detail-hero .container {
  position: relative;
  z-index: 2;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-badge i {
  color: #ffd700;
}

.service-detail-hero h1 {
  position: relative;
  display: block;
  font-size: 4rem;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 25px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.service-detail-hero .subtitle {
  position: relative;
  display: block;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Contenido principal */
.service-content {
  position: relative;
  display: block;
  padding: 120px 0px 80px 0px;
}

/* Imagen principal */
.service-main-image {
  position: relative;
  display: block;
  margin: 0px 0px 60px 0px;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  border-radius: 30px;
  overflow: hidden;
}

.service-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-main-image:hover img {
  transform: scale(1.05);
}

/* Descripción */
.service-description {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.service-description p {
  position: relative;
  display: block;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #615e5d;
  margin-bottom: 25px;
  text-align: justify;
}

.service-description p strong {
  color: var(--service-color);
  font-weight: 700;
}

/* Características del servicio */
.service-features {
  background: #f0efe9;
  padding: 100px 0;
  margin: 80px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-top: 4px solid var(--service-color);
  transition: all 0.4s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--service-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  color: white;
  font-size: 35px;
}

.feature-card h3 {
  font-size: 22px;
  color: #2b3c6b;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #848484;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA Section */
.service-cta {
  position: relative;
  display: block;
  background: linear-gradient(135deg, var(--service-color) 0%, var(--service-dark) 100%);
  padding: 80px 0;
  border-radius: 20px;
  margin: 80px 0;
  text-align: center;
  color: white;
}

.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 900;
  color: #fff;
}

.service-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botones mejorados */
.brochure-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  padding: 16px 35px;
  background-color: #ffffff;
  line-height: 26px;
  color: var(--service-color) !important;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: all 500ms ease;
  z-index: 1;
  border-radius: 30px;
  letter-spacing: 0.7px;
  border: 2px solid #ffffff;
  overflow: hidden;
  text-decoration: none;
}

.brochure-btn:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: var(--service-color);
  transition: all 0.4s;
  transform: scale(0.2, 1);
  border-radius: 30px;
}

.brochure-btn:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.brochure-btn:hover {
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  padding: 16px 35px;
  background-color: transparent;
  line-height: 26px;
  color: #ffffff !important;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: all 500ms ease;
  z-index: 1;
  border-radius: 30px;
  letter-spacing: 0.7px;
  border: 2px solid #ffffff;
  overflow: hidden;
  text-decoration: none;
}

.contact-btn:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #ffffff;
  transition: all 0.4s;
  transform: scale(0.2, 1);
  border-radius: 30px;
}

.contact-btn:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.contact-btn:hover {
  color: var(--service-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Testimonios */
.service-testimonials {
  position: relative;
  display: block;
  padding: 100px 0px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  position: relative;
  display: block;
  background: #fff;
  padding: 40px 35px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border-left: 4px solid var(--service-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 35px;
  background: var(--service-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonial-card .text {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #2b3c6b;
  margin-bottom: 25px;
  z-index: 1;
  font-style: italic;
}

.author-info {
  position: relative;
  display: block;
  padding: 20px 0 0;
  border-top: 1px solid #f0f0f0;
}

.author-info strong {
  font-size: 18px;
  color: #2b3c6b;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.author-info span {
  font-size: 14px;
  color: #848484;
  display: block;
}

/* FAQ Section */
.service-faq {
  background: #f0efe9;
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-question {
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 700;
  color: #2b3c6b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid var(--service-color);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(220, 84, 44, 0.05);
}

.faq-question i {
  color: var(--service-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  color: #615e5d;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

/* Información adicional */
.service-additional {
  padding: 80px 0;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 4px solid var(--service-color);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-card i {
  font-size: 40px;
  color: var(--service-color);
  margin-bottom: 20px;
}

.info-card h3 {
  color: #2b3c6b;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1199px) {
  .service-detail-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .service-detail-hero {
    padding: 140px 0 80px;
  }
  
  .service-detail-hero h1 {
    font-size: 3rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .brochure-btn,
  .contact-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .service-detail-hero {
    padding: 120px 0 60px;
    background-attachment: scroll;
  }
  
  .service-detail-hero h1 {
    font-size: 2.5rem;
  }
  
  .service-detail-hero .subtitle {
    font-size: 1.1rem;
  }
  
  .service-content {
    padding: 80px 0;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .service-detail-hero h1 {
    font-size: 2rem;
  }
  
  .service-badge {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .brochure-btn,
  .contact-btn {
    padding: 14px 25px;
    font-size: 14px;
  }
  
  .faq-question {
    padding: 20px 25px;
    font-size: 16px;
  }
}

/* ====================================================
   SLIDER PARA PÁGINAS DE SERVICIOS
   Versión simplificada del slider principal
==================================================== */

.service-slider {
  position: relative;
}

.service-slider .slide {
  position: relative;
  padding: 160px 0 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.service-slider .slide:before {
  position: absolute;
  content: '';
  background: linear-gradient(135deg, var(--service-color) 0%, var(--service-dark) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.service-slider .content-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================================================
   ANIMACIONES MEJORADAS
==================================================== */

@keyframes fadeInUpService {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-feature-animate {
  animation: fadeInUpService 0.8s ease forwards;
}

.service-card-animate {
  animation: fadeInUpService 0.6s ease forwards;
}

/* Estilos para elementos que se animan al scroll */
.service-scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.service-scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}


/* ====================================================
   FOOTER EPIC PCE - REDISEÑO COMPLETO
   Estilos prioritarios para el footer
==================================================== */

/* FOOTER TOP - REDISEÑADO */
.main-footer {
  background: linear-gradient(135deg, #253b70 0%, #2b3c6b 100%) !important;
  position: relative;
  overflow: hidden;
}

.main-footer .footer-top {
  position: relative;
  padding: 80px 0 60px !important;
  background: transparent !important;
}

/* Iconos parallax mejorados */
.parallax-scene.parallax-scene-4.parallax-icon {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  opacity: 0.1;
}

.parallax-scene .icon {
  background: url(../images/epic-patterns.png) !important;
  width: 80px !important;
  height: 80px !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  opacity: 0.3;
}

/* Widget Section Mejorada */
.widget-section {
  position: relative;
  z-index: 2;
}

.footer-column {
  margin-bottom: 30px;
}

.about-widget.footer-widget,
.link-widget.footer-widget,
.contact-widget.footer-widget {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.about-widget.footer-widget:hover,
.link-widget.footer-widget:hover,
.contact-widget.footer-widget:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-5px);
  border-color: #dc542c;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Títulos de Widget */
.widget-title {
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  margin-bottom: 25px !important;
  position: relative;
  padding-bottom: 15px;
}

.widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #dc542c;
  border-radius: 2px;
}

/* About Widget - EPIC PCE */
.about-widget .widget-content .text p {
  color: #d3d8e2 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  text-align: justify;
}

/* Link Widget - Mejorado */
.link-widget.footer-widget {
  margin-left: 0 !important;
}

.link-widget .widget-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.link-widget .widget-content li {
  margin-bottom: 12px !important;
  transition: all 0.3s ease;
}

.link-widget .widget-content li:hover {
  transform: translateX(5px);
}

.link-widget .widget-content li a {
  color: #d3d8e2 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-widget .widget-content li a:before {
  content: "▶" !important;
  font-size: 12px !important;
  color: #dc542c !important;
  transition: all 0.3s ease;
  opacity: 0;
}

.link-widget .widget-content li a:hover {
  color: #ffffff !important;
  padding-left: 0 !important;
}

.link-widget .widget-content li a:hover:before {
  opacity: 1;
}
/* LINK WIDGET - CORRECCIÓN COMPLETA */
.main-footer .link-widget.footer-widget {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.main-footer .link-widget.footer-widget .widget-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

.main-footer .link-widget.footer-widget .widget-content li {
  margin-bottom: 12px !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
  display: block !important;
}

.main-footer .link-widget.footer-widget .widget-content li:hover {
  transform: translateX(5px) !important;
  background: transparent !important;
}

.main-footer .link-widget.footer-widget .widget-content li a {
  color: #d3d8e2 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ELIMINAR PSEUDO-ELEMENTOS CONFLICTIVOS DEL TEMPLATE ORIGINAL */
.main-footer .link-widget.footer-widget .widget-content li a:before {
  content: "▶" !important;
  font-size: 12px !important;
  color: #dc542c !important;
  transition: all 0.3s ease !important;
  opacity: 0 !important;
  display: inline !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
}

.main-footer .link-widget.footer-widget .widget-content li a:hover {
  color: #ffffff !important;
  padding-left: 0 !important;
  background: transparent !important;
}

.main-footer .link-widget.footer-widget .widget-content li a:hover:before {
  opacity: 1 !important;
  transform: none !important;
}

/* ====================================================
 CORRECCIÓN COMPLETA FOOTER - CONTACT WIDGET
 Estilos de máxima prioridad para sobreescribir conflictos
==================================================== */

/* CONTACT WIDGET - CORRECCIÓN COMPLETA */
.main-footer .contact-widget.footer-widget {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 15px !important;
  color: #d3d8e2 !important;
  font-size: 15px !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
  transition: all 0.3s ease !important;
  line-height: 1.5 !important;
  min-height: auto !important;
  height: auto !important;
}

/* ELIMINAR BORDES/BEFORE CONFLICTIVOS DEL TEMPLATE */
.main-footer .contact-widget.footer-widget .widget-content .info-list li:before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list li:hover {
  color: #ffffff !important;
  transform: translateX(5px) !important;
  background: transparent !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list li i {
  color: #dc542c !important;
  font-size: 18px !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
  width: 20px !important;
  text-align: center !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list li a,
.main-footer .contact-widget.footer-widget .widget-content .info-list li span {
  color: #d3d8e2 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  line-height: 1.5 !important;
  flex: 1 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list li:hover a,
.main-footer .contact-widget.footer-widget .widget-content .info-list li:hover i,
.main-footer .contact-widget.footer-widget .widget-content .info-list li a:hover {
  color: #ffffff !important;
}

/* CORRECCIÓN ESPECÍFICA POR TIPO DE ITEM */
.main-footer .contact-widget.footer-widget .widget-content .info-list li:first-child {
  align-items: flex-start !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list li:first-child i {
  margin-top: 4px !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list li:nth-child(2),
.main-footer .contact-widget.footer-widget .widget-content .info-list li:nth-child(3) {
  align-items: center !important;
}

.main-footer .contact-widget.footer-widget .widget-content .info-list li:nth-child(2) i,
.main-footer .contact-widget.footer-widget .widget-content .info-list li:nth-child(3) i {
  margin-top: 0 !important;
}

/* FOOTER BOTTOM - REDISEÑADO */
.main-footer .footer-bottom {
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 25px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

/* Copyright Mejorado */
.left-content .copyright {
  color: #d3d8e2 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.left-content .copyright a {
  color: #dc542c !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: all 0.3s ease;
}

.left-content .copyright a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* Logo Footer Mejorado */
.right-content {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  flex-wrap: wrap;
}

.footer-logo {
  margin: 0 !important;
}

.footer-logo img {
  max-height: 40px !important;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

/* Redes Sociales Mejoradas */
.social-style-one.footer-social {
  display: flex !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.social-style-one.footer-social li {
  margin: 0 !important;
}

.social-style-one.footer-social li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 45px !important;
  height: 45px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  font-size: 18px !important;
  backdrop-filter: blur(10px);
}

.social-style-one.footer-social li a:hover {
  background: #dc542c !important;
  transform: translateY(-3px) scale(1.1);
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(220, 84, 44, 0.4);
}

/* Colores específicos para redes sociales */
.social-style-one.footer-social li:nth-child(1) a:hover { background: #3b5998 !important; }
.social-style-one.footer-social li:nth-child(2) a:hover { background: #1da1f2 !important; }
.social-style-one.footer-social li:nth-child(3) a:hover { background: #ea4335 !important; }
.social-style-one.footer-social li:nth-child(4) a:hover { background: #7232bd !important; }

/* RESPONSIVE FOOTER */
@media (max-width: 991px) {
  .main-footer .footer-top {
      padding: 60px 0 40px !important;
  }
  
  .about-widget.footer-widget,
  .link-widget.footer-widget,
  .contact-widget.footer-widget {
      margin-bottom: 30px;
      padding: 25px 20px;
  }
  
  .link-widget.footer-widget {
      margin-left: 0 !important;
  }
  
  .contact-widget.footer-widget {
      margin-left: 0 !important;
  }
  
  .footer-bottom .inner-container {
      flex-direction: column;
      text-align: center;
      gap: 15px;
  }
  
  .right-content {
      justify-content: center;
      gap: 20px;
  }
}

@media (max-width: 767px) {
  .main-footer .footer-top {
      padding: 50px 0 30px !important;
  }
  
  .widget-title {
      font-size: 20px !important;
  }
  
  .about-widget .widget-content .text p,
  .link-widget .widget-content li a,
  .contact-widget .widget-content .info-list li {
      font-size: 14px !important;
  }
  
  .social-style-one.footer-social li a {
      width: 40px !important;
      height: 40px !important;
      font-size: 16px !important;
  }
  
  .footer-logo img {
      max-height: 35px !important;
  }
}

@media (max-width: 575px) {
  .main-footer .footer-top {
      padding: 40px 0 20px !important;
  }
  
  .about-widget.footer-widget,
  .link-widget.footer-widget,
  .contact-widget.footer-widget {
      padding: 20px 15px;
  }
  
  .widget-title {
      font-size: 18px !important;
      margin-bottom: 20px !important;
  }
  
  .right-content {
      flex-direction: column;
      gap: 15px;
  }
  
  .social-style-one.footer-social {
      justify-content: center;
  }
}

/* ANIMACIONES PARA EL FOOTER */
@keyframes floatFooter {
  0%, 100% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-10px);
  }
}

.parallax-scene .icon {
  animation: floatFooter 6s ease-in-out infinite;
}

.parallax-scene .icon:nth-child(2) { animation-delay: 1s; }
.parallax-scene .icon:nth-child(3) { animation-delay: 2s; }
.parallax-scene .icon:nth-child(4) { animation-delay: 3s; }
.parallax-scene .icon:nth-child(5) { animation-delay: 4s; }
.parallax-scene .icon:nth-child(6) { animation-delay: 5s; }
.parallax-scene .icon:nth-child(7) { animation-delay: 6s; }