/*
* Template Name : Rictor - Onepage Multipurpose Template
* Version : 1.0
* Created by : Themesdesign
*/
/*
1. Basic
2.Helper
3.Title
4.Bootstrap Reset
5.Navbar Custom
6.home
7.About Us
8.Fun Factors
9.Video play
10.BLOG SECTION
11.PURCHASE SECTION
12.SERVICE SECTION
13.PORTFOLIO
14.TESTIMONIAL
15.PRICING BOX
16.TEAM-SECTION
17.CONTACT US
18.FOOTER COPYRIGHT
19.RESPONSIVE
*/

/* ==========
   1.Basic
   ========== */
body {
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
} 
h1,h2,h3,h4,h5,h6 {
  font-family: 'Jost', sans-serif;
}
a,a:hover,a:focus {
  text-decoration: none !important;
  outline:none !important;
}
/*====================
  2.Helper
  ===================*/
.margin-t-20{
  margin-top: 20px;
}
.margin-t-0{
  margin-top: 0px;
}
.margin-t-30{
  margin-top: 30px;
}
.padding-b-30{
  padding-bottom: 30px;
}
.margin-t-50{
  margin-top: 50px;
}
.margin-r-l-35{
  margin-left: 35px;
  margin-right: 35px;
}
.padding-t-15{
  padding-top: 15px;
}
.padding-t-100{
  padding-top: 100px;
}
.padding-b-100{
  padding-bottom: 100px;
}
.padding-b-10{
  padding-bottom: 10px;
}
.padding-t-b-100{
	padding-bottom: 100px;
	padding-top: 100px;
}
.padding-t-b-60{
  padding-bottom: 60px;
  padding-top: 60px;
}
.width-full{
	width: 100%;
}
.height-100vh{
	height: 100vh;
}
.position-relative{
  position: relative;
}
.bg-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.72);
}
/*=========================
      3. Title
  =======================*/
.section{
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
.section-title {
  letter-spacing: 0.02em;
  font-weight: 700;
  text-transform: uppercase;
}
.sub-title {
  font-size: 16px;
  line-height: 24px;
  padding-top: 10px;
}
/* =============
   4. Bootstrap Reset
============== */
/* Text color */
.text-primary {
  color: #1b9cde;
}
.text-success {
  color: #66d203;
}
.text-info {
  color:#00a4fe;
}
.text-warning {
  color: #f5a623;
}
.text-danger {
  color: #e66060;
}
.text-muted {
  color: #898989;
}
.text-white {
  color: #fff !important;
}
.text-gray{
  color: #777 !important;
  line-height: 31px;
}
.text-dark{
  color: #000 !important;
}
/*-------------BACKGROUND COLOR---*/
.bg-gray {
    background-color: #f2f0f1;
}
#worksx{
  background-image: radial-gradient(circle at top left, rgb(195, 195, 195) 0%, rgb(195, 195, 195) 2%,rgb(202, 202, 202) 2%, rgb(202, 202, 202) 23%,rgb(209, 209, 209) 23%, rgb(209, 209, 209) 55%,rgb(217, 217, 217) 55%, rgb(217, 217, 217) 80%,rgb(224, 224, 224) 80%, rgb(224, 224, 224) 86%,rgb(231, 231, 231) 86%, rgb(231, 231, 231) 96%,rgb(238, 238, 238) 96%, rgb(238, 238, 238) 100%);
  background-repeat: no-repeat;
}
.bg-gray-light {
  background-color: #f5f5f7;
}
.bg-white{
  background-color: #fff;
}
.bg-dark{
  background-color: #4A2343 !important;
}
/*====Buttons=======*/
.default-button {
  border-radius: 5px;
  display: inline-block;
  background-color: #35c20a;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 18px 36px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #fff !important;
}

.default-button:after {
  display: none;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: rgba(0, 0, 0, 0.247);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  top: 50%;
  left: 50%;
  -webkit-animation: ripple 1s;
          animation: ripple 1s;
  opacity: 0;
}

.default-button:focus:not(:active)::after {
  display: block;
}

.popup-btn {
  border-radius: 5px;
  display: inline-block;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 12px 30px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #fff !important;
}

.popup-btn:after {
  display: none;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: rgba(0, 0, 0, 0.247);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  top: 50%;
  left: 50%;
  -webkit-animation: ripple 1s;
          animation: ripple 1s;
  opacity: 0;
}

.popup-btn:focus:not(:active)::after {
  display: block;
}

.popup-btn.danger {
  background-color: #f27474;
}

.popup-btn.success {
  background-color: #35c20a;
}

.popup-btn.agree {
  background-color: #35c20a;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

/* ---------------------------------------------------------------- */
/* 05.Contact Form                                                   
/* ---------------------------------------------------------------- */
.contact-form-wrap {
  padding: 30px;
  background-color: #F2F0F1;
  
  border-radius: 10px;
  -webkit-box-shadow: 0 23px 49px 0 rgba(40, 9, 34, 0.447);
          box-shadow: 0 23px 49px 0 rgba(40, 9, 34, 0.447);
}

.contact-form-wrap .contact-form-group {
  position: relative;
  margin-bottom: 30px;
  
}

.contact-form-wrap .contact-form-group > i {
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  position: absolute;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  display: inline-block;
  pointer-events: none;
  border: 1px solid #4A2343;
  color: #4A2343;
  background: #F2F0F1;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.contact-form-wrap .contact-form-group .form-control {
  height: 60px;
  color: #000;
  outline: none;
  padding: 0 60px;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 5px 20px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 5px 20px 0 rgba(61, 82, 96, 0.15);
}

@media screen and (max-width: 576px) {
  .contact-form-wrap .contact-form-group .form-control {
    font-size: 14px;
  }
}

.contact-form-wrap .contact-form-group .form-control:focus {
  outline: none;
  border: none;
  color: #000;
  -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.contact-form-wrap .contact-form-group #txtInput {
  padding-left: 90px;
}

.contact-form-wrap .contact-form-group #txtCaptchaSpan {
  position: absolute;
  top: 50%;
  height: 60px;
  padding-left: 14px;
  padding-right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fb3535;
  color: #fff;
  border-radius: 5px 0 0 5px;
}

.contact-form-wrap .contact-form-group textarea.form-control {
  height: auto;
  padding-top: 20px;
}

.contact-form-wrap .empty-form span, .contact-form-wrap .email-invalid span, .contact-form-wrap .phone-invalid span, .contact-form-wrap .terms-alert span, .contact-form-wrap .subject-alert span, .contact-form-wrap .security-alert span {
  display: block;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #721c24;
  background: rgba(242, 116, 116, 0.2);
}

#error_message {
  margin-top: 30px;
  display: block;
  padding: 20px;
  border-radius: 5px;
  word-break: break-word;
  background: rgba(242, 116, 116, 0.2);
  color: #721c24;
}

.custom-modal .modal-header {
  text-align: center;
  padding: 20px;
}

.custom-modal .modal-header h5, .custom-modal .modal-header button {
  color: #fff;
}

.custom-modal .modal-header.danger {
  background: #f27474;
  color: #fff;
}

.custom-modal .modal-header.success {
  background: #35c20a;
  color: #fff;
}

.custom-modal .modal-header.terms {
  background: #35c20a;
  color: #fff;
}

.custom-modal .modal-body {
  padding: 20px;
}

.custom-modal .modal-body .form-popup-inner {
  text-align: center;
}

.custom-modal .modal-body .form-popup-inner .form-icon {
  margin-bottom: 30px;
}

.custom-modal .modal-body .form-popup-inner .form-icon svg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.custom-modal .modal-body .form-popup-inner .form-icon.danger svg {
  fill: #f27474;
  stroke: #f27474;
  background: rgba(242, 116, 116, 0.1);
}

.custom-modal .modal-body .form-popup-inner .form-icon.success svg {
  fill: #fb3535;
  stroke: #fb3535;
  background: rgba(10, 192, 131, 0.1);
}

.custom-modal .modal-footer {
  padding: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
          animation: dash 0.9s ease-in-out;
}

.path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
          animation: dash 0.9s 0.35s ease-in-out forwards;
}

.path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dashCheck 0.9s 0.35s ease-in-out forwards;
          animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

.custom-control {
  padding: 0;
}

.custom-control .custom-control-input {
  position: relative;
}

.custom-control span {
  vertical-align: middle;
  margin-left: 14px;
  color: #000;
}

.custom-control span a {
  color: #fb3535;
}

@media screen and (max-width: 576px) {
  .custom-control span {
    font-size: 14px;
  }
}

.custom-control .custom-control-label {
  margin-left: 0;
  width: 32px;
  height: 32px;
  outline: none;
  text-align: center;
  line-height: 32px;
}

.custom-control .custom-control-label::before {
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  text-align: center;
  line-height: 32px;
  position: absolute;
  border: none !important;
  pointer-events: initial;
  border-radius: 50% !important;
  display: inline-block;
  color: #35c20a;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: rgb(192 102 10 / 20%);
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.custom-control-input:checked ~ .custom-control-label::before,
.custom-control-label:active::before,
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  border: none;
  content: "\f00c";
  color: #fb3535;
  background: rgb(192 102 10 / 20%);
}

.custom-control-label::after {
  display: none;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border: none;
}

.form-validate-icons {
  top: 0;
  right: 14px;
  height: 60px;
  position: absolute;
  line-height: 60px;
}

.form-validate-icons span {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form-validate-icons span:before {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.form-validate-icons span.error {
  opacity: 1;
  visibility: visible;
}

.form-validate-icons span.error:before {
  content: "\f00d";
  color: #f27474;
  background: rgba(242, 116, 116, 0.2);
}

.form-validate-icons span.success {
  opacity: 1;
  visibility: visible;
}

.form-validate-icons span.success:before {
  content: "\f00c";
  color: #32b354;
  background: rgb(10 192 24 / 20%);
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select, .custom-select-wrapper .select-hide {
  display: none;
}

.custom-select-wrapper .select-selected {
  border-radius: 5px;
  outline: none;
  padding: 18px 60px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #fff;
  color: #677294 !important;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(61, 82, 96, 0.15);
          box-shadow: 0px 5px 20px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-selected:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
          box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-selected:after {
  right: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  content: "\f078";
  position: absolute;
  pointer-events: none;
  display: inline-block;
  color: #fb3535;
  background: rgb(192 102 10 / 20%);
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.custom-select-wrapper .select-selected.select-arrow-active:after {
  content: "\f077";
}

.custom-select-wrapper .select-items {
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: 10px;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
          box-shadow: 0px 23px 49px 0px rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-items .same-as-selected {
  background-color: #fb3535;
  border-bottom-color: #fb3535;
  color: #fff !important;
}

.custom-select-wrapper .select-items .same-as-selected:after {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.custom-select-wrapper .select-items div {
  color: #000;
  outline: none;
  width: 100%;
  display: block;
  padding: 18px 60px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 576px) {
  .custom-select-wrapper .select-items div {
    font-size: 14px;
  }
}

.custom-select-wrapper .select-items div:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.custom-select-wrapper .select-items div:last-child {
  border-bottom: 0;
}

.custom-select-wrapper .select-items div:after {
  content: "\f036";
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  z-index: 14;
  position: absolute;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  display: inline-block;
  color: #fb3535;
  background: rgb(192 102 10 / 20%);
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.custom-select-wrapper .select-items div:hover {
  background-color: #fb3535;
  border-bottom-color: #fb3535;
  color: #fff;
}

.custom-select-wrapper .select-items div:hover:after {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------------------------------------------------------------- */
/* 06.Features                                                   
/* ---------------------------------------------------------------- */
.features-box {
  padding: 30px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 6px 10px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 6px 10px 0 rgba(61, 82, 96, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.features-box:hover {
  -webkit-box-shadow: 0 22px 49px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 22px 49px 0 rgba(61, 82, 96, 0.15);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.features-box .features-icon i {
  color: #fff;
  font-size: 40px;
  margin-left: 0;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fb3535;
}

/* ---------------------------------------------------------------- */
/* 07.Footer                                                   
/* ---------------------------------------------------------------- */
.footer {
  background: #050626;
}

.footer .copyright-wrap {
  padding: 30px;
}

.footer .copyright-wrap .copyright-inner .copyright-text {
  text-align: center;
  color: #fff;
  opacity: 0.85;
}
/*# sourceMappingURL=style.css.map */
.btn {
  padding: 9px 28px;
}
.btn-sm {
  padding: 5px 10px;
}
.btn-rounded {
  border-radius: 30px;
}
.btn-primary {
  background-color: #1b9cde !important;
  border: 1px solid #1b9cde !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.open > .dropdown-toggle.btn-primary {
  background-color: #1a89c1 !important;
  border: 1px solid #1a89c1 !important;
}
.btn-success {
  background-color: #64b937 !important;
  border: 1px solid #64b937 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.focus,
.btn-success:active,
.btn-success:focus,
.btn-success:hover,
.open > .dropdown-toggle.btn-success {
  background-color: #5ab903 !important;
  border: 1px solid #5ab903 !important;
}
.btn-info {
  background-color: #00a4fe !important;
  border: 1px solid #00a4fe !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.focus,
.btn-info:active,
.btn-info:focus,
.btn-info:hover,
.open > .dropdown-toggle.btn-info {
  background-color: #0094e5 !important;
  border: 1px solid #0094e5 !important;
}
.btn-warning {
  background-color: #ffb600 !important;
  border: 1px solid #ffb600 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.focus,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:hover,
.open > .dropdown-toggle.btn-warning {
  background-color: #e6a400 !important;
  border: 1px solid #e6a400 !important;
}
.btn-danger {
  background-color: #e66060 !important;
  border: 1px solid #e66060 !important;
}
.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.btn-danger.active,
.btn-danger.focus,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.open > .dropdown-toggle.btn-danger {
  background-color: #e34a4a !important;
  border: 1px solid #e34a4a !important;
}
.btn-default {
background-color: #ffffff;
border-color: rgba(38, 44, 48, 0.2);
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default.focus,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.open > .dropdown-toggle.btn-default {
  background-color: rgba(38, 44, 48, 0.07);
  border: 1px solid rgba(38, 44, 48, 0.2);
}
.btn-white {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  color: #000 !important;
  transition: all 0.3s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.focus,
.btn-white:active,
.btn-white:focus,
.btn-white:hover,
.open > .dropdown-toggle.btn-white {
  background-color: #000 !important;
  border: 1px solid #000 !important;
  color: #fff !important;
  transition: all 0.5s;
}
.btn-dark {
  background-color: #4A2343;
  border: 1px solid #262c30;
  color: #fff;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.btn-dark.focus,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:hover,
.open > .dropdown-toggle.btn-dark {
  background-color: #262c30 !important;
  border: 1px solid #262c30 !important;
  color: #fff !important;
}
.btn-custom {
  color: #4A2343;
  transition: all 0.3s;
  border: 1px solid #4A2343;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active,
.btn-custom.active,
.btn-custom.focus,
.btn-custom:active,
.btn-custom:focus,
.btn-custom:hover,
.open > .dropdown-toggle.btn-custom {
  color: #4A2343 !important;
  transition: all 0.5s;
}
/*======================
  6.Navbar
  ======================*/
/* -- Topbar -- */
.tagline {
  background: #f6f6f6;
  font-size: 13px;
  color: #2d2e2e !important;
}
.email, .phone {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  padding: 11px 0;
  font-size: 15px;
}
.tagline .pull-left i {
  font-weight: 400;
  display: inline-block;
  margin-right: 5px;
}
.email a{
  transition: all 300ms;
  color: #000 !important;
}
.top_socials {
    margin: 0 12px;
}
.top_socials li {
    width: 30px;
    display: inline-block;
    vertical-align: top;
    margin-right: 0;
    padding: 0;
}
.top_socials a {
    display: block;
    line-height: 40px;
    transition: all 300ms;
    -webkit-transition: all 300ms;
    text-align: center;
    color: #000 !important;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
}
.tagline>.container-fluid{
  width: 90%;
}
.navbar-custom{
  padding: 20px 0px;
  width: 100%;
  border-radius: 0px;
  z-index: 999;
  margin-bottom: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.sticky-wrapper {
  position: absolute;
  width: 100%;
}

.navbar-nav {
  margin-top: 10px;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: #ffffff !important;
  text-transform: uppercase;
}
.navbar-custom .navbar-nav li a {
  color: #DDACB3;
  font-size: 13px;
  border-bottom: 3px solid transparent;
  background-color: transparent !important;
  padding: 7px 0;
  margin: 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.navbar-custom>.container-fluid{
  width: 90%;
}
.navbar-custom .navbar-nav li a:hover,.navbar-custom .navbar-nav li a:focus,.navbar-custom .navbar-nav li a:active {
  color: #DDACB3;
}

.navbar-custom .navbar-nav li.active a {
  color: #4A2342 !important;
  font-weight: bold;
}
.is-sticky .navbar-custom{
  margin-top: 0px;
  padding: 10px 0px;
  background-color: #fff;
  -moz-box-shadow: 0 10px 33px rgba(0,0,0,.1);
  -webkit-box-shadow: 0 10px 33px rgba(0,0,0,.1);
  box-shadow: 0 10px 33px rgba(0,0,0,.1);
}

.navbar-toggle {
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #ffffff;
}

.navbar-custom .btn-custom {
  margin-top: 8px;
  margin-left: 20px;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
  background-color: transparent;
  border-color: #337ab7;
}


/* Navbar white */

.navbar-header-white {
  background-color: #ffffff !important;
  padding: 15px 0px !important;
}

.navbar-header-white .logo {
  color: #DDACB3 !important;
}
.navbar-header-white.navbar-custom .navbar-nav li a {
  color: #4A2342 !important;
}

.navbar-header-white.navbar-custom .navbar-toggle {
  color: #DDACB3;
}
/*----Navbar-sticky--*/

.navbar-sticky.small {
    top: 0px !important;
}

.navbar-sticky {
    background-color: #ffffff;
}
.navbar-sticky .navbar-nav>li>a {
    color: #4A2342;
}
.navbar-sticky .navbar-nav li a:hover,.navbar-sticky .navbar-nav li a:focus,.navbar-sticky .navbar-nav li a:active {
  color: #4A2342 !important;  
}
.navbar-sticky .navbar-nav li.active a {
  color: #000 !important;
}
.navbar-sticky .navbar-brand {
    color: #666 !important;
}
.navbar-sticky-half{
    position: relative;
    background-color: #ffffff !important;
    box-shadow: 0 2px 2px rgba(0,0,0,.1);
}
.navbar-sticky-half{
    background-color: #ffffff;
}
.navbar-sticky-half .navbar-nav>li>a {
    color: #9a9a9a;
}
.navbar-sticky-half .navbar-brand{
  color: #666 !important;
}
.navbar-sticky-half .navbar-nav li a:hover,.navbar-sticky-half .navbar-nav li a:focus,.navbar-sticky-half .navbar-nav li a:active {
  color: #9a9a9a !important;  
}
.navbar-sticky-half .navbar-nav li.active a {
  color: #000 !important;
}
.navbar-sticky-half .navbar-toggle{
  color: #666;
}
/*==============================
			HOME
=================================*/

#first-slider .main-container {
  padding: 0;
}


#first-slider .slide-content h3{
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  font-weight:700;
}

#first-slider .slide-content h4{
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  font-weight:700;
}
#first-slider .slide-content .text-left{
  padding-left: 40px;
}

#first-slider .carousel-indicators {
  bottom: 0;
}

#first-slider .carousel-control.right,
#first-slider .carousel-control.left {
  background-image: none;
}

#first-slider .carousel .item {
  height: 100vh;
  width:100%;
}

.carousel-inner .item .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#first-slider h3{
  animation-delay: 1s;
}

#first-slider h4 {
  animation-delay: 2s;
}

#first-slider h2 {
  animation-delay: 3s;
}

#first-slider .carousel-control {
  width: 6%;
  text-shadow: none;
  top: 47%;
  font-size: 30px;
}


#first-slider h1 {
  text-align: center;  
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
}

#first-slider .p {
  padding-top: 125px;
  text-align: center;
}

#first-slider .p a {
  text-decoration: underline;
}
#first-slider .carousel-indicators li {
  width: 14px;
  height: 14px;
  background-color: rgba(255,255,255,.4);
  border:none;
}
#first-slider .carousel-indicators .active{
  width: 16px;
  height: 16px;
  background-color: #fff;
  border:none;
}


.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}

.carousel-control .fa-angle-right, .carousel-control .fa-angle-left {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.carousel-control .fa-angle-left{
  left: 50%;
  width: 38px;
  height: 38px;
  margin-top: -15px;
  font-size: 30px;
  color: #fff;
  border: 3px solid #ffffff;
  border-radius: 53px;
}
.carousel-control .fa-angle-right{
  right: 50%;
  width: 38px;
  height: 38px;
  margin-top: -15px;
  font-size: 30px;
  color: #fff;
  border: 3px solid #ffffff;
  border-radius: 53px;
}
.carousel-control {
  opacity: 1;
}

#first-slider .slide-content {
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-title{
  font-size: 65px;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 300;
}
.slide-subtitle{
  font-size: 15px;
  line-height: 26px;
}
.bg-overlay {
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right:0;
  left: 0;
  bottom: 0;
}
/*-------HOME 2-------------*/
.first-slider-half .carousel .item {
  height:70vh !important;
  width:100%;
}
/*-----Home 3----*/
.home-bg{
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
  position: absolute;
  top: 0;
  opacity: 0.40;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/banner_01.jpg);
}
.main-home-full {
    height: 100vh;
    padding: 60px 0;
    z-index: 1;
    text-align: center;
    position: relative;
    color: #fff;
    background: #000;
    min-height: 400px;
}
.home-header-content {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}
.intro-title {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 48px;
  margin: 0px 0px 20px 0px;
  font-weight: 700;
}
.intro-title span {
  margin-left: 5px;
}
.intro-text {
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 24px;
}
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink .6s infinite;
  -moz-animation: blink .6s infinite;
  -ms-animation: blink .6s infinite;
  -o-animation: blink .6s infinite;
  animation: blink .6s infinite;
}
@-webkit-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}
@-moz-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}
@-o-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}
/*------Home 4----*/
.main-home-half {
    height: 70vh;
    padding: 60px 0;
    z-index: 1;
    text-align: center;
    position: relative;
    font-size: 13px;
    color: #fff;
    background:#000;
    min-height: 400px;
}
/*-----Home 5 ------*/
.home-section{
    background-attachment:fixed;
    background:#000;
    width: 100%;
    min-height: 650px;
    text-align:center;
    position: relative;
    background-size: cover;
    
}
.home-section .container {
    max-width: none;
    width: 100%;
}
.video-bg-slider {
    height: 650px;
    position: relative;
}
.video-bg-slider:after{
    background:rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.slidero {
    top: 50%;
    transform: translateY(-50%);
    position:absolute;
    width:100%;
    z-index:100;
}
/*-----Home 6----*/
.video-bg-slider-full {
  height: 100vh;
  position: relative;
}
.video-bg-slider-full:after{
    background:rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
/*-------Home 7----*/
.navbar-sticky {
    background-color: #ffffff;
}
.navbar-sticky {
    top: 43px !important;
}
/*===============================
    7.About Us
  ===============================*/
.about-fea-p {
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.about-desc{
  line-height: 24px;
  padding-top: 10px;
}
/*==============================
  8.Fun Factors
  ==============================*/
.fact-border-left{
  border-left: 1px solid #777;
}
/*====================================
	9.Video play
======================================*/
.bg-overlay-parllax{
  background-color: rgba(0, 0, 0, 0.72);
}
.video-name{
	font-size:60px;
}
.video-name i{
	font-size:100px;
	position: relative;
	top: 20px;
}

/*==========================================
	10.BLOG SECTION
============================================*/
.blog-desc{
	line-height: 26px;
}
.blog-border{
	height: 1px;
	background-color: #dedede;
	margin: 18px 0;
	width: 60px;
}
/*========================================	
	11.PURCHASE SECTION
===========================================*/
.purchase-desc{
	font-size: 28px;
}
/*=================================
	12.SERVICE SECTION
===================================*/
.service-icon i{
  font-size: 36px;
  border: 1px solid rgba(34, 35, 40, 0.5);
  height: 75px;
  border-radius: 50%;
  width: 75px;
  line-height: 73px;
}
.service-title{
  font-size: 16px;
  padding-top: 15px;
  font-weight: 700;
}
.service-content{
	line-height: 24px;
	padding:15px;
}
/*===============================
  13.PORTFOLIO
  ===============================*/

.filter-list {
  margin-bottom: 30px;
}
.filter-list a {
  padding: 5px 10px;
  display: block;
  border-radius: 3px;
  color: #666;
  margin: 10px 15px;
  text-decoration: none !important;
  outline: none !important;
}
.portfolio-img:hover .portfolio-img-overlay span {
  opacity: 2;
}
.portfolio-img-overlay span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 250ms linear;
}
.filter-list a.current {
  color: #ffffff;
}
.container .work-grid-3 .work-item {
  width: 33.2%;
}
.item-content {
  border-radius: 5px;
  box-shadow:  10px 10px 30px #00000071,
              -10px -10px 30px #4c4c4c5e;
  background-image: radial-gradient(circle at bottom top, rgb(242, 242, 242) 0%, rgb(242, 242, 242) 6%,rgb(238, 238, 238) 6%, rgb(238, 238, 238) 15%,rgb(234, 234, 234) 15%, rgb(234, 234, 234) 47%,rgb(230, 230, 230) 47%, rgb(230, 230, 230) 54%,rgb(225, 225, 225) 54%, rgb(225, 225, 225) 56%,rgb(221, 221, 221) 56%, rgb(221, 221, 221) 90%,rgb(217, 217, 217) 90%, rgb(217, 217, 217) 100%);
  margin: 10px;
  padding: 10px;
  float: left;
}

#img_lista {
  border-radius: 15px;
  background: #e0e0e0;
  box-shadow:  20px 20px 60px #ffffff,
              -20px -20px 60px #ffffff;
}
.project-desc h4{
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  padding-top: 10px;
}
/*=======================================
     14. TESTIMONIAL
  =======================================*/
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}
.review-desc{
  font-size: 18px;
  line-height: 32px;
  font-style: italic;
  margin-bottom: 25px;
 }
 .quote-size{
  font-size: 65px;
}

.user-img {
  height: 60px !important;
  width: 60px !important;
  margin-bottom: 30px;
}
/*===================================
  15.PRICING BOX
  ===================================*/
.pricing-plan {
  border-radius: 15px;
  background: #e0e0e0;
  box-shadow:  20px 20px 60px #bebebe,
              -20px -20px 60px #ffffff;
}
.plan-name{
  padding:40px 0  70px 0;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  border-radius: 7px 7px 0 0;
}
.pricing-features{
  padding-top: 20px;
  font-size: 15px;
  line-height: 32px;
}
.plan-price{
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: -60px auto 0;
  padding: 2px 0px;
}
/*==================================
    16. TEAM-SECTION
  ===================================*/
.team-member img{
  height: 180px;
  width: 180px;
}
/*===========================================
		17.CONTACT US
============================================*/
.form-control {
  margin-bottom: 25px;
  box-shadow: none !important;
  border: none;
  height: 44px;
}
/*========================================= 
     18.FOOTER COPYRIGHT
  ==========================================*/
.footer .copy-rights,.footer .social {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  padding: 30px 40px;
}
.footer{
  background-color: #000;
}
.copy-rights{
  line-height: 36px;
}
.social li a {
  display: block;
  color: #777 !important;
  font-size: 20px;
  line-height: 36px;
  padding:0 8px;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s;
}
.social li a:hover {
  color: #f5f5f5 !important;
}
/*=====================================
  19.RESPONSIVE
====================================*/
@media (max-width: 768px){
  .section{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .navbar-custom{
    margin-top: 0px;
    padding: 5px 0px !important;
    background-color: #DDACB3;
    -moz-box-shadow: 0 10px 33px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 10px 33px rgba(0,0,0,.1);
    box-shadow: 0 10px 33px rgba(0,0,0,.1);
  }
  .logo {
    margin-top: 5px;
  }
  .about-fea-p {
    margin-top: 30px;
  }

  .navbar-custom>.container-fluid{
    width: 100%;
  }
  .navbar-custom .navbar-nav li.active a {
    border-color: transparent;
  }

  .float-none{
    text-align: center !important;
    float: none !important;
  }

  .login-btn{
    padding-left:10px;
  }

  .slide-text {
    padding: 10px 50px;
  }
  .control-round .carousel-control{
    display: none;
  }
  .padding-t-b-60{
    padding-bottom: 30px;
    padding-top:30px;
  }

  .video-name i{
    font-size:65px;
    position: relative;
    top: 18px;
  }
  .intro-title {
  font-size: 30px;
  }
  .video-name{
    font-size:25px;
  }
  .container .work-grid-3 .work-item {
    width: 100%;
  }
  .form-control{
    height:45px;
  }
  .slide-title{
    font-size: 32px;
  }
  .slide-subtitle{
    font-size:15px;
    line-height: 22px;
  }
  .navbar-sticky {
    top:0px !important;
  }
  #first-slider .carousel-control {
    display: none;
  }
  .filter-list a {
    margin:5px 0px;
  }
  .navbar-sticky .navbar-brand {
    color: #fff !important;
  }
  .navbar-sticky-half .navbar-brand {
    color: #fff !important;
  }
  .navbar-sticky-half .logo {
    color: #666 !important;
  }  
}


/*==================================
STYLE SWITHER - Demo purpose only
==================================*/ 

#style-switcher div h3 {
    color: #ffffff;
    font-size: 16px;
    margin: 8px 3px 12px;
}
#style-switcher {
    background: none repeat scroll 0 0 #2b2424;
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.08);
    left: -189px;
    position: fixed;
    top: 17%;
    width: 189px;
    z-index: 9999;
    padding: 10px 5px;
}
#style-switcher div {
    padding: 5px 10px;
}
#style-switcher .bottom {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #252525;
    padding: 0;
}
#style-switcher .bottom a.settings {
    background: none repeat scroll 0 0 #2b2424;
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.08);
    display: block;
    height: 41px;
    position: absolute;
    right: -40px;
    top: 0;
    width: 40px;
    padding: 3px;
}
#style-switcher .bottom a {
  text-decoration: none;
}

#style-switcher .bottom a.settings i {
    margin-left: 5px;
    color: #ffffff;
    font-size: 24px;
    position: absolute;
}

ul.pattern {
    list-style: none outside none;
    margin: 0 0 0px;
    overflow: hidden;
  padding:0;
  border-radius: 0px;
}
ul.pattern li {
    float: left;
    margin: 2px;
}
ul.pattern li a {
    cursor: pointer;
    display: block;
    height: 35px;
    width: 35px;
    border-radius: 0px 35px 0px 0;
    margin: 5px;
}

ul.pattern .color1 {
  background-color: #01c7a4;
}
ul.pattern .color2 {
  background-color: #d13a7a;
}
ul.pattern .color3 {
  background-color: #1dc6df;
}
ul.pattern .color4 {
  background-color: #33b86c;
}
ul.pattern .color5 {
  background-color: #5ba1e1;
}
ul.pattern .color6 {
  background-color: #Fbce43;
}
ul.pattern .color7 {
  background-color: #7578f9;
}
ul.pattern .color8 {
  background-color: #f05050;
}

@media only screen and (max-width: 479px) {
#style-switcher {
    display: none;
}
}

.filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-filter-modern {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-list-modern {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn-modern {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.filter-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 37, 67, 0.2);
    border-color: #4E2543;
    color: #4E2543;
}

.filter-btn-modern.active {
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    border-color: #4E2543;
    color: white;
    box-shadow: 0 8px 25px rgba(78, 37, 67, 0.3);
}

.filter-count {
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
}

/* Badge para zona geográfica */
.client-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    z-index: 2;
}

.client-badge.norte {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.client-badge.centro {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.client-badge.sur {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
}

/* Información de servicio mejorada */
.service-info {
    display: block;
    margin-top: 10px;
    color: #888;
    font-size: 12px;
    line-height: 1.4;
}

.service-info i {
    margin-right: 5px;
    color: #4E2543;
}

/* Loading state */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 15px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4E2543;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animaciones de entrada */
.work-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.work-item.show {
    opacity: 1;
    transform: translateY(0);
}

.work-item.animate {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
    .filter-list-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn-modern {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .results-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pagination-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

/* Ajustes para el grid de clientes - 3 o 4 columnas */
.container .work-grid-3 .work-item {
  width: 31.33%; /* 3 columnas con espacio entre ellas */
  margin-bottom: 30px;
  float: left;
  margin-right: 2%;
}

.container .work-grid-3 .work-item:nth-child(3n) {
  margin-right: 0; /* Eliminar margen derecho cada 3 elementos */
}

/* Opción alternativa para 4 columnas */
.container .work-grid-4 .work-item {
  width: 23%; /* 4 columnas */
  margin-bottom: 30px;
  float: left;
  margin-right: 2.66%;
}

.container .work-grid-4 .work-item:nth-child(4n) {
  margin-right: 0; /* Eliminar margen derecho cada 4 elementos */
}

/* Mejorar el contenedor de elementos */
.item-content {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: white;
  margin: 0;
  padding: 0;
  float: none;
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto;
  min-height: 300px; /* Altura mínima para uniformidad */
}

.item-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Ajustar imagen dentro del contenedor */
#img_lista {
  border-radius: 15px 15px 0 0;
  background: #e0e0e0;
  box-shadow: none;
  width: 100%;
  height: 200px; /* Altura fija para uniformidad */
  object-fit: cover;
  display: block;
}

/* Ajustar descripción del proyecto */
.project-desc {
  padding: 20px;
  text-align: center;
  background: white;
  border-radius: 0 0 15px 15px;
}

.project-desc h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  padding-top: 0;
  margin-bottom: 8px;
  color: #4E2543;
}

.project-desc p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #888;
}

/* Grid responsive mejorado */
@media (max-width: 1200px) {
  .container .work-grid-3 .work-item,
  .container .work-grid-4 .work-item {
    width: 31.33%; /* 3 columnas en pantallas medianas */
    margin-right: 2%;
  }
  
  .container .work-grid-3 .work-item:nth-child(3n),
  .container .work-grid-4 .work-item:nth-child(3n) {
    margin-right: 0;
  }
  
  .container .work-grid-4 .work-item:nth-child(4n) {
    margin-right: 2%; /* Resetear el margen para 4 columnas */
  }
}

@media (max-width: 992px) {
  .container .work-grid-3 .work-item,
  .container .work-grid-4 .work-item {
    width: 48%; /* 2 columnas en tablets */
    margin-right: 4%;
  }
  
  .container .work-grid-3 .work-item:nth-child(2n),
  .container .work-grid-4 .work-item:nth-child(2n) {
    margin-right: 0;
  }
  
  .container .work-grid-3 .work-item:nth-child(3n),
  .container .work-grid-4 .work-item:nth-child(3n),
  .container .work-grid-4 .work-item:nth-child(4n) {
    margin-right: 4%; /* Resetear margenes anteriores */
  }
}

@media (max-width: 768px) {
  .container .work-grid-3 .work-item,
  .container .work-grid-4 .work-item {
    width: 100%; /* 1 columna en móviles */
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .container .work-grid-3 .work-item:nth-child(n),
  .container .work-grid-4 .work-item:nth-child(n) {
    margin-right: 0; /* Eliminar todos los márgenes derechos */
  }
  
  #img_lista {
    height: 250px; /* Aumentar altura en móviles */
  }
}

/* Clearfix para el contenedor */
.works-grid:after {
  content: "";
  display: table;
  clear: both;
}

/* Ajustes adicionales para la paginación */
.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.results-text {
  color: #666;
  font-weight: 500;
}

.view-options {
  display: flex;
  gap: 5px;
}

.view-btn {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
  background: #4E2543;
  color: white;
  border-color: #4E2543;
}

/* Paginación moderna */
.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pagination-modern {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.pagination-modern li {
  margin: 0;
}

.pagination-modern .page-link {
  border: none;
  background: #f8f9fa;
  color: #666;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.pagination-modern .page-link:hover {
  background: #4E2543;
  color: white;
  transform: translateY(-2px);
}

.pagination-modern .page-item.active .page-link {
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(78, 37, 67, 0.3);
}

.pagination-modern .page-item.disabled .page-link {
  background: #e9ecef;
  color: #adb5bd;
  cursor: not-allowed;
}

.page-size-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-size-selector label {
  color: #666;
  font-weight: 500;
  margin: 0;
}

.page-size-selector .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 12px;
  background: white;
  color: #666;
  font-weight: 500;
  cursor: pointer;
}

.page-size-selector .form-select:focus {
  border-color: #4E2543;
  box-shadow: 0 0 0 0.2rem rgba(78, 37, 67, 0.25);
}

/* Estadísticas de cobertura */
.coverage-stats {
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: 50px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: white;
}

.stat-icon.norte-color { 
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%); 
}

.stat-icon.centro-color { 
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%); 
}

.stat-icon.sur-color { 
  background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%); 
}

.stat-icon.total-color { 
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
}

.stat-number {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}

.stat-desc {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  line-height: 1.4;
}

/* Contenedor principal de servicios */
.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="20" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Grid de servicios mejorado */
.services-container {
  position: relative;
  z-index: 1;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

/* Caja de servicio modernizada */
.services-box {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
}

.services-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 37, 67, 0.1), transparent);
  transition: left 0.6s;
}

.services-box:hover::before {
  left: 100%;
}

.services-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(78, 37, 67, 0.2);
  border-color: rgba(78, 37, 67, 0.3);
}

/* Servicio individual */
.service {
  position: relative;
  z-index: 2;
}

/* Icono del servicio mejorado */
.service-icon {
  margin-bottom: 25px;
  position: relative;
}

.service-icon img {
  width: 80px;
  height: 80px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(78, 37, 67, 0.2));
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(78, 37, 67, 0.1) 0%, rgba(109, 53, 86, 0.1) 100%);
}

.services-box:hover .service-icon img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 25px rgba(78, 37, 67, 0.3));
}

/* Badge de categoría */
.service-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(78, 37, 67, 0.3);
}

/* Título del servicio */
.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #4E2543;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.services-box:hover .service-title::after {
  width: 80px;
}

/* Línea separadora personalizada */
.service hr {
  border: none;
  height: 2px;
  background: linear-gradient(135deg, transparent 0%, #4E2543 50%, transparent 100%);
  margin: 20px 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.services-box:hover .service hr {
  opacity: 1;
}

/* Contenido del servicio */
.service-content {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-content li {
  position: relative;
  padding: 8px 0 8px 25px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  border-radius: 5px;
  padding-left: 30px;
}

.service-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(78, 37, 67, 0.2);
  transition: all 0.3s ease;
}

.services-box:hover .service-content li::before {
  box-shadow: 0 0 0 6px rgba(78, 37, 67, 0.3);
  transform: translateY(-50%) scale(1.3);
}

.service-content li:hover {
  background: rgba(78, 37, 67, 0.05);
  padding-left: 35px;
  color: #4E2543;
  font-weight: 500;
}

/* Botón de acción (opcional) */
.service-action {
  margin-top: 25px;
  text-align: center;
}

.service-btn {
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  box-shadow: 0 5px 15px rgba(78, 37, 67, 0.3);
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 37, 67, 0.4);
  background: linear-gradient(135deg, #6d3556 0%, #4E2543 100%);
}

/* Efectos de número/contador */
.service-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(78, 37, 67, 0.3);
  z-index: 3;
}

/* Título de sección mejorado */
.services-section .section-title {
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  position: relative;
}

.services-section .section-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  border-radius: 2px;
}

.services-section .sub-title {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* Animaciones de entrada */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-box {
  animation: slideInUp 0.6s ease forwards;
}

.services-box:nth-child(1) { animation-delay: 0.1s; }
.services-box:nth-child(2) { animation-delay: 0.2s; }
.services-box:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1200px) {
  .services-row {
    gap: 20px;
  }
  
  .services-box {
    min-width: 280px;
    max-width: 350px;
  }
}

@media (max-width: 992px) {
  .services-row {
    flex-direction: column;
    align-items: center;
  }
  
  .services-box {
    max-width: 500px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services-box {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .service-icon img {
    width: 60px;
    height: 60px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .service-content {
    font-size: 13px;
  }
  
  .services-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .services-box {
    padding: 25px 15px;
  }
  
  .service-title {
    font-size: 16px;
  }
  
  .service-content li {
    padding-left: 25px;
    font-size: 12px;
  }
}

/* Variaciones de color para diferentes servicios */
.services-box.service-primary {
  border-top: 4px solid #4E2543;
}

.services-box.service-secondary {
  border-top: 4px solid #6d3556;
}

.services-box.service-accent {
  border-top: 4px solid #8b4a6b;
}

/* Efecto parallax sutil para el fondo */
.services-section {
  background-attachment: fixed;
}


.contact-cta-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-cta-section .bg-overlay {
  background: linear-gradient(135deg, rgba(78, 37, 67, 0.85) 0%, rgba(109, 53, 86, 0.9) 100%);
}

/* Contenido principal */
.cta-content {
  position: relative;
  z-index: 10;
}

/* Icono principal */
.cta-icon-wrapper {
  margin-bottom: 30px;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse-icon 2s infinite;
}

.cta-icon i {
  font-size: 40px;
  color: white;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Títulos */
.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* Botones de contacto */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-width: 200px;
  justify-content: center;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  text-decoration: none;
  color: white;
}

/* Botón WhatsApp */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Botón Facebook */
.facebook-btn {
  background: linear-gradient(135deg, #1877F2 0%, #0866FF 100%);
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover {
  background: linear-gradient(135deg, #0866FF 0%, #1877F2 100%);
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.5);
}

/* Botón Teléfono */
.phone-btn {
  background: linear-gradient(135deg, #FF6B6B 0%, #EE5A52 100%);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.phone-btn:hover {
  background: linear-gradient(135deg, #EE5A52 0%, #FF6B6B 100%);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
}

/* Iconos de botones */
.cta-btn i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: scale(1.2);
}

/* Texto de botones */
.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-text strong {
  font-size: 16px;
  margin-bottom: 2px;
}

.btn-text small {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 400;
}

/* Horarios de atención */
.attention-hours {
  margin-bottom: 40px;
}

.hours-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  margin: 0 auto;
}

.hours-wrapper i {
  font-size: 24px;
  color: #FFD700;
}

.hours-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.hours-info p:first-child {
  font-weight: 600;
  margin-bottom: 5px;
}

/* Indicadores de respuesta */
.response-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.indicator:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.indicator-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.indicator-icon.whatsapp-color {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.indicator-icon.facebook-color {
  background: linear-gradient(135deg, #1877F2 0%, #0866FF 100%);
}

.indicator-icon.phone-color {
  background: linear-gradient(135deg, #FF6B6B 0%, #EE5A52 100%);
}

.indicator span {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* Elementos flotantes decorativos */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  top: 25%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element.element-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2.2rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    gap: 15px;
  }
  
  .cta-btn {
    padding: 15px 25px;
    min-width: 180px;
  }
  
  .response-indicators {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact-cta-section {
    min-height: 500px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .response-indicators {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hours-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .floating-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-icon {
    width: 80px;
    height: 80px;
  }
  
  .cta-icon i {
    font-size: 32px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-btn {
    padding: 12px 20px;
  }
  
  .btn-text strong {
    font-size: 14px;
  }
  
  .btn-text small {
    font-size: 11px;
  }
}

/* Efectos adicionales */
@media (prefers-reduced-motion: no-preference) {
  .cta-content {
    animation: fadeInUp 1s ease-out;
  }
  
  .cta-btn:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.2s both;
  }
  
  .cta-btn:nth-child(2) {
    animation: slideInUp 0.8s ease-out 0.4s both;
  }
  
  .cta-btn:nth-child(3) {
    animation: slideInRight 0.8s ease-out 0.6s both;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

.about-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  opacity: 0.8;
  z-index: -1;
}

/* Sección principal con imagen */
.about-image-wrapper {
  position: relative;
  height: 100%;
}

.about-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.about-main-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(78, 37, 67, 0.8) 0%, rgba(109, 53, 86, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.4s ease;
}

.about-main-image:hover .image-overlay {
  opacity: 1;
}

.experience-badge {
  text-align: center;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.about-secondary-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  border: 4px solid white;
}

.about-secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenido principal */
.about-content {
  padding-left: 40px;
}

.about-subtitle {
  color: #4E2543;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.about-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #333;
}

.highlight-text {
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

/* Características destacadas */
.about-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-left-color: #4E2543;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h5 {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.feature-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Botón de acción */
.about-cta {
  margin-top: 30px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(78, 37, 67, 0.3);
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(78, 37, 67, 0.4);
  text-decoration: none;
  color: white;
}

.about-btn i {
  transition: transform 0.3s ease;
}

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

/* Sección de valores corporativos */
.values-section {
  background: white;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234E2543" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.values-header {
  position: relative;
  z-index: 2;
}

.values-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.values-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

/* Tarjetas de valores */
.value-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.mission-card {
  border-top-color: #FF6B6B;
}

.mission-card:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
}

.vision-card {
  border-top-color: #4ECDC4;
}

.vision-card:hover {
  box-shadow: 0 25px 50px rgba(78, 205, 196, 0.2);
}

.commitment-card {
  border-top-color: #45B7D1;
}

.commitment-card:hover {
  box-shadow: 0 25px 50px rgba(69, 183, 209, 0.2);
}

.value-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.mission-card .value-icon {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.vision-card .value-icon {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.commitment-card .value-icon {
  background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
}

.value-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.value-divider {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.mission-card .value-divider {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.vision-card .value-divider {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.commitment-card .value-divider {
  background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
}

.value-description {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.value-footer {
  margin-top: auto;
}

.value-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.mission-card .value-badge {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.vision-card .value-badge {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.commitment-card .value-badge {
  background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
}

/* Sección de certificaciones */
.certifications-section {
  margin-top: 60px;
}

.certifications-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.certifications-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

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

.certification-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.certification-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: rgba(78, 37, 67, 0.2);
}

.cert-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #f8f9fa;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.cert-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.certification-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.certification-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .about-main-title {
    font-size: 2rem;
  }
  
  .values-section {
    padding: 40px 20px;
  }
  
  .about-secondary-image {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about-main-image img {
    height: 300px;
  }
  
  .about-main-title {
    font-size: 1.8rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .values-title {
    font-size: 1.8rem;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .about-main-title {
    font-size: 1.5rem;
  }
  
  .values-section {
    padding: 30px 15px;
  }
  
  .value-card {
    padding: 25px 15px;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* Animaciones de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.about-image-wrapper {
  animation: slideInLeft 0.8s ease-out;
}

.about-content {
  animation: slideInRight 0.8s ease-out;
}

.value-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.value-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.value-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.statistics-section {
    position: relative;
    background: linear-gradient(135deg, #4E2543 0%, #2c1a30 50%, #1a0f1d 100%);
    padding: 100px 0;
    overflow: hidden;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="5" cy="5" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="45" cy="10" r="1.5" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>') repeat;
    opacity: 0.3;
}

/* Header de la sección */
.statistics-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.statistics-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.statistics-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 400;
}

/* Fila de estadísticas */
.statistics-row {
    position: relative;
    z-index: 10;
}

/* Tarjetas de estadísticas */
.statistic-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.statistic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.statistic-card:hover::before {
    left: 100%;
}

.statistic-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Icono principal */
.statistic-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.clients-card .statistic-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.procedures-card .statistic-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.experience-card .statistic-icon {
    background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
    box-shadow: 0 10px 25px rgba(69, 183, 209, 0.4);
}

.efficiency-card .statistic-icon {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.4);
}

.statistic-card:hover .statistic-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Icono de fondo */
.statistic-bg-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    transition: all 0.3s ease;
}

.statistic-card:hover .statistic-bg-icon {
    transform: scale(1.1) rotate(-10deg);
    color: rgba(255, 255, 255, 0.08);
}

/* Contenido de la estadística */
.statistic-content {
    position: relative;
    z-index: 2;
}

.statistic-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.statistic-label {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.statistic-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* Barras de progreso */
.statistics-progress {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.progress-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-item {
    margin-bottom: 25px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-label {
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    height: 8px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    width: 0%;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progress-shine 2s infinite;
}

.progress-percentage {
    position: absolute;
    right: -50px;
    top: -25px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

@keyframes progress-shine {
    0% { left: -50px; }
    100% { left: 100%; }
}

/* Partículas decorativas */
.statistics-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.particle-3 {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.particle-4 {
    bottom: 40%;
    right: 25%;
    animation-delay: 6s;
}

.particle-5 {
    bottom: 20%;
    left: 30%;
    animation-delay: 1s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

/* Animaciones de entrada */
.statistic-card {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpStats 0.8s ease-out forwards;
}

.statistic-card:nth-child(1) { animation-delay: 0.1s; }
.statistic-card:nth-child(2) { animation-delay: 0.2s; }
.statistic-card:nth-child(3) { animation-delay: 0.3s; }
.statistic-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Contador animado */
.counter {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .statistics-title {
        font-size: 2rem;
    }
    
    .statistic-number {
        font-size: 2.5rem;
    }
    
    .statistic-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .progress-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 80px 0;
    }
    
    .statistics-header {
        margin-bottom: 40px;
    }
    
    .statistics-title {
        font-size: 1.8rem;
    }
    
    .statistics-subtitle {
        font-size: 1rem;
    }
    
    .statistic-number {
        font-size: 2rem;
    }
    
    .statistic-label {
        font-size: 16px;
    }
    
    .statistic-bg-icon {
        font-size: 80px;
    }
    
    .statistics-progress {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .statistic-card {
        padding: 25px 15px;
    }
    
    .statistic-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .statistic-number {
        font-size: 1.8rem;
    }
    
    .statistic-label {
        font-size: 14px;
    }
    
    .progress-wrapper {
        padding: 25px 15px;
    }
}

.shipping-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.shipping-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shipping-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%234E2543" opacity="0.05"/><circle cx="5" cy="5" r="0.8" fill="%234E2543" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23shipping-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* Mapa de cobertura */
.coverage-map-section {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.map-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.chile-map {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.map-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Puntos de cobertura en el mapa */
.coverage-point {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverage-point:hover {
    transform: scale(1.1);
}

.point-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulse-marker 2s infinite;
}

.north-point {
    top: 15%;
    left: 60%;
}

.north-point .point-marker {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.center-point {
    top: 45%;
    left: 45%;
}

.center-point .point-marker {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.south-point {
    top: 75%;
    left: 50%;
}

.south-point .point-marker {
    background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
}

.point-info {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.point-info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0,0,0,0.8);
}

.coverage-point:hover .point-info {
    opacity: 1;
    top: -70px;
}

.point-info h5 {
    margin: 0 0 2px 0;
    font-size: 12px;
    font-weight: 600;
}

.point-info p {
    margin: 0;
    font-size: 10px;
    opacity: 0.8;
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.3), 0 0 0 0 rgba(255,255,255,0.7);
    }
    50% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.3), 0 0 0 10px rgba(255,255,255,0);
    }
}

/* Información de rutas */
.route-info {
    flex: 1;
    max-width: 500px;
}

.route-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    opacity: 0.7;
    transform: scale(0.95);
}

.route-card.active {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left-color: #4E2543;
    opacity: 1;
    transform: scale(1);
}

.route-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.route-header i {
    color: #4E2543;
    font-size: 20px;
}

.route-header h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.route-cities {
    margin-bottom: 15px;
}

.city-tag {
    display: inline-block;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    margin: 2px;
}

.route-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.route-time i {
    color: #4E2543;
}

/* Características del servicio */
.shipping-features {
    margin-top: 40px;
}

.shipping-image-wrapper {
    position: relative;
    text-align: center;
}

.shipping-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

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

.shipping-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(78, 37, 67, 0.1);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    line-height: 1;
}

.badge-subtitle {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

/* Contenido de características */
.shipping-content {
    padding-left: 30px;
}

.shipping-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.shipping-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.shipping-features-list {
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-row:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h5 {
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.feature-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Botón de envío */
.shipping-cta {
    margin-top: 30px;
}

.shipping-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(78, 37, 67, 0.3);
}

.shipping-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(78, 37, 67, 0.4);
    text-decoration: none;
    color: white;
}

.shipping-btn i {
    transition: transform 0.3s ease;
}

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

/* Proceso de envío */
.shipping-process {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.process-header {
    margin-bottom: 50px;
}

.process-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.process-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Timeline del proceso */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4E2543 0%, #6d3556 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(78, 37, 67, 0.3);
}

.step-number {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    padding: 0 40px;
    max-width: 400px;
}

.timeline-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .map-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .chile-map {
        max-width: 300px;
    }
    
    .shipping-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .shipping-title {
        font-size: 1.8rem;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .shipping-process {
        padding: 30px 20px;
    }
    
    .coverage-map-section {
        padding: 30px 20px;
    }
    
    .route-card {
        padding: 20px;
    }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .shipping-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 16px;
    }
    
    .timeline-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .shipping-title {
        font-size: 1.5rem;
    }
    
    .process-title {
        font-size: 1.6rem;
    }
    
    .city-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .point-marker {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Animaciones */
@keyframes slideInMap {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.chile-map {
    animation: slideInMap 0.8s ease-out;
}

.route-info {
    animation: slideInRoutes 0.8s ease-out 0.2s both;
}

.timeline-item {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

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



.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%234E2543" opacity="0.05"/><circle cx="10" cy="10" r="1" fill="%234E2543" opacity="0.03"/><circle cx="50" cy="20" r="1.5" fill="%234E2543" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* Selector de tipo de trámite */
.pricing-selector {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.selector-header h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-tab {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    min-width: 150px;
    justify-content: center;
}

.pricing-tab:hover {
    border-color: #4E2543;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 37, 67, 0.2);
}

.pricing-tab.active {
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    border-color: #4E2543;
    color: white;
    box-shadow: 0 8px 25px rgba(78, 37, 67, 0.3);
}

.pricing-tab i {
    font-size: 18px;
}

/* Contenido de precios */
.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

/* Tarjetas de precios */
.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Plan destacado */
.pricing-card.featured {
    border-color: #4E2543;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 30px 60px rgba(78, 37, 67, 0.2);
}

/* Ribbon de plan */
.plan-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(78, 37, 67, 0.3);
}

.basic-plan .plan-ribbon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.express-plan .plan-ribbon {
    background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
}

/* Header de plan */
.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    position: relative;
}

.basic-plan .plan-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.premium-plan .plan-icon {
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    box-shadow: 0 10px 25px rgba(78, 37, 67, 0.3);
}

.express-plan .plan-icon {
    background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
    box-shadow: 0 10px 25px rgba(69, 183, 209, 0.3);
}

.document-plan .plan-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.consultation-plan .plan-icon {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.plan-description {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Precio */
.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    position: relative;
    box-shadow: 0 15px 30px rgba(78, 37, 67, 0.3);
}

.currency {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -5px;
}

.amount {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 12px;
    margin-top: -2px;
    opacity: 0.8;
}

.basic-plan .price-circle {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
}

.express-plan .price-circle {
    background: linear-gradient(135deg, #45B7D1 0%, #96C93D 100%);
    box-shadow: 0 15px 30px rgba(69, 183, 209, 0.3);
}

.document-plan .price-circle {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    box-shadow: 0 15px 30px rgba(78, 205, 196, 0.3);
}

.consultation-plan .price-circle {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    box-shadow: 0 15px 30px rgba(240, 147, 251, 0.3);
}

/* Características */
.pricing-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    background: rgba(78, 37, 67, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.features-list li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.features-list li i.fa-check {
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
}

.features-list li.not-included i.fa-times {
    background: #e0e0e0;
    color: #666;
}

.features-list li.not-included span {
    color: #999;
    text-decoration: line-through;
}

.features-list li span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Footer de plan */
.pricing-footer {
    text-align: center;
    margin-top: auto;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(78, 37, 67, 0.3);
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(78, 37, 67, 0.4);
    text-decoration: none;
    color: white;
}

.pricing-btn i {
    transition: transform 0.3s ease;
}

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

.plan-note {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Servicios especiales */
.special-services {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.special-services h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.special-services p {
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background: white;
    border-color: #4E2543;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(78, 37, 67, 0.1);
}

.service-item i {
    font-size: 40px;
    color: #4E2543;
    margin-bottom: 20px;
}

.service-item h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.special-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(78, 37, 67, 0.3);
}

.special-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(78, 37, 67, 0.4);
    text-decoration: none;
    color: white;
}

/* Información adicional */
.pricing-info {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

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

.info-card {
    text-align: center;
    padding: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(78, 37, 67, 0.3);
}

.info-card h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .special-services {
        padding: 40px 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-tab {
        width: 100%;
        max-width: 250px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .plan-name {
        font-size: 20px;
    }
    
    .price-circle {
        width: 100px;
        height: 100px;
    }
    
    .amount {
        font-size: 18px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-selector {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .price-circle {
        width: 80px;
        height: 80px;
    }
    
    .amount {
        font-size: 16px;
    }
    
    .features-list li {
        font-size: 13px;
    }
    
    .special-services {
        padding: 30px 15px;
    }
}

/* Efectos especiales para elementos destacados */
.pricing-card.featured {
    background: linear-gradient(135deg, rgba(78, 37, 67, 0.02) 0%, rgba(255,255,255,1) 100%);
}

.pricing-card.featured::after {
    content: '⭐ MÁS POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(78, 37, 67, 0.3);
}




.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="%234E2543" opacity="0.04"/><circle cx="10" cy="40" r="1" fill="%234E2543" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

/* Información de contacto */
.contact-info-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.contact-info-header {
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(78, 37, 67, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(78, 37, 67, 0.3);
}

.contact-details h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-details p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.contact-details a {
    color: #4E2543;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Redes sociales */
.contact-social {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.contact-social h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-link.facebook {
    background: linear-gradient(135deg, #0084FF 0%, #0056CC 100%);
}

.social-link.facebook-page {
    background: linear-gradient(135deg, #1877F2 0%, #0D47A1 100%);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Formulario de contacto */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Alertas del formulario */
.form-alerts {
    margin-bottom: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.alert.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Formulario moderno */
.modern-contact-form .form-group {
    margin-bottom: 25px;
}

.modern-contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-control:focus {
    border-color: #4E2543;
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 37, 67, 0.1);
    background: #fafafa;
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus + .input-icon {
    color: #4E2543;
}

.validation-feedback {
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
}

.validation-feedback.valid {
    color: #28a745;
}

.validation-feedback.invalid {
    color: #dc3545;
}

/* Select personalizado */
select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 45px center;
    background-size: 20px;
}

/* Captcha */
.captcha-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.captcha-display {
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(78, 37, 67, 0.3);
}

.captcha-refresh {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(180deg);
}

.captcha-wrapper .input-wrapper {
    flex: 1;
}

/* Botón de envío */
.form-submit-wrapper {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(78, 37, 67, 0.3);
    width: 100%;
    justify-content: center;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(78, 37, 67, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

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

/* Información adicional */
.contact-additional-info {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-additional-info .info-card {
    text-align: center;
    padding: 20px;
}

.contact-additional-info .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(78, 37, 67, 0.3);
}

.contact-additional-info .info-card h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-additional-info .info-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        margin-bottom: 30px;
    }
    
    .captcha-wrapper {
        flex-direction: column;
    }
    
    .captcha-display {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .form-control {
        padding: 12px 45px 12px 15px;
    }
    
    .contact-submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper,
    .contact-additional-info {
        padding: 25px 15px;
    }
    
    .captcha-display {
        font-size: 16px;
        padding: 12px 15px;
    }
}

/* Animaciones */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info-wrapper {
    animation: slideInLeft 0.8s ease-out;
}

.contact-form-wrapper {
    animation: slideInRight 0.8s ease-out 0.2s both;
}



.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Background del hero */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/banner_02.jpg') center center/cover no-repeat;
    filter: brightness(0.4) contrast(1.2);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 37, 67, 0.8) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(15, 52, 96, 0.8) 100%);
    z-index: 2;
}

/* Partículas flotantes */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 20%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 4s; }
.particle-4 { top: 80%; left: 70%; animation-delay: 6s; }
.particle-5 { top: 40%; left: 90%; animation-delay: 8s; }
.particle-6 { top: 70%; left: 10%; animation-delay: 10s; }

/* Contenido del hero */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 100px 0 80px;
    width: 100%;
}

.hero-inner {
    text-align: center;
    color: white;
}

/* Badge de especialización */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    animation: slideInDown 1s ease-out 0.5s both;
}

.badge-icon {
    color: #4E2543;
    font-size: 16px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Título principal */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line-1 {
    display: block;
    animation: slideInLeft 1s ease-out both;
}

.title-line-2 {
    display: block;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: slideInRight 1s ease-out 0.2s both;
}

.title-line-3 {
    display: block;
    font-size: 2.8rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.typed-container {
    position: relative;
    display: inline-block;
}

.element {
    color: #FFD700;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.typed-cursor {
    color: #4E2543;
    font-weight: 100;
    animation: blink 1s infinite;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-subtitle strong {
    color: #FFD700;
    font-weight: 600;
}

/* Características destacadas */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
}

.feature-item i {
    color: #4E2543;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

/* Botones de acción */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    color: white;
    border: 2px solid transparent;
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(78, 37, 67, 0.4);
    color: white;
    text-decoration: none;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Indicadores de confianza */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 5px;
}

.trust-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    color: #FFD700;
    text-decoration: none;
    transform: translateY(-5px);
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

/* Formas decorativas */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(78, 37, 67, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

/* Animaciones */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .title-line-3 {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line-3 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-trust-indicators {
        gap: 30px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line-3 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        padding: 15px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-trust-indicators {
        gap: 20px;
    }
    
    .trust-number {
        font-size: 1.8rem;
    }
    
    .trust-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-line-3 {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .badge-icon {
        font-size: 14px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Mejoras para accesibilidad y performance */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-image,
    .particle,
    .shape {
        animation: none;
    }
    
    .scroll-icon {
        animation: none;
    }
}

/* Optimización para pantallas de alta densidad */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg-image {
        background-image: url('../img/banner_02@2x.jpg');
    }
}




/*=================================
    BOTONES FLOTANTES
===================================*/

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) scale(0.5);
    pointer-events: none;
}

.floating-btn.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
}

.floating-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* Botón Scroll to Top */
.scroll-top-btn {
    background: linear-gradient(135deg, #4E2543 0%, #6d3556 100%);
    animation-delay: 0.1s;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #6d3556 0%, #8b4570 100%);
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.scroll-top-btn:hover::before {
    left: 100%;
}

/* Botón WhatsApp */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0.2s;
    position: relative;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white;
}

/* Efecto de pulso para WhatsApp */
.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite;
}

/* Tooltips */
.btn-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Animaciones */
@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.3);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
    70% {
        transform: translateY(0px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

.floating-btn.show {
    animation: bounceIn 0.6s ease-out both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .btn-tooltip {
        font-size: 11px;
        padding: 6px 10px;
        right: 65px;
    }
    
    .floating-btn:hover .btn-tooltip {
        right: 70px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .btn-tooltip {
        display: none; /* Ocultar tooltips en móviles muy pequeños */
    }
}

/* Efectos especiales */
.floating-btn:hover {
    animation: none; /* Pausar animación de pulso al hacer hover */
}

.scroll-top-btn i {
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover i {
    transform: translateY(-2px);
}

.whatsapp-btn i {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Compatibilidad con modo oscuro */
@media (prefers-color-scheme: dark) {
    .btn-tooltip {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
    }
    
    .btn-tooltip::after {
        border-left-color: rgba(255, 255, 255, 0.9);
    }
}

/* Mejora de accesibilidad */
.floating-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Reducir movimiento para usuarios que prefieren menos animación */
@media (prefers-reduced-motion: reduce) {
    .floating-btn,
    .whatsapp-pulse,
    .scroll-top-btn i,
    .whatsapp-btn i {
        animation: none;
        transition: none;
    }
    
    .floating-btn:hover {
        transform: none;
    }
}



