/* ============================================
   ESTILOS PERSONALIZADOS - LANDSCAPE PROS
   ============================================ */

/* Smooth scroll behavior */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap');


html {
    scroll-behavior: smooth;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}
/* ============================================
   NAVBAR TRANSPARENTE
   ============================================ */

#navbar {
    background-color: #002a6d;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


/* ============================================
   ANIMACIONES
   ============================================ */

/* Fade In Animation */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Hover Scale Effect */
/*
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}*/

/* ============================================
   SWIPER CAROUSEL CUSTOMIZATION
   ============================================ */

.swiper {
    width: 23rem;
    height: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
}

.swiper-pagination-bullet {
    background: white !important;
}

.swiper-pagination-bullet-active {
    background: #f66f00 !important;
}

/* ============================================
   ANIMACIÓN DE SCROLL DOWN
   ============================================ */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* ============================================
   BOTONES
   ============================================ */

button,
a.button {
    cursor: pointer;
    transition: all 0.3s ease;
}

button:active,
a.button:active {
    transform: scale(0.98);
}

/* ============================================
   MENÚ MÓVIL
   ============================================ */

#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    max-height: 500px;
}

/* ============================================
   DROPDOWNS
   ============================================ */

.group:hover .group-hover\:block {
    display: block;
}

/* ============================================
   IMÁGENES
   ============================================ */

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

.image-hover {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-hover:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* ============================================
   SECCIONES
   ============================================ */

section {
    position: relative;
    overflow: hidden;
}

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

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FF7F5C;
}

/* ============================================
   UTILIDADES
   ============================================ */

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.spinner {
    border: 3px solid rgba(82, 183, 136, 0.3);
    border-top: 3px solid #52B788;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Tablets */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .hero-text {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */

/* Focus visible para navegación con teclado */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #ffb300;
    outline-offset: 2px;
}

/* Reducir movimiento para usuarios que lo prefieran */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   MEJORAS VISUALES
   ============================================ */

/* Sombra de texto para mejor legibilidad */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Gradiente de texto */
.gradient-text {
    background: linear-gradient(135deg, #fe6a23 0%, #c75019 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SCROLLBAR PERSONALIZADA
   ============================================ */

/* Para navegadores Webkit (Chrome, Safari) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #fe6a23;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c75019;
}

/* ============================================
   SELECCIÓN DE TEXTO
   ============================================ */

::selection {
    background: #fe6a23;
    color: white;
}

::-moz-selection {
    background: #fe6a23;
    color: white;
}


