@font-face {
    font-family: 'ComicCustom';
    src: url('fonts/ComicSansMS3.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
/* =================================
   GLOBAL STYLES & RESET
   ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E07A5F;
    --secondary-color: #2d5a3d;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --dark-text: #333;
    --overlay: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}



/* =================================
   BUTTONS
   ================================= */

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #d16850;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(224, 122, 95, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-bg);
}

.btn-dark {
    background: var(--dark-bg);
    color: white;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* =================================
   HEADER
   ================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--light-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: var(--transition);
}

/* =================================
   HERO SLIDER
   ================================= */

   .carousel-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.carousel-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50px;
    overflow: visible;
}
.experiencias-carousel{
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px;
    width: 100%;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap; /* IMPORTANTE */
}

.experiencias-carousel::-webkit-scrollbar{
    display: none;
}

.experiencia-card{
    min-width: 420px;
    flex: 0 0 auto; /* 🔥 CLAVE */
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}


.experiencia-content{
    padding: 30px;
}

.experiencia-content h3{
    font-size: 2rem;
    margin-bottom: 15px;
}

.experiencia-content p{
    line-height: 1.7;
}

/* BOTONES */

.carousel-btn{
    width: 50px;
    height: 50px;
    border: none;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    position: absolute;
    z-index: 5;
    transition: 0.3s;
}


.carousel-btn:hover{
    transform: scale(1.1);
}

.prev{
    left: -25px;
}

.next{
    right: -25px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .experiencias-carousel {
        gap: 15px;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
    }

    .experiencia-card {
        min-width: 100%;
        width: 100%;
    }

    .carousel-btn {
        display: none;
    }

}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 90px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
        font-style: normal !important;
    font-family: "ComicCustom"!important;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* =================================
   SECTION TITLES
   ================================= */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-text);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

/* =================================
   EXPERIENCIAS SECTION
   ================================= */

.experiencias {
    padding: 100px 0;
    background: #f9f9f9;
}

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.experiencia-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.experiencia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experiencia-image {
    height: 300px;
    overflow: hidden;
}

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

.experiencia-card:hover .experiencia-image img {
    transform: scale(1.1);
}

.experiencia-content {
    padding: 30px;
}

.experiencia-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.experiencia-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* =================================
   AMENIDADES SECTION
   ================================= */

.amenidades {
    padding: 100px 0;
    background: white;
}

.amenidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.amenidad-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.amenidad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.amenidad-image {
    height: 250px;
    overflow: hidden;
}

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

.amenidad-card:hover .amenidad-image img {
    transform: scale(1.1);
}

.amenidad-content {
    padding: 30px;
}

.amenidad-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.amenidad-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* =================================
   TESTIMONIOS SECTION
   ================================= */

/* =================================
  ubicacion
   ================================= */

   #ubicacion {
  padding-top: 80px;
}

.mapa-banner {
  width: 100%;
  margin-top: 50px;
}

.mapa-banner iframe {
  width: 100%;
  height: 500px; /* 👈 esto define el efecto banner */
  border: 0;
  display: block;
}



.testimonios {
    padding: 100px 0;
    background: #f9f9f9;
}

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

.testimonio-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.testimonio-avatar i {
    font-size: 50px;
    color: var(--primary-color);
}

.testimonio-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonio-platform {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #999;
}

.testimonio-rating {
    margin-bottom: 15px;
}

.testimonio-rating i {
    color: #FFD700;
    font-size: 16px;
}

.testimonio-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
}


.galeria {
  padding: 100px 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

.galeria-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

/* efecto hover */
.galeria-grid img:hover {
  transform: scale(1.03);
}

/* 🔥 estilo collage tipo Pinterest */
.galeria-grid img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.galeria-grid img:nth-child(4) {
  grid-row: span 2;
}

.galeria-grid img:nth-child(5) {
  grid-row: span 2;
}

.galeria-grid img:nth-child(6) {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
}


/* =================================
   CTA RESERVA SECTION
   ================================= */

.cta-reserva {
     position: relative;
  background-image: url('imagenes/texture.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
    color: white;
   padding: 50px 0;
}

.cta-overlay {
     position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.cta-reserva .container {
  position: relative;
  z-index: 2;
}
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-phone i {
    font-size: 40px;
    color: #25D366;
}

.cta-phone a {
    color: white;
    transition: var(--transition);
}

.cta-phone a:hover {
    color: var(--primary-color);
}

/* =================================
   CUIDEMOS BACALAR SECTION
   ================================= */

.cuidemos-bacalar {
    background: white;
}

.cuidemos-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cuidemos-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cuidemos-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cuidemos-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.cuidemos-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.cuidemos-hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.cuidemos-content {
    padding: 80px 0;
}

.cuidemos-text-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.cuidemos-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.cuidemos-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.cuidemos-image-bridge {
    width: 100%;
    max-width: 800px;
    margin: 60px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cuidemos-image-bridge img {
    width: 100%;
    height: auto;
    display: block;
}

.cuidemos-tips-section {
    max-width: 900px;
    margin: 60px auto;
}

.cuidemos-tips-box {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cuidemos-tips-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-text);
    text-align: center;
}

.cuidemos-tips-list {
    list-style: none;
    padding-left: 0;
}

.cuidemos-tips-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cuidemos-tips-list .emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.cuidemos-tips-list strong {
    color: var(--dark-text);
    font-weight: 600;
}

.cuidemos-image-bottom {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cuidemos-image-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

/* =================================
   SUITES Y HABITACIONES SECTION
   ================================= */

.suites-habitaciones {
    padding: 30px 0;
    background: white;
}


.suites-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.suites-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 20px;
}

/* Suite Item Layout */
.suite-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.suite-layout-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.suite-layout-right .suite-image-container {
    order: 2;
}

.suite-layout-right .suite-details {
    order: 1;
}
.suite-image-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.suite-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suite-details {
    padding: 20px;
}

.suite-name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.suite-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.suite-specs {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.suite-specs li {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

/* Quedarte Banner */
.quedarte-banner {
    background: #f9f9f9;
    padding: 60px 40px;
    border-radius: 10px;
    margin: 60px 0;
}

.quedarte-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.quedarte-text-block {
    flex: 1;
}

.quedarte-heading {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.quedarte-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Suites Duo */
.suites-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 60px 0;
}

.suite-duo-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.suite-duo-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.suite-duo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suite-duo-item:hover .suite-duo-image img {
    transform: scale(1.05);
}

.suite-duo-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.suite-duo-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.suite-duo-specs {
    list-style: none;
    padding-left: 0;
}

.suite-duo-specs li {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

/* Habitaciones Estándar */
.habitaciones-estandar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.habitacion-std-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.habitacion-std-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.habitacion-std-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.habitacion-std-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.habitacion-std-card:hover .habitacion-std-image img {
    transform: scale(1.1);
}

.habitacion-std-info {
    padding: 30px;
}

.habitacion-std-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.habitacion-std-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.habitacion-std-specs {
    list-style: none;
    padding-left: 0;
}

.habitacion-std-specs li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

/* =================================
   FOOTER
   ================================= */

.footer {
   position: relative;
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 30px;
    background-image: url('https://www.genspark.ai/api/files/s/TDRrfeME');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-overlay {
 position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
    z-index: 1;
}


.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: center;
}

.footer-btn {
    padding: 12px 30px;
    font-size: 15px;
}

.footer-btn i {
    margin-right: 8px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 28px;
}

.footer-social span {
    font-size: 14px;
}

.footer-info p {
    font-size: 16px;
    font-weight: 500;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .experiencias-grid,
    .amenidades-grid {
        grid-template-columns: 1fr;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-phone {
        font-size: 24px;
    }

    .cta-phone i {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    /* Suites Responsive */
   .suite-item {
    grid-template-columns: 1fr;
    gap: 40px;
}

.suite-layout-right .suite-image-container {
    order: 1;
}

.suite-layout-right .suite-details {
    order: 2;
}
    

    .suite-image-container {
        height: 300px;
    }

    .quedarte-header {
        flex-direction: column;
        text-align: center;
    }

    .quedarte-heading {
        font-size: 28px;
    }

    .suites-duo {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .habitaciones-estandar {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Cuidemos Bacalar Responsive */
    .cuidemos-hero {
        height: 400px;
    }

    .cuidemos-hero-title {
        font-size: 32px;
    }

    .cuidemos-hero-subtitle {
        font-size: 16px;
    }

    .cuidemos-subtitle {
        font-size: 26px;
    }

    .cuidemos-tips-box {
        padding: 30px;
    }

    .cuidemos-tips-title {
        font-size: 22px;
    }

    .cuidemos-tips-list li {
        font-size: 15px;
    }
}


@media (max-width: 480px) {

    .logo img {
        height: 45px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
    }

    .experiencia-content h3,
    .amenidad-content h3 {
        font-size: 22px;
    }

    .cta-title {
        font-size: 22px;
    }

    .suite-image-container {
        height: 250px;
    }

    .suite-name {
        font-size: 28px;
    }

    .quedarte-heading {
        font-size: 24px;
    }

    .suite-duo-image {
        height: 250px;
    }

    .habitacion-std-image {
        height: 200px;
    }

    .cuidemos-hero {
        height: 350px;
    }

    .cuidemos-hero-title {
        font-size: 26px;
    }

    .cuidemos-hero-subtitle {
        font-size: 14px;
    }

    .cuidemos-subtitle {
        font-size: 22px;
    }

    .cuidemos-tips-box {
        padding: 20px;
    }

    .cuidemos-tips-title {
        font-size: 20px;
    }

    .cuidemos-tips-list li {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cuidemos-tips-list .emoji {
        font-size: 20px;
    }

} /* ← AQUÍ CIERRA EL MEDIA QUERY */


/* ESTO VA FUERA DEL MEDIA QUERY */

.hero-title,
.section-title,
.cta-title,
.experiencia-content h3,
.amenidad-content h3,
.suite-name,
.quedarte-heading,
.suite-duo-info h4,
.habitacion-std-info h4,
.cuidemos-hero-title,
.cuidemos-subtitle,
.cuidemos-tips-title,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'ComicCustom' !important;
    font-style: normal !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    color: #ff7f2a !important;
}