/*******************************/
/********* General CSS *********/
/*******************************/
/*************
colores var(--lb-blue-dark)
var(--lb-blue)
var(--rm-blue)

#0871a9
#2c97d5
#61a65c
#fb8206

******************/

:root {
    /* ── Paleta  ── */
    --rm-orange:       #fb8206;
    --rm-orange-light: #FAA831;
    --rm-orange-rgb:   246, 142, 31;

    --lb-blue-gb:      #00334f;
    --rm-blue-dark:    rgb(17, 75, 141);
    --rm-blue:         #0871a9;
    --rm-blue-transp:  #0871a9bf;
    --rm-blue-light:   #2c97d5;
    --rm-blue-rgb:     8, 113, 169;

    --rm-green:        #61a65c;
    --rm-green-mid:    #2FB36D;
    --rm-green-light:  #3AC97A;
    --rm-green-dark:   #006729;
    --rm-gray:         #6B7280;
    --rm-bg-light:     #E6F0FA;
    --rm-white:        #FFFFFF;
}

body {
    color: var(--lb-blue-gb) !important;
    background: #056c2e1a;
    font-family: "Quicksand", sans-serif;
    /* font-family: Quicksand, sans-serif; 
    font-family: "Abril Fatface", serif;*/
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--rm-blue-dark) !important;
    font-family: "Abril Fatface", serif;
}

a {
    font-family: "Abril Fatface", serif;
    font-weight: 600;
    color: var(--lb-blue);
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--lb-blue-dark);
    outline: none;
    text-decoration: none;
}

/* BTN  CUSTOM  */

.btn.custom-btn {
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Nunito Sans', sans-serif; */
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background: var(--rm-orange);
    border: 2px solid var(--rm-orange);
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-btn:hover {
    color: #ffffff;
    background: var(--rm-blue);
    border-color: var(--rm-blue);
}

.btn.custom-btn:focus,
.form-control:focus,
.custom-select:focus {
    box-shadow: none;
}

/* BTN  CUSTOM ORANGE  */

.btn.custom-btn-orange {
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Nunito Sans', sans-serif; */
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: var(--rm-orange);
    border: 2px solid var(--rm-orange);
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-btn-orange:hover {
    color: #ffffff;
    background: var(--rm-orange-light);
    border-color: var(--rm-orange-light);
}

.btn.custom-btn-orange:focus,
.form-control:focus,
.custom-select:focus {
    box-shadow: none;
}

/* BTN  CUSTOM GREEN  */

.btn.custom-btn-green {
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Nunito Sans', sans-serif; */
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: var(--rm-green-dark);
    border: 2px solid var(--rm-green-dark);
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-btn-green:hover {
    color: #ffffff;
    background: var(--rm-green);
    border-color: var(--rm-green);
}

.btn.custom-btn-green:focus,
.form-control:focus,
.custom-select:focus {
    box-shadow: none;
}


/* BTN ULTIMATE REF */

.btn-ultimate {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  background: var(--rm-blue-dark);
  border: 2.5px solid var(--rm-blue-dark);
  border-radius: 10px;
  padding: 20px 160px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 7px 0 #0e3d73, 0 10px 20px rgba(31,95,168,.35);
  transform: translateY(0);
  transition: transform .2s ease, box-shadow .2s ease, border-color .3s ease;
}
.btn-ultimate::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  box-shadow: 0 0 0 0 var(--rm-blue-dark);
  animation: outer-ping 2s ease-out infinite;
  pointer-events: none;
}
@keyframes outer-ping {
  0%   { box-shadow: 0 0 0 0 var(--rm-blue-dark); }
  60%  { box-shadow: 0 0 0 14px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.btn-ultimate::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn-ultimate:hover::before {
  animation: shimmer .7s ease forwards;
}
@keyframes shimmer {
  0%   { left: -80%; }
  100% { left: 130%; }
}
.btn-ultimate:hover {
  color: var(--rm-white);
  font-size: 20px;
  box-shadow: 0 0 0 3px var(--rm-blue-dark), 0 10px 0 #7dbaff33, 0 14px 28px rgba(31,95,168,.4);
  transform: translateY(-3px);
}
.btn-ultimate:active {
  transform: translateY(5px);
  box-shadow: 0 2px 0 #0e3d73, 0 4px 10px rgba(31,95,168,.25);
  border-color: var(--rm-blue-dark);
}

@media (max-width: 575px) {
  .btn-ultimate {
    padding: 16px 40px;
    font-size: 16px;
    place-content: center !important;
  }
}

.btn-long{
    width: 100%;
    text-align: center;
}

/* END BTNS */

.hidden {
    display: none !important;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--lb-blue);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    border-radius: 5px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: var(--lb-blue-dark);
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    color: var(--lb-blue-dark);
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    font-family: "Abril Fatface", serif;
    transition: .5s;
    
}

.navbar .navbar-brand span {
    color: var(--lb-blue);
}

.navbar .navbar-brand:hover {
    color: var(--lb-blue);
}

.navbar .navbar-brand:hover span {
    color: var(--lb-blue-dark);
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: var(--rm-white) !important;
    }
    
    .navbar .navbar-brand {
        color: var(--rm-blue-dark);
    }
    
    .navbar.nav-sticky .navbar-brand {
        color: var(--rm-blue);
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        font-family: "Abril Fatface", serif;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: var(--rm-blue);
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--rm-blue-light);
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: var(--rm-blue-light);
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand {
        color: var(--rm-blue);
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    background: #ffffff;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 51, 79, 0.25) 0%, rgba(0, 51, 79, 0.66) 100%);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 760px;
    /* height: calc(100vh - 35px); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    padding: 28px 32px;
    border-radius: 28px;
    background: rgba(0, 51, 79, 0.22);
    backdrop-filter: blur(4px);
    box-shadow: 0 24px 60px rgba(0, 51, 79, 0.22);
}

.carousel .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(8, 113, 169, 0.88);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(8, 113, 169, 0.26);
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.04;
    margin-bottom: 18px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.carousel .carousel-text h1 span {
    color: var(--rm-blue);
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 28px;
}

.carousel .carousel-btn .btn:last-child {
    margin-left: 10px;
    background: var(--rm-blue-dark);
    border-color: var(--rm-blue-dark);
}

.carousel .carousel-btn .btn:last-child:hover {
    color: var(--rm-white);
    background: var(--rm-blue);
    border-color: var(--rm-blue);
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 36px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }

    .carousel .carousel-text {
        padding: 22px 18px;
        border-radius: 20px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }

    .carousel .hero-badge {
        font-size: 11px;
        padding: 7px 12px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/page-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: var(--rm-blue);
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: var(--rm-blue);
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    color: var(--rm-blue-dark);
    margin-bottom: 5px;
    position: relative;
    font-size: 20px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 40px;
        font-weight: 600;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 30px;
        font-weight: 600;
    }
}


/*******************************/
/********* Booking CSS *********/
/*******************************/
.booking {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    background: rgba(0, 0, 0, .04);
}

.booking .booking-content {
    padding: 45px 0 15px 0;
}

.booking .booking-content .section-header {
    margin-bottom: 30px;
}

.booking .booking-form {
    padding: 60px 30px;
    background: var(--rm-blue);
}

.booking .booking-form .control-group {
    margin-bottom: 15px;
}

.booking .booking-form .input-group-text {
    position: absolute;
    padding: 0;
    border: none;
    background: none;
    top: 15px;
    right: 15px;
    color: #ffffff;
    font-size: 14px;
}

.booking .booking-form .form-control {
    height: 45px;
    font-size: 14px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 5px !important;
    border: 1px solid #ffffff;
    background: transparent;
}

.booking .booking-form select.form-control {
    padding: 0 10px;
}

.booking .booking-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.booking .booking-form .form-control:-ms-input-placeholder,
.booking .booking-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.booking .booking-form .input-group [data-toggle="datetimepicker"] {
    cursor: default;
}

.booking .booking-form .btn.custom-btn {
    width: 100%;
    color: var(--rm-blue);
    background: #ffffff;
    border: 1px solid #ffffff;
}

.booking .booking-form .btn.custom-btn:hover {
    color: #ffffff;
    background: transparent;
}


/*******************************/
/********** Menu CSS ***********/
/*******************************/
.food {
    position: relative;
    width: 100%;
    padding: 90px 0 60px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.food .food-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 50px 30px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.food .food-item:hover {
    box-shadow: none;
}

.food .food-item i {
    position: relative;
    display: inline-block;
    color: var(--rm-blue);
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    transition: .3s;
}

.food .food-item:hover i {
    color: var(--rm-blue-dark);
}

.food .food-item i::after {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -20px;
    left: -15px;
    border: 3px dotted var(--rm-blue);
    border-right: transparent;
    border-bottom: transparent;
    border-radius: 100px;
    transition: .3s;
}

.food .food-item:hover i::after {
    border: 3px dotted var(--rm-blue-dark);
    border-right: transparent;
    border-bottom: transparent;
}

.food .food-item h2 {
    font-size: 30px;
    font-weight: 700;
}

.food .food-item a {
    position: relative;
    font-size: 16px;
}

.food .food-item a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 25px);
    background: var(--rm-blue);
    transition: .3s;
}

.food .food-item a:hover::after {
    width: 100%;
    left: 0;
    background: var(--rm-blue-dark);
}



/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
}

.about .about-img img {
    position: relative;
    width: 100%;
    border-radius: 15px;
}

.about .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.about .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--rm-blue);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.about .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--rm-blue);
    border-radius: 50%;
    transition: all 200ms;
}

.about .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.about .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #ffffff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
    padding-left: 17px;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

.about .about-content {
    position: relative;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-img {
        margin-bottom: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.feature .section-header {
    margin-bottom: 30px;
}

.feature .feature-text {
    position: relative;
    width: 100%;
}

.feature .feature-img {
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
}

.feature .feature-img .col-6,
.feature .feature-img .col-12 {
    padding: 0;
    overflow: hidden;
}

.feature .feature-img img {
    width: 100%;
    transition: .3s;
}

.feature .feature-img img:hover {
    transform: scale(1.1);
}

.feature .feature-text .btn {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 45px;
}

.feature .feature-item {
    width: 100%;
    margin-bottom: 45px;
}

.feature .feature-item i {
    position: relative;
    display: block;
    color: var(--rm-blue-dark);
    font-size: 43px;
    left:20px;
    line-height: 60px;
    margin-bottom: 15px;
    background-image: linear-gradient(#ffffff, #d0f078);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature .feature-item i::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    top: 0px;
    left: -3px;
    background: var(--rm-blue);
    border-radius: 30px;
    z-index: -1;
}

.feature .feature-item h3 {
    font-size: 22px;
    font-weight: 700;
}


/*******************************/
/*********** Menu CSS **********/
/*******************************/
.menu {
    position: relative;
    padding: 45px 0 15px 0;
}

.menu .menu-tab {
    position: relative;
}

.menu .menu-tab img {
    max-width: 100%;
    border-radius: 15px;
}

.menu .menu-tab .nav.nav-pills .nav-link {
    color: #ffffff;
    background: var(--rm-blue);
    border-radius: 5px;
    margin: 0 5px;
}

.menu .menu-tab .nav.nav-pills .nav-link:hover,
.menu .menu-tab .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: var(--rm-blue-dark);
}

.menu .menu-tab .tab-content {
    padding: 30px 0 0 0;
    background: transparent;
}

.menu .menu-tab .tab-content .container {
    padding: 0;
}

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

.menu .menu-img {
    width: 80px;
    margin-right: 20px;
}

.menu .menu-img img {
    width: 100%;
    border-radius: 100px;
}

.menu .menu-text {
    width: calc(100% - 100px);
}

.menu .menu-text h3 {
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.menu .menu-text h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 13px;
    left: 0;
    border-top: 2px dotted #cccccc;
    z-index: -1;
}

.menu .menu-text h3 span {
    display: inline-block;
    float: left;
    padding-right: 5px;
    background: #ffffff;
}

.menu .menu-text h3 strong {
    display: inline-block;
    float: right;
    padding-left: 5px;
    color: var(--rm-blue);
    background: #ffffff;
}

.menu .menu-text p {
    position: relative;
    margin: 5px 0 0 0;
    float: left;
    display: block;
}

@media(max-width: 575.98px) {
    .menu .menu-text p,
    .menu .menu-text h3,
    .menu .menu-text h3 span,
    .menu .menu-text h3 strong {
        display: block;
        float: none;
        padding: 0;
        margin: 0;
    }
    
    .menu .menu-text h3 {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .menu .menu-text h3 span {
        margin-bottom: 3px;
    }
    
    .menu .menu-text h3::after {
        display: none;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
}

.team .team-img {
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
    margin-top: 15px;
    transform: scale(1.1);
    transition: .3s;
}

.team .team-item:hover img {
    margin-top: 0;
    margin-bottom: 15px;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team .team-social a {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    background: var(--rm-blue);
    opacity: 0;
}

.team .team-social a:hover {
    color: #ffffff;
    background: var(--rm-blue-dark);
}

.team .team-item:hover .team-social {
    background: rgba(256, 256, 256, .5);
}

.team .team-item:hover .team-social a:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .3s;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 700;
}

.team .team-text p {
    margin: 0;
    font-size: 16px;
}



/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--rm-blue);
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: var(--rm-blue);
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: var(--rm-blue-dark);
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: var(--rm-blue);
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: var(--rm-blue-dark);
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: "Quicksand", sans-serif;
    font-weight: 900;
    color: var(--rm-blue);
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--rm-blue);
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: var(--rm-blue);
    border-color: var(--rm-blue);
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-information {
    min-height: 150px;
    margin: 0 0 30px 0;
    padding: 30px 15px 0 15px;
    background: rgba(0, 0, 0, .04);
}

.contact .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rm-blue);
    border-radius: 50px;
}

.contact .contact-icon i {
    font-size: 18px;
    color: #ffffff;
}

.contact .contact-text {
    position: relative;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rm-blue-dark);
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
    color: #454545;
}

.contact .contact-social a {
    margin-right: 10px;
    font-size: 18px;
    color: var(--rm-blue);
}

.contact .contact-social a:hover {
    color: var(--rm-blue-dark);
}

.contact .contact-form iframe {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: rgba(0, 0, 0, .04);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #454545;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--rm-blue);
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--rm-blue-dark);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #454545;
    transition: .3s;
}

.footer .footer-link i {
    position: relative;
    margin-right: 10px;
}

.footer .footer-link a::before {
    position: relative;
    font-family: "Quicksand", sans-serif;
    font-weight: 900;
    margin-right: 10px;
    color: var(--rm-blue);
}

.footer .footer-link a:hover {
    color: var(--rm-blue);
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
    color: var(--rm-blue);
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
}

.footer .footer-social a {
    display: inline-block;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rm-blue);
    border-radius: 35px;
    font-size: 16px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: var(--rm-blue-dark);
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    background: transparent;
    border: 1px solid var(--rm-blue);
    border-radius: 5px;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
}

.footer .copyright {
    position: relative;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    background: #ffffff;
}

.footer .copyright p {
    margin: 0;
    display: inline-block;
    color: #454545;
}

.footer .copyright p a {
    color: var(--rm-blue);
}

.footer .copyright p a:hover {
    color: var(--rm-blue-dark);
}

/*******************************/
/********* Index CSS **********/
/*******************************/

.services-section {
    padding: 90px 0 70px;
    margin: 45px 0;
    background: linear-gradient(180deg, rgba(230, 240, 250, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.services-section__header {
    margin-bottom: 34px;
}

.services-section__header p {
    color: var(--rm-blue);
}

.services-section__intro {
    max-width: 760px;
    margin: 16px auto 0;
}

.services-section__intro p {
    margin: 0;
    color: var(--lb-blue-gb);
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-list-div {
    max-width: 1080px;
    margin: 0 auto;
}

/*******************************/
/********* Services CSS **********/
/*******************************/

.services-showcase__card {
    height: 100%;
    position: relative;
    border-radius: 24px;
    padding: 24px 22px 20px;
    background: #ffffff;
    border: 1px solid rgba(8, 113, 169, 0.12);
    box-shadow: 0 12px 28px rgba(8, 113, 169, 0.1);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.services-showcase__card::after {
    content: "";
    position: absolute;
    top: -34px;
    right: 24px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 14px solid rgba(1, 79, 166, 0.08);
}

.services-showcase__card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 0 0 24px 0;
    margin-bottom: 16px;
    background: linear-gradient(145deg, var(--rm-blue) 0%, var(--rm-blue-light) 100%);
    color: #ffffff;
    font-size: 27px;
}

.services-showcase__card h3 {
    margin-bottom: 9px;
    font-size: 1.2rem;
    color: var(--rm-blue);
    font-weight: 600;
}

.services-showcase__card p {
    margin-bottom: 0;
    color: var(--lb-blue-gb);
    font-size: 1rem;
    line-height: 1.68;
}

.services-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(var(--rm-blue-rgb), 0.18);
}

.services-showcase__card--highlight {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(230, 240, 250, 0.85) 100%);
    border-color: rgba(8, 113, 169, 0.2);
}

.services-showcase__card--cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-showcase__card--cta .btn {
    align-self: flex-start;
    margin-top: 18px;
}

@media (max-width: 767.98px) {
    .services-showcase__card {
        border-radius: 18px;
    }

    .services-showcase__card h3 {
        font-size: 1.1rem;
    }

    .services-section {
        padding: 72px 0 56px;
    }

    .services-section__intro p {
        font-size: 0.98rem;
    }
}

/*******************************/
/********* Nosotros CSS **********/
/*******************************/

.vmsion_style{
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    text-align: justify;
}

.icon_card_us{
    font-size: 60px;
    color: var(--rm-blue);
    margin-bottom: 20px;
}

.benefit_card_us{
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/*******************************/
/****** Sedes Carousel CSS *****/
/*******************************/
.sede-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.sede-carousel .sede-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sede-carousel .sede-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sede-carousel .sede-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0, 0, 0, .25);
}

/* Estilos para imágenes verticales */
.sede-carousel .sede-item img[style*="aspect-ratio"] {
    max-height: 600px;
}

/* Navegación del carrusel */
.sede-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.sede-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: rgba(21, 169, 80, 0.8) !important;
    color: #ffffff !important;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sede-carousel .owl-nav button:hover {
    background: rgba(113, 154, 10, 0.9) !important;
    transform: scale(1.1);
}

.sede-carousel .owl-nav button.owl-prev {
    left: 10px;
}

.sede-carousel .owl-nav button.owl-next {
    right: 10px;
}

/* Puntos de navegación */
.sede-carousel .owl-dots {
    text-align: center;
    padding-top: 20px;
}

.sede-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.sede-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #cccccc;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.sede-carousel .owl-dots .owl-dot.active span,
.sede-carousel .owl-dots .owl-dot:hover span {
    background: var(--rm-blue);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .sede-carousel .sede-item img {
        max-height: 400px;
    }
    
    .sede-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .sede-carousel .sede-item img {
        max-height: 350px;
    }
    
    .sede-carousel .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .sede-carousel .owl-nav {
        padding: 0 5px;
    }
}

@media (max-width: 575px) {
    .sede-carousel .sede-item img {
        max-height: 300px;
    }
}

/*******************************/
/****** Planes Section CSS *****/
/*******************************/
.planes-section .plan-detail-row {
    padding: 30px 0;
}

.planes-section .plan-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.planes-section .plan-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.planes-section .plan-image-wrapper:hover img {
    transform: scale(1.05);
}

.planes-section .plan-services-wrapper {
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.planes-section .plan-title {
    color: var(--rm-blue);
    font-size: 28px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.planes-section .plan-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--rm-blue);
}

.planes-section .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planes-section .services-list .service-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.planes-section .services-list .service-item:last-child {
    border-bottom: none;
}

.planes-section .services-list .service-item i {
    color: var(--rm-blue);
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.planes-section .services-list .service-item span {
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
}

.planes-section .plan-cta {
    text-align: center;
    padding-top: 20px;
}

.planes-section .plan-cta .btn {
    padding: 15px 35px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    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);
    }
}

.animate-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .planes-section .plan-services-wrapper {
        margin-top: 0;
    }
    
    .planes-section .plan-title {
        font-size: 24px;
    }
    
    .planes-section .services-list .service-item span {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .planes-section .plan-detail-row {
        padding: 20px 0;
    }
    
    .planes-section .plan-services-wrapper {
        padding: 15px;
    }
    
    .planes-section .plan-title {
        font-size: 22px;
    }
    
    .planes-section .services-list .service-item {
        padding: 10px 0;
    }
    
    .planes-section .services-list .service-item i {
        font-size: 18px;
        margin-right: 12px;
    }
    
    .planes-section .services-list .service-item span {
        font-size: 14px;
    }
    
    .planes-section .plan-cta .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .planes-section .plan-services-wrapper {
        padding: 12px;
    }
    
    .planes-section .services-list .service-item i {
        font-size: 16px;
        margin-right: 10px;
    }
}
