/* Google Fonts: Forzar font-display: swap */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display'), url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYh2E.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: local('Inter'), url('https://fonts.gstatic.com/s/inter/v12/UcCO3H6m3s5wqk2wFAM.woff2') format('woff2');
  font-display: swap;
}

/* FontAwesome: Forzar font-display: swap */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
  font-display: swap;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Animaciones de entrada */
body.loading {
    overflow: hidden;
}

body.loading .navbar,
body.loading .hero-content,
body.loading .hero-play-button,
body.loading .section {
    opacity: 0;
}

/* Animación del background */
.hero::before {
    opacity: 0;
    animation: fadeInBackground 1.5s ease-out forwards, zoomInOut 20s ease-in-out 1.5s infinite;
}

@keyframes fadeInBackground {
    to {
        opacity: 1;
    }
}

/* Animación de la navbar */
.navbar {
    animation: slideDownFade 0.8s ease-out 1.2s both;
}

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

/* Animación del contenido del hero */
.hero-content {
    animation: fadeInUp 1s ease-out 1.5s both;
}

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

/* Animación del botón de play */
.hero-play-button {
    animation: scaleIn 0.6s ease-out 1.8s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Animación de las secciones al hacer scroll */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animación de los elementos dentro de las secciones */
.section.visible .about-text,
.section.visible .features-grid,
.section.visible .gallery-grid,
.section.visible .accommodation-cards,
.section.visible .testimonials-grid,
.section.visible .reservation-form {
    animation: fadeInStagger 0.8s ease-out both;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.6);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2cc990;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-placeholder {
    background-color: #f8f9fa;
    margin-right: 10px;
    border-radius: 50%;
}

.logo-aht {
    height: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links li a:hover {
    color: #2cc990;
}

.nav-reserve-btn {
    background: #2cc990;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-reserve-btn:hover {
    background: #25b37e;
    color: #f8f9fa !important;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('img/background.webp') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

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

.hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(44, 201, 144, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.hero-play-button:hover {
    background: rgba(44, 201, 144, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(44, 201, 144, 0.6);
}

.hero-play-button i {
    font-size: 2.5rem;
    color: white;
    margin-left: 8px;
}

/* Botón de Play Video en Hero */
.btn-play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(44, 201, 144, 0.9);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    animation: scaleIn 0.6s ease-out 1.8s both;
}

.btn-play-video:hover {
    background: rgba(44, 201, 144, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(44, 201, 144, 0.6);
}

.btn-play-video i {
    font-size: 2.5rem;
    color: white;
    margin-left: 8px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content video {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
}

.video-modal-content iframe {
    width: 315px;
    height: 90vh;
    border-radius: 10px;
    margin: 30px 0;
}

.video-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-close:hover {
    color: #2cc990;
    background: rgba(0, 0, 0, 0.7);
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 201, 144, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    z-index: 10001;
}

.video-nav:hover {
    background: #2cc990;
    transform: translateY(-50%) scale(1.1);
}

.video-prev {
    left: 20px;
}

.video-next {
    right: 20px;
}

.video-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10001;
}

.video-title {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 30px;
    border-radius: 25px;
    z-index: 10001;
}

.reservation-form-hero {
    background: rgba(44, 62, 80, 0.6);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: center;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    color: white;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 150px;
    font-family: 'Inter', sans-serif;
}

.form-group input[type="date"] {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
}

.form-group input[type="text"].date-input {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    cursor: pointer;
}

/* Custom Date Picker con Glassmorfismo */
.custom-date-picker {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(20, 30, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(44, 201, 144, 0.3);
    z-index: 10001;
    width: 380px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.custom-date-picker.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.date-picker-label {
    text-align: center;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.date-picker-label i {
    font-size: 1.1rem;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(44, 201, 144, 0.3);
}

.date-picker-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    font-family: 'Playfair Display', serif;
}

.date-nav-btn {
    background: rgba(44, 201, 144, 0.3);
    border: 1px solid rgba(44, 201, 144, 0.5);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.date-nav-btn:hover {
    background: rgba(44, 201, 144, 0.5);
    transform: scale(1.1);
}

.date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.date-picker-weekdays div {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 0;
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.date-picker-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: rgba(60, 80, 100, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.date-picker-day:hover:not(.disabled):not(.empty) {
    background: rgba(44, 201, 144, 0.5);
    border-color: rgba(44, 201, 144, 0.8);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(44, 201, 144, 0.3);
}

.date-picker-day.selected {
    background: linear-gradient(135deg, #2cc990, #25b37e);
    border-color: #2cc990;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(44, 201, 144, 0.5);
}

.date-picker-day.disabled {
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    background: rgba(40, 50, 60, 0.3);
    border-color: transparent;
}

.date-picker-day.empty {
    background: transparent;
    cursor: default;
    border: none;
}

.date-picker-day.today {
    border: 2px solid #2cc990;
    background: rgba(44, 201, 144, 0.2);
}

/* Custom Select Dropdowns */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-input {
    width: 100%;
    padding: 15px;
    padding-right: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2cc990;
    pointer-events: none;
    transition: transform 0.3s;
}

.custom-select-wrapper.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-input:hover {
    border-color: rgba(44, 201, 144, 0.5);
}

.custom-select-input:focus {
    outline: none;
    border-color: #2cc990;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: rgba(20, 30, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(44, 201, 144, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.custom-select-dropdown.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.custom-select-option {
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(44, 201, 144, 0.3);
}

.custom-select-option.selected {
    background: rgba(44, 201, 144, 0.5);
    font-weight: 600;
}

.custom-select-option i {
    color: #2cc990;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.option-content strong {
    color: white;
    font-size: 1rem;
}

.option-content small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Scrollbar personalizado para dropdowns */
.custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(44, 201, 144, 0.5);
    border-radius: 10px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(44, 201, 144, 0.7);
}

/* Custom select en el Hero - se abre hacia arriba */
.hero .custom-select-dropdown,
#heroGuestsDropdown {
    top: auto;
    bottom: calc(100% + 5px);
    transform: translateY(10px);
}

.hero .custom-select-dropdown.active,
#heroGuestsDropdown.active {
    transform: translateY(0);
}

.hero .custom-select-wrapper.active::after {
    transform: translateY(-50%) rotate(0deg);
}

/* Botón de Reservar para Móviles en Hero */
.btn-reserve-mobile {
    display: none;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(44, 201, 144, 0.4);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.btn-reserve-mobile i {
    font-size: 1.3rem;
}

.btn-reserve-mobile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 201, 144, 0.6);
    background: linear-gradient(135deg, #25b37e, #2cc990);
}

.btn-reserve {
    background: #2cc990;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: end;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-reserve:hover {
    background: #25b37e;
    transform: translateY(-2px);
}

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

.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2cc990;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: #2cc990;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

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

.feature {
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: scale(1.03);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #2cc990;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
    columns: 3;
    column-gap: 15px;
}

.gallery-item {
    background: linear-gradient(135deg, #2cc990, #25b37e);
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    break-inside: avoid;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.gallery-item-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(44, 201, 144, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    backdrop-filter: blur(5px);
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Accommodation Types */
.accommodations {
    background: #f8f9fa;
}

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

.accommodation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.accommodation-card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-header {
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 30px;
    text-align: center;
}

.card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.card-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.card-content {
    padding: 40px;
    flex: 1;
}

.card-content ul {
    list-style: none;
}

.card-content li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-content li i {
    color: #2cc990;
    font-size: 1.1rem;
    width: 20px;
}

.common-features {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.common-features h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.common-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center;
}

.common-features ul {
    list-style: none;
    width: 100%;
    max-width: 300px;
}

.common-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
}

.common-features li i {
    color: #2cc990;
    font-size: 1.1rem;
    width: 20px;
}

/* Partner Discounts Section */
.partner-discounts {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

.discounts-banner {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #2cc990;
}

.discounts-banner h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.discounts-banner h3 i {
    color: #2cc990;
    margin-right: 10px;
}

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

.partner-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.partner-card:hover {   
    box-shadow: 0 10px 30px rgba(44, 201, 144, 0.2);
    border-color: #2cc990;
    background: white;
}

.partner-card:hover::before {
    transform: scale(1.02);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.partner-info {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-info {
    opacity: 1;
    max-height: 300px;
}

.partner-card:hover .partner-logo {
    height: 40px;
    margin-bottom: 10px;
}

.partner-info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.partner-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

.partner-info .payment-method {
    color: #2cc990;
    font-weight: 600;
    margin-top: 8px;
}

.partner-info .validity {
    color: #e67e22;
    font-weight: 600;
    margin-top: 8px;
}

.partner-info .note {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.discounts-note {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2cc990;
}

.discounts-note i {
    color: #2cc990;
    margin-right: 8px;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.google-rating-summary {
    text-align: center;
    margin-bottom: 60px;
}

.rating-box {
    background: white;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 40px;
    min-width: auto;
    max-width: 800px;
    margin: 0 auto;
}

.rating-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 2px solid #e0e0e0;
    padding-right: 40px;
}

.rating-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.rating-score {
    font-size: 4.5rem;
    font-weight: 700;
    color: #2cc990;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 1.8rem;
    color: #ffa500;
}

.rating-count {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285f4;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    align-self: center;
}

.google-link:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

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

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.testimonial-stars {
    color: #ffa500;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    background: #f0f9f6;
    color: #2cc990;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.testimonial-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
}

.testimonial-ratings span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-ratings strong {
    color: #2c3e50;
}

.testimonial-highlights {
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
}

.testimonial-highlights strong {
    color: #2cc990;
    display: block;
    margin-bottom: 5px;
}

/* Reservation Form Section */
.reservation {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.reservation h2 {
    color: white;
}

.reservation-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.9);
}

.reservation-form input[type="date"] {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
}

.reservation-form input.date-input {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    cursor: pointer;
}

.reservation-form textarea {
    resize: vertical;
    height: 120px;
}

/* Map */
.map {
    background: #f8f9fa;
}

.map-container {
    text-align: center;
}

.map-info {
    margin-bottom: 40px;
}

.map-info h3 {
    color: #2cc990;
    margin-bottom: 20px;
}

.map-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-info i {
    color: #2cc990;
    width: 20px;
}

.map-frame {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid #34495e;
}

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

.footer-section h4 {
    color: #2cc990;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    transition: color 0.3s;    
    align-items: center; /* <-- Añade esta línea */
}

.footer-section a:hover {
    color: #2cc990;
}

.footer-section i {
    width: 20px;
    color: #2cc990;
}

.data-link {
    margin-bottom: 0px !important;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.membership-aht {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Botones de promociones y galería */
.promo-btn,
.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 201, 144, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.promo-btn:hover,
.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 201, 144, 0.4);
    background: linear-gradient(135deg, #25b37e, #22a06b);
    color: white;
}

.promo-btn i,
.gallery-btn i {
    font-size: 1.2rem;
}

/* Animación para galería adicional */
.additional-gallery {
    animation: fadeIn 0.5s ease-in-out;
}

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

.municipio img {
    height: 50px;
    border-radius: 10px;
}

/* Events Cards Hover */
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #2cc990;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 201, 144, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: #2cc990;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10000;
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(44, 201, 144, 0.4);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: #2cc990;
    color: #2cc990;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    border-color: #2cc990;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item-hidden {
    display: none;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 201, 144, 0.3);
    font-family: 'Inter', sans-serif;
    margin: 20px auto;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 201, 144, 0.4);
    background: linear-gradient(135deg, #25b37e, #22a06b);
}

.load-more-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 24px;
        padding: 15px 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Ocultar formulario del hero en móviles */
    .reservation-form-hero {
        display: none;
    }

    /* Mostrar botón de reservar en móviles */
    .btn-reserve-mobile {
        display: flex;
    }

    .hero-play-button {
        width: 80px;
        height: 80px;
    }

    .hero-play-button i {
        font-size: 2rem;
    }

    .video-modal-content {
        max-width: 95%;
    }

    .video-modal-content iframe {
        width: 90vw;
        height: 80vh;
        max-width: 100%;
        margin: 10px 0;
    }

    .video-modal-close {
        font-size: 30px;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .video-nav {
        font-size: 24px;
        padding: 15px 10px;
    }

    .video-prev {
        left: 10px;
    }

    .video-next {
        right: 10px;
    }

    .video-title {
        font-size: 0.9rem;
        top: 60px;
        padding: 8px 20px;
    }

    .video-counter {
        bottom: 20px;
        font-size: 0.9rem;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(44, 62, 80, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .reservation-form-hero {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        columns: 1;
    }

    .accommodation-cards {
        grid-template-columns: 1fr;
    }

    .gallery-btn {
        font-size: 1rem;
        padding: 12px 20px;
        margin: 5px;
    }

    .section {
        padding: 60px 0;
    }

    .navbar {
        padding: 10px 0;
    }

    .membership-aht {
        flex-direction: column;
        gap: 10px;
    }

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

    .testimonial-card {
        min-width: auto;
    }

    .rating-box {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }

    .rating-left {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 25px;
        width: 100%;
    }

    .rating-right {
        align-items: center;
        text-align: center;
    }

    .rating-score {
        font-size: 3.5rem;
    }

    .google-link {
        align-self: center;
    }

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

    .partner-card {
        min-height: auto;
    }

    .partner-info {
        opacity: 1;
        max-height: none;
    }

    .partner-logo {
        height: 50px;
    }

    .partner-logo img {
        filter: grayscale(0%);
    }

    .discounts-banner {
        padding: 30px 20px;
    }

    .discounts-banner h3 {
        font-size: 1.5rem;
    }

    /* Custom Select Responsive */
    .custom-select-dropdown {
        max-height: 250px;
    }

    .custom-select-option {
        padding: 15px;
        font-size: 0.95rem;
    }

    .option-content strong {
        font-size: 0.95rem;
    }

    .option-content small {
        font-size: 0.8rem;
    }
}

/* ============================================
   ESTILOS PARA BOTÓN DE ARREPENTIMIENTO
   ============================================ */

/* Banner del botón de arrepentimiento */
.arrepentimiento-banner {
    background: #2c3e50;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    position: relative;
    z-index: 100;
}

.btn-arrepentimiento {
    background: linear-gradient(135deg, #2cc990, #25b37e);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(44, 201, 144, 0.4);
    letter-spacing: 0.5px;
}

.btn-arrepentimiento:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 201, 144, 0.6);
    background: linear-gradient(135deg, #25b37e, #1e8e6a);
}

.btn-arrepentimiento i {
    font-size: 1.3rem;
}

/* Modal de arrepentimiento */
.arrepentimiento-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.arrepentimiento-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrepentimiento-modal-content {
    background: white;
    margin: 20px auto;
    padding: 35px 40px;
    border-radius: 15px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
    position: relative;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.arrepentimiento-close {
    color: #aaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    right: 20px;
    top: 20px;
}

.arrepentimiento-close:hover,
.arrepentimiento-close:focus {
    color: #2cc990;
}

.arrepentimiento-modal-content h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 15px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
}

.arrepentimiento-modal-content h3 i {
    color: #2cc990;
    font-size: 1.4rem;
}

.arrepentimiento-info {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #856404;
    line-height: 1.5;
    font-size: 0.88rem;
}

#arrepentimientoForm .form-group {
    margin-bottom: 16px;
}

#arrepentimientoForm label {
    display: block;
    margin-bottom: 6px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

#arrepentimientoForm input,
#arrepentimientoForm textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

#arrepentimientoForm input:focus,
#arrepentimientoForm textarea:focus {
    outline: none;
    border-color: #2cc990;
    box-shadow: 0 0 0 3px rgba(44, 201, 144, 0.1);
}

#arrepentimientoForm textarea {
    resize: vertical;
    min-height: 70px;
    max-height: 120px;
}

.btn-arrepentimiento-submit {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 13px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-arrepentimiento-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #075e54);
}

.btn-arrepentimiento-submit i {
    font-size: 1.2rem;
}

/* Responsive Desktop */
@media (min-width: 769px) {
    .arrepentimiento-modal-content {
        max-width: 500px;
    }

    #arrepentimientoForm .form-group {
        margin-bottom: 14px;
    }

    .arrepentimiento-close {
        font-size: 32px;
    }
}

/* Responsive Mobile y Tablet */
@media (max-width: 768px) {
    .arrepentimiento-banner {
        padding: 15px 0;
    }

    .btn-arrepentimiento {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .arrepentimiento-modal-content {
        padding: 30px 20px;
        margin: 10px;
        width: 95%;
    }

    .arrepentimiento-modal-content h3 {
        font-size: 1.4rem;
    }

    .arrepentimiento-modal-content h3 i {
        font-size: 1.2rem;
    }

    .arrepentimiento-info {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    #arrepentimientoForm label {
        font-size: 0.88rem;
    }

    #arrepentimientoForm input,
    #arrepentimientoForm textarea {
        font-size: 0.92rem;
    }
}