:root {
    --burgundy: #800020;
    --burgundy-dark: #5c0017;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.5;
}

/* Header/Navigation */
header {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    height: 80px;
    width: 200px;
    margin-right: 12px;
    object-fit: contain;
}

.text-burgundy {
    color: var(--burgundy);
}

.text-2xl {
    font-size: 24px;
}

.font-bold {
    font-weight: 700;
}

nav {
    display: none;
}

.nav-centered {
    justify-content: center;
    align-items: center;
    flex: 1;
}

@media (min-width: 768px) {
    nav {
        display: flex;
        gap: 32px;
    }
}

.nav-link {
    color: var(--gray-800);
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--burgundy);
}

.button {
    background-color: var(--burgundy);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 300ms;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: var(--burgundy-dark);
}

.button-outline {
    border: 2px solid var(--white);
    background-color: transparent;
    color: var(--white);
}

.button-outline:hover {
    background-color: var(--white);
    color: var(--gray-800);
}

.mobile-menu-btn {
    display: block;
    color: var(--gray-800);
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

#mobileMenu {
    display: none;
    background-color: var(--white);
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#mobileMenu a, #mobileMenu button {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    color: var(--gray-800);
    text-decoration: none;
}

#mobileMenu a:hover {
    color: var(--burgundy);
}

#mobileMenu button {
    margin-top: 8px;
    width: 100%;
}

/* Estilos para toggle switch */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background-color: rgba(128, 0, 32, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.toggle-container:hover {
    background-color: rgba(128, 0, 32, 0.15);
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    transition: color 0.3s ease;
}

.toggle-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(128, 0, 32, 0.2);
    transition: all 0.3s ease;
}

.toggle-flag:hover {
    border-color: var(--burgundy);
    transform: scale(1.1);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--burgundy);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px var(--burgundy);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Estilo para indicar cuál opción está activa */
.toggle-container .toggle-label.active {
    color: var(--burgundy);
    font-weight: 600;
}

/* Toggle móvil */
.mobile-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    margin: 8px 0;
}

.mobile-toggle-container .toggle-flag {
    width: 18px;
    height: 18px;
}

.mobile-toggle {
    width: 45px;
    height: 22px;
}

.mobile-toggle .toggle-slider:before {
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
}

.mobile-toggle input:checked + .toggle-slider:before {
    transform: translateX(23px);
}

/* Estilos para botones desplegables */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-btn:hover {
    background-color: var(--burgundy);
    color: white;
}

.dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-btn i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
    z-index: 100;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--burgundy);
    color: white;
}

/* Estilos especiales para el botón de contactos */
.contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--burgundy);
    color: white;
    border: 2px solid var(--burgundy);
}

.contact-btn:hover {
    background-color: var(--burgundy-dark);
    color: white;
    transform: scale(1.05);
}

.contact-btn i {
    font-size: 16px;
    margin: 0;
}

/* Menú de contactos más ancho */
.contact-menu {
    min-width: 280px;
    right: 0;
    left: auto;
}

/* Bloque de información de contacto */
.contact-info-block {
    padding: 8px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    color: var(--gray-800);
    user-select: none;
    cursor: default;
    border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 18px;
    text-align: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

/* Ícono especial para USA */
.contact-item .fa-flag-usa {
    color: #c41e3a;
}

/* Estilos para móvil */
.contact-mobile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-mobile-btn i:first-child {
    color: var(--burgundy);
}

.mobile-contact-info-block {
    padding: 8px 0;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
    user-select: none;
    cursor: default;
}

.mobile-contact-item i {
    width: 18px;
    text-align: center;
    color: var(--burgundy);
    font-size: 14px;
    flex-shrink: 0;
}

/* Estilos para dropdown móvil */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-btn {
    width: 100%;
    background: none;
    border: none;
    color: var(--gray-800);
    font-weight: 500;
    padding: 8px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-btn:hover {
    color: var(--burgundy);
}

.mobile-dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 16px;
    background-color: rgba(128, 0, 32, 0.05);
    border-radius: 4px;
    margin-top: 4px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu .nav-link {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.mobile-dropdown-menu .nav-link:hover {
    color: var(--burgundy);
}

/* Hero Section */
.hero-image {
    height: 80vh;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Slideshow Styles */
.slideshow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slideshow-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slideshow-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.hero-nosotros {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/grupo.jpg');
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.text-white {
    color: var(--white);
}

.max-w-2xl {
    max-width: 42rem;
}

.text-4xl {
    font-size: 36px;
}

.text-6xl {
    font-size: 60px;
}

.mb-4 {
    margin-bottom: 12px;
}

.text-xl {
    font-size: 20px;
}

.mb-8 {
    margin-bottom: 32px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 16px;
}

/* Featured Section */
.py-16 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 20px;
}

.divider {
    width: 96px;
    height: 4px;
    background-color: var(--burgundy);
    margin-left: auto;
    margin-right: auto;
}

.w-24 {
    width: 96px;
}

.h-1 {
    height: 4px;
}

.bg-white {
    background-color: var(--white);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gap-8 {
    gap: 16px;
}

.feature-card {
    background-color: rgba(128, 0, 32, 0.15);
    color: var(--gray-800);
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(128, 0, 32, 0.25);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    background-color: rgba(128, 0, 32, 0.22);
    border-color: rgba(128, 0, 32, 0.35);
}

.feature-card .text-burgundy {
    color: var(--burgundy);
}

.feature-card h3 {
    color: var(--gray-800);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.4;
}

.text-4xl {
    font-size: 28px;
}

.mb-3 {
    margin-bottom: 8px;
}

.text-gray-600 {
    color: var(--gray-600);
}

/* About Us Section */
.bg-white {
    background-color: var(--white);
}

.flex-col {
    flex-direction: column;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
}

.md\:w-1\/2 {
    width: 100%;
}

@media (min-width: 768px) {
    .md\:w-1\/2 {
        width: 50%;
    }
}

.mb-8 {
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .md\:mb-0 {
        margin-bottom: 0;
    }
}

.md\:pr-8 {
    padding-right: 32px;
}

.about-image {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
}

.mb-6 {
    margin-bottom: 24px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    background-color: var(--burgundy);
    color: var(--white);
    padding: 8px;
    border-radius: 9999px;
    margin-right: 12px;
}

/* Packages Section */
.package-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 300ms;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.package-image {
    width: 100%;
    height: 192px;
    object-fit: cover;
}

.p-6 {
    padding: 24px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.package-tag {
    background-color: var(--burgundy);
    color: var(--white);
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 9999px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-xl-bold {
    font-size: 20px;
    font-weight: 700;
}

/* Ajuste para reducir el espacio entre el contenido del footer y la franja de derechos reservados */
.mt-12 {
    margin-top: 16px;
}

.button-outline-burgundy {
    border: 2px solid var(--burgundy);
    background-color: transparent;
    color: var(--burgundy);
}

.button-outline-burgundy:hover {
    background-color: var(--burgundy);
    color: var(--white);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    transition: all 300ms;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.bg-burgundy {
    background-color: var(--burgundy);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.text-yellow-400 {
    color: #fbbf24;
}

.mr-2 {
    margin-right: 8px;
}

.italic {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    margin-right: 16px;
}

.opacity-75 {
    opacity: 0.75;
}

/* CTA Section */
.bg-gray-100 {
    background-color: var(--gray-100);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.bg-gray-800 {
    background-color: var(--gray-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
}

.footer-grid-5 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}

.footer-grid-6 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .footer-grid-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    
    .footer-grid-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-grid-5 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-grid-6 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.text-gray-400 {
    color: var(--gray-400);
}

.hover\:text-white:hover {
    color: var(--white);
}

.space-y-2 > * + * {
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #8B5A4B;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #6B3E33;
    transform: scale(1.1);
    color: white;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list a {
    color: var(--gray-400);
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.contact-icon {
    color: #8B5A4B;
    margin-right: 12px;
    margin-top: 2px;
    width: 16px;
    flex-shrink: 0;
}

.border-gray-700 {
    border-color: var(--gray-700);
}

.border-t {
    border-top-width: 1px;
}

.pt-8 {
    padding-top: 32px;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    color: var(--gray-700);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"] {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 2px rgba(128, 0, 32, 0.2);
}

.submit-button {
    width: 100%;
    background-color: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 300ms;
}

.submit-button:hover {
    background-color: var(--burgundy-dark);
}

/* Made with DeepSite */
.deepsite-badge {
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    position: fixed;
    left: 8px;
    bottom: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
}

.deepsite-badge a {
    color: #fff;
    text-decoration: underline;
}

.deepsite-logo {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 3px;
    filter: brightness(0) invert(1);
}

/* Estilos para la sección de métricas destacadas */
.featured-metrics {
    background: #fafafa;
    color: #222;
    padding: 40px 0 20px 0;
}

.metrics-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.metric-card {
    background: transparent;
    color: #222;
    border-radius: 0;
    box-shadow: none;
    padding: 24px 12px 12px 12px;
    min-width: 180px;
    max-width: 260px;
    flex: 1 1 0;
    text-align: center;
    margin-bottom: 0;
    transition: none;
}

.metric-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(128,0,32,0.13);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #800020;
}

.metric-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #800020;
}

.metric-desc {
    font-size: 1.05rem;
    color: #222;
    font-weight: 400;
}

.metric-desc a, .metric-desc span[style*="color:green"] {
    color: #800020 !important;
    font-weight: 700;
    text-decoration: none;
}

.metric-desc .iso-label {
    color: #800020;
    font-weight: 700;
    font-size: 1em;
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .metrics-container {
        gap: 12px;
    }
    .metric-card {
        min-width: 140px;
        padding: 16px 4px 8px 4px;
    }
    .metric-number {
        font-size: 2rem;
    }
    .metric-title {
        font-size: 1.1rem;
    }
    .metric-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .metrics-container {
        flex-wrap: wrap;
        gap: 18px;
    }
    .metric-card {
        min-width: 220px;
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .metrics-container {
        flex-direction: column;
        align-items: center;
    }
    .metric-card {
        width: 95vw;
        min-width: unset;
    }
}

/* Sección confianza destacada */
.confianza-destacada {
    background: #fff7fa;
    border-bottom: 1px solid #f3dbe3;
    padding: 32px 0 18px 0;
    text-align: center;
}

.confianza-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.confianza-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 10px;
    line-height: 1.3;
}

.confianza-resaltado {
    color: #fff;
    background: #800020;
    border-radius: 8px;
    padding: 2px 10px;
    font-weight: 800;
    margin-left: 4px;
    margin-right: 4px;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(128,0,32,0.07);
}

.confianza-subtitulo {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 10px;
    font-weight: 500;
}

.confianza-premio {
    display: inline-block;
    background: #800020;
    color: #fff;
    border-radius: 9999px;
    padding: 6px 22px 6px 18px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(128,0,32,0.08);
    margin-top: 6px;
}

.confianza-premio i {
    margin-right: 8px;
    color: #ffd700;
}

.confianza-premiado {
    color: #ffd700;
    font-weight: 700;
}

.confianza-tripadvisor {
    color: #00af87;
    font-weight: 700;
}

@media (max-width: 600px) {
    .confianza-titulo {
        font-size: 1.1rem;
    }
    .confianza-subtitulo {
        font-size: 1rem;
    }
    .confianza-premio {
        font-size: 0.95rem;
        padding: 6px 10px 6px 10px;
    }
}

/* Sección de Confianza */
.confianza {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.confianza-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 12px;
}

.confianza-subtitulo {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 24px;
}

.distintivo-confianza {
    display: inline-block;
    background: #800020;
    color: #fff;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(128,0,32,0.2);
}

@media (max-width: 600px) {
    .confianza-titulo {
        font-size: 1.5rem;
    }
    .confianza-subtitulo {
        font-size: 1rem;
    }
    .distintivo-confianza {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

.whatsapp-float i {
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Texto del botón WhatsApp */
.whatsapp-text {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
    
    .whatsapp-text {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Estilos para página Nosotros */
.team-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.certification-item {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.certification-item:hover {
    opacity: 1;
}

/* Estilo para nav activo */
.nav-link.active {
    color: #8B5A4B;
    font-weight: 600;
}

/* Estilos para la tabla del formulario de reseñas */
.review-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid var(--burgundy);
    border-radius: 0.5rem;
    overflow: hidden;
    table-layout: fixed; /* Forza el ancho fijo de las columnas */
}

.review-table td {
    border: 1px solid rgba(128, 0, 32, 0.3);
    padding: 1.2rem;
    vertical-align: top;
    word-wrap: break-word; /* Permite que el texto se ajuste */
    overflow: hidden; /* Evita desbordamiento */
}

.table-left {
    width: 50%;
    background-color: rgba(128, 0, 32, 0.02);
}

.table-right {
    width: 50%;
    background-color: rgba(128, 0, 32, 0.05);
}

/* Ajustes específicos para elementos del formulario dentro de la tabla */
.review-table .form-input,
.review-table .form-textarea,
.review-table .form-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

.review-table .form-textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 200px;
}

.review-table .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--burgundy);
    font-size: 0.9rem;
}

.review-table .rating-input {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.review-table .rating-input .star {
    font-size: 1.3rem;
}

.review-table .file-input-helper {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.3rem;
    line-height: 1.2;
}

/* Responsive para la tabla */
@media (max-width: 768px) {
    .review-table {
        display: block;
        border: 2px solid var(--burgundy);
        border-radius: 0.5rem;
    }
    
    .review-table tr {
        display: block;
        border: none;
        margin-bottom: 1rem;
        border-radius: 0.5rem;
        overflow: hidden;
    }
    
    .review-table td {
        display: block;
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(128, 0, 32, 0.2);
        padding: 1rem;
        box-sizing: border-box;
    }
    
    .review-table td:last-child {
        border-bottom: none;
    }
    
    .table-left,
    .table-right {
        background-color: white;
        width: 100%;
    }
    
    .review-table .form-input,
    .review-table .form-textarea,
    .review-table .form-select {
        font-size: 1rem;
        padding: 0.6rem 0.875rem;
    }
    
    .review-table .rating-input .star {
        font-size: 1.5rem;
    }
    
    .review-table .form-label {
        font-size: 1rem;
    }
}

/* Estilos para el formulario de reseñas */
.rating-input {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating-input .star {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.rating-input .star:hover {
    transform: scale(1.1);
}

.rating-input .star.active {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Estilos para inputs del formulario */
.form-input {
    width: 100%;
    padding: 0.6rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-input:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Estilos específicos para el layout de tabla */
.review-form-container {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(128, 0, 32, 0.1);
}

/* Mejorar el espaciado en dispositivos móviles */
@media (max-width: 768px) {
    .review-form-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .rating-input .star {
        font-size: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
}

/* Estilos para el modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 400px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-content.animate-in {
    transform: scale(1);
}

/* Animación de bounce para el ícono de éxito */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.animate-bounce {
    animation: bounce 1s;
}

/* Estilos para botones del formulario */
.review-submit-btn {
    background-color: var(--burgundy);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.review-submit-btn:hover {
    background-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

.review-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Estilos para mensajes de notificación */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.success {
    background-color: #10b981;
}

.notification.error {
    background-color: #ef4444;
}

.notification.show {
    transform: translateX(0);
}

/* Estilos para la sección de reseñas */
.review-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
}

.review-form-title {
    color: var(--burgundy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.review-form-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Estilos adicionales para mejorar la experiencia */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 0.375rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.file-input-helper {
    font-size: 0.7rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

/* Efecto hover para las estrellas */
.star-glow {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

/* Separador visual entre columnas */
@media (min-width: 768px) {
    .review-form-container .grid > div:first-child::after {
        content: '';
        position: absolute;
        right: -1rem;
        top: 1rem;
        bottom: 1rem;
        width: 1px;
        background: linear-gradient(to bottom, transparent, var(--burgundy), transparent);
        opacity: 0.2;
    }
    
    .review-form-container .grid > div:first-child {
        position: relative;
        padding-right: 1rem;
    }
    
    .review-form-container .grid > div:last-child {
        padding-left: 1rem;
    }
}

/* Certificaciones y Reconocimientos */
.cert-section {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(128, 0, 32, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(128, 0, 32, 0.03) 0%, transparent 20%);
    position: relative;
    overflow: hidden;
}

.cert-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
    opacity: 0.3;
}

.badge {
    display: inline-block;
    background-color: rgba(128, 0, 32, 0.1);
    color: var(--burgundy);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cert-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border: 1px solid var(--gray-200);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(128, 0, 32, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--burgundy);
}

.cert-card:hover .cert-icon {
    background-color: var(--burgundy);
    color: white;
}

.cert-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(128, 0, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--burgundy);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cert-image {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 3px solid #e5e7eb;
    border-radius: 15px;
    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.certification-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background-color: white;
    display: block;
}

.cert-card:hover .cert-image {
    border-color: #800020;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cert-card:hover .certification-img {
    transform: scale(1.05);
}

.cert-card h3 {
    font-size: 16px;
    position: relative;
    z-index: 1;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.cert-card p {
    margin-top: 4px;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.cert-description {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.cert-description small {
    line-height: 1.4;
    font-style: italic;
    color: var(--gray-500);
}

.award-badge {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 24px 36px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.award-badge::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.award-badge:hover {
    transform: scale(1.03);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.award-badge i {
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    font-size: 48px;
    margin-right: 24px;
    position: relative;
    z-index: 1;
}

.award-badge h4 {
    font-size: 20px;
    color: var(--gray-800);
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
}

.award-badge p {
    font-weight: 500;
    color: var(--gray-600);
    margin: 0;
    position: relative;
    z-index: 1;
}

.cert-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.cert-animation.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========== NUEVO FOOTER MODERNO ========== */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 270px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-description {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #4a90e2;
    border-radius: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #b0c4de;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-list a:hover {
    color: #4a90e2;
    transform: translateX(5px);
}

.footer-list a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-list a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #b0c4de;
    font-size: 14px;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 2px;
    color: #4a90e2;
    flex-shrink: 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0c4de;
    font-size: 14px;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 500;
    color: #ffffff;
}

.schedule-time {
    color: #4a90e2;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: #8fa2b7;
    font-size: 14px;
    margin: 0;
}

.footer-copyright strong {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 1;
        display: block;
    }
    
    .footer-brand {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-logo {
        width: 270px;
        height: 120px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}