/* Estilos personalizados para los botones de acción */
.btn-primary {
    @apply bg-sunset text-white font-medium py-3 px-6 rounded-lg hover:bg-orange-600 transition duration-300;
}

.btn-secondary {
    @apply border-2 border-sunset text-sunset font-medium py-3 px-6 rounded-lg hover:bg-sunset hover:text-white transition duration-300 flex items-center justify-center w-fit;
}

.tooltip-text {
    @apply absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-full mt-2 bg-gray-800 text-white text-xs px-2 py-1 rounded-md opacity-0 transition-opacity duration-300 z-10;
}

.tab-button {
    @apply text-gray-600 font-medium py-4 px-2 border-b-2 border-transparent transition-colors duration-200;
}

.tab-button.active {
    @apply text-sunset border-sunset;
}

[data-tab-content] {
    display: none;
}

[data-tab-content].active {
    display: block;
}

.tab-button {
    @apply flex-shrink-0 px-4 py-2 text-sm font-medium transition-colors duration-200;
    @apply text-gray-700 hover:text-sunset focus:outline-none;
    @apply rounded-md border border-gray-200 bg-gray-50 shadow-sm;
}

.tab-button.active {
    @apply text-sunset font-bold bg-white border-white shadow-lg;
}

[data-tab-content] {
    display: none;
}

[data-tab-content].active {
    display: block;
}

#map {
    height: 300px;
}

:root {
    --sunset-coral: #422059;
    --ray-flower: #35124dff;
    --sunset-coral-light: #543469ff;
    --ray-flower-light: #197cae;
}

html,
body {
    font-family: "Inter", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-title {
    font-family: "Outfit", Arial, sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    /* Un gris oscuro neutro, puedes ajustarlo */
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Estilos específicos por nivel de título */
h1 {
    font-size: 2.5rem;
    /* ~40px */
    font-weight: 800;
    /* más fuerte */
}

h2 {
    font-size: 2rem;
    /* ~32px */
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    /* ~24px */
    font-weight: 700;
}

h4 {
    font-size: 1.25rem;
    /* ~20px */
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    /* ~18px */
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    /* ~16px */
    font-weight: 600;
}

* {
    font-family: inherit;
}

.gradient-bg {
    background: linear-gradient(
        135deg,
        var(--sunset-coral) 0%,
        var(--ray-flower) 100%
    );
}

.text-sunset {
    color: var(--sunset-coral);
}

.text-ray {
    color: var(--ray-flower);
}

.bg-sunset {
    background-color: var(--sunset-coral);
}

.bg-ray {
    background-color: var(--ray-flower);
}

.border-sunset {
    border-color: var(--sunset-coral);
}

.hover-lift:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.card-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.section-spacing {
    margin-bottom: 4rem;
}

.star-rating {
    color: #fbbf24;
}

.tooltip-text {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
    z-index: 10;
}

/* Estilo base para ambas flechas */
.custom-swiper-button {
    @apply w-9 h-9 md:w-10 md:h-10 flex items-center justify-center rounded-full transition duration-300 z-10;
    background-color: #4a0c9b57;
    /* fondo semitransparente morado */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Hover: cambia ligeramente el fondo */
.custom-swiper-button:hover {
    @apply scale-105;
    background-color: #8128c6;
    /* o tu color sunset-coral-light */
}

/* Estilo de las flechas */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    /* tamaño de la flecha dentro del botón */
    color: white;
}
