/* ==========================================
   CONFIGURACIÓN GENERAL & VARIABLES
========================================== */
:root {
    --color-dark: #121513;        
    --color-light: #f7f9f6;       
    --color-accent: #1e3a27;      /* Ajustado a verde bosque más orgánico */
    --color-whatsapp: #169846;    /* Color oficial WhatsApp */
    --color-muted: #626864;       
    --border-radius-lg: 24px;     /* Bordes redondeados modernos para contenedores */
    --border-radius-sm: 14px;     /* Bordes redondeados para botones e imágenes menores */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
  
body {
    font-family: 'NunitoSans', 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif !important;
    background-color: var(--color-light);
    color: var(--color-dark);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, .display-1, .display-4 {
    font-weight: 500 !important;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

@media screen and (max-width: 991.98px) {
    h1, h2, h3, h4, .display-1, .display-4 {
        font-weight: 600 !important;
    }   
}

.title-card{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.home-title{
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 4px 12px rgba(18, 21, 19, 0.3);
}

@media screen and (max-width: 991.98px) {
    .home-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
}

.subtitle-accent {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--color-accent);
}

/* ==========================================
   BOTÓN FLOTANTE WHATSAPP
========================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-whatsapp);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-floating:hover {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================
   NAVIGATION BAR & DROPDOWN
========================================== */
.navigation-clean {
    background-color: rgba(247, 249, 246, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(18, 21, 19, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.navigation-clean .navbar-brand {
    font-weight: 800;
    color: var(--color-dark);
    font-size: 1.3rem;
}

.navigation-clean .navbar-brand span {
    font-weight: 300;
    color: var(--color-muted);
}

.navigation-clean .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 12px;
}

/* Estilo Dropdown Menú Moderno */
.custom-dropdown-menu {
    border-radius: var(--border-radius-sm);
    padding: 10px;
    /* background-color: #fff; */
    margin-top: 10px !important;
}

.custom-dropdown-menu .dropdown-item {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px;
    color: var(--color-dark);
    transition: var(--transition);
}

.custom-dropdown-menu .dropdown-item:hover {
    background-color: rgba(30, 58, 39, 0.05);
    color: var(--color-accent);
}

/* Botón WhatsApp del Navbar */
.btn-whatsapp-nav {
    background-color: var(--color-whatsapp);
    color: #fff !important;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border: none;
    transition: var(--transition);
}

.btn-whatsapp-nav:hover {
    background-color: #1ebd56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* ==========================================================
   ESTILOS OPTIMIZADOS PARA MÓVIL (Media-Query < 992px)
   ========================================================== */
   @media (max-width: 991.98px) {
    /* 1. Ajuste del contenedor que colapsa */
    .navbar-collapse {
        border-radius: 16px;
        margin-top: 15px;
        padding: 24px 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        max-height: 80vh;
        overflow-y: auto;
    }

    /* 2. Alineación y distribución vertical limpia de la lista */
    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
        gap: 16px; 
    }

    /* 3. Ajuste de los ítems de navegación */
    .navbar-nav .nav-item {
        width: 100%;
        margin: 0 !important;
    }

    .navbar-nav .nav-link {
        margin: 0 !important;
        padding: 8px 0 !important;
        font-size: 1.1rem; 
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    /* 4. Solución al Dropdown Flotante Estrujado */
    .custom-dropdown-menu {
        position: relative !important; 
        float: none !important;
        width: 100% !important;
        box-shadow: none !important;   
        background-color: var(--bg-light-card, #f8f9fa) !important;        
        margin-top: 5px !important;
        padding: 6px !important;
        border: 1px solid rgba(0,0,0,0.03) !important;
    }

    @media screen and (max-width: 1200px) {
        .custom-dropdown-menu {
            background-color: transparent !important;
        }
    }

    .custom-dropdown-menu .dropdown-item {
        padding: 12px 16px !important; 
        font-size: 0.95rem;
    }

    /* 5. Ajuste del selector de idioma */
    .lang-dropdown {
        border-top: 1px solid rgba(0,0,0,0.06);
        padding-top: 12px;
    }

    /* 6. El botón de WhatsApp a ancho completo */
    .navbar-nav .nav-item:last-child {
        width: 100%;
        margin-top: 8px !important;
    }

    .btn-whatsapp-nav {
        width: 100%;            
        justify-content: center;
        padding: 14px 20px !important;
        font-size: 0.85rem;
    }
}

/* ==========================================================
   MINI CORRECCIÓN ADICIONAL PARA LA ESCALA DEL HAMBURGER
   ========================================================== */
.hamburger.hamburger-custom-sm {
    transform: scale(0.75);
    transform-origin: right center; 
    padding: 0 !important;          
}

/* ==========================================
   HERO & COMPONENTES CON BORDES MODERNOS
========================================== */
.hero-creative {
    position: relative;
    min-height: 93vh; 
    padding: 80px 0; 
    margin: 10px;
    background: url('../images/hero-home.webp') no-repeat center center/cover;
    border-radius: var(--border-radius-lg);
    box-sizing: border-box;
    display: flex;
    align-items: center; 
}

@media screen and (max-width: 991.98px) {
    .hero-creative {
        min-height: 90vh;
        background: url('../images/hero-home-mobile.webp') no-repeat center center/cover;
        padding: 60px 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(18, 21, 19, 0.8) 0%, rgba(18, 21, 19, 0.3) 100%);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.hero-creative .container { z-index: 2; }

.badge-explorer {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 50px;
}

.badge-explorer-primary {
    display: inline-block;
    border: 1px solid var(--color-accent);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 50px; 
}

.btn-primary-custom {
    background-color: #fff;
    color: var(--color-dark);
    border-radius: var(--border-radius-sm);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 16px 36px;
    border: none;
    transition: var(--transition);
}

@media screen and (max-width: 991.98px) {
    .btn-primary-custom {
        padding: 14px 30px;
    }
    
}

.btn-primary-custom:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

.btn-link-custom {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-link-custom:hover {
    color: rgba(255,255,255,0.7);
    padding-left: 8px;
}

.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.mouse-wheel { display: block; width: 20px; height: 32px; border: 1px solid rgba(255,255,255,0.4); border-radius: 10px; position: relative; }
.mouse-wheel::before { content: ''; position: absolute; width: 2px; height: 6px; background-color: #fff; left: 50%; transform: translateX(-50%); top: 6px; animation: scrollMouse 1.5s infinite; }
@keyframes scrollMouse { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 16px; } }

/* ==========================================
   MANIFIESTO Y JUEGO DE IMÁGENES
========================================== */
.section-manifesto { padding: 120px 0; background-color: #fff; }
@media screen and (max-width: 991.98px) {
    .section-manifesto { padding: 80px 0; }
    
}
.manifesto-img-wrapper { position: relative; }

.image-asymmetric {
    border-radius: var(--border-radius-lg); 
    filter: grayscale(15%);
    transition: var(--transition);
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; 
}

.manifesto-box-accent {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px solid var(--color-accent);
    top: 15px; left: -15px;
    border-radius: var(--border-radius-lg);
    z-index: 0;
    pointer-events: none;
}

.stats-row h3 { font-size: 2.5rem; color: var(--color-accent); }

/* ==========================================
   TARJETAS EXPERIENCIAS (BENTO BLOCKS ESTILO)
========================================== */
.section-tours { padding: 120px 0; }
@media screen and (max-width: 991.98px) {
    .section-tours { padding: 80px 0; }
    
}

.tour-card-creative {
    position: relative;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 16px; /* Contenedor tipo burbuja */
    transition: var(--transition);
}

.tour-img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm); /* Recorte suave de la foto */
    margin-bottom: 20px;
}

.tour-img-container img {
    width: 100%;
    object-fit: cover;
    height: 380px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.tour-card-creative:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(18, 21, 19, 0.06) !important;
}

.tour-card-creative:hover .tour-img-container img {
    transform: scale(1.05);
}

.tour-meta { padding: 0 8px 8px 8px; }
.tour-meta h3 { font-size: 1.3rem; margin-bottom: 8px; }
.tour-link-arrow { font-size: 0.8rem; font-weight: 800; color: var(--color-dark); text-decoration: none; transition: var(--transition); }
.tour-link-arrow span { display: inline-block; transition: transform 0.3s ease; }
.tour-link-arrow:hover { color: var(--color-accent); }
.tour-link-arrow:hover span { transform: translateX(4px); }

.wide-card .tour-img-container img { height: 300px; }

/* ==========================================================
CSS EXTRAÍDO DIRECTAMENTE DE HAMBURGERS.CSS (Jonathan Suh)
========================================================== */
.hamburger {
    padding: 15px 15px;
    display: none; /* Oculto en desktop */
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

@media (max-width: 991.98px) {
    .hamburger {
        display: inline-block; /* Visible en móvil */
    }
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* Estilos específicos de la animación: collapse */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.12s ease;
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.12s ease;
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.hamburger-custom-sm {
    transform: scale(0.75); 
    
    transform-origin: center; 
    
    padding: 5px 5px !important; 
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Estilos para el fondo oscuro */
/* Sombra de fondo ultra-corregida */
.navbar-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    z-index: 1040 !important;                       
    opacity: 0 !important;
    pointer-events: none !important;                
    transition: opacity 0.3s ease-index !important;
    display: block !important;                      
}


/* Estado activo */
.navbar-overlay.is-visible {
    opacity: 1 !important;
    pointer-events: auto !important;                
}

/* Tu barra de navegación fija */
#main-navbar.fixed-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 1050 !important;                   
}

/* Forzar a que el contenedor dinámico sea el que se quede fijo arriba */
#main-navbar.fixed-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 1050 !important; /* Máxima prioridad para que no se raye con la sombra */
}

/* Ajuste para el nav interno que viene desde componentes/navbar.html */
#main-navbar .navbar {
    background: transparent !important; /* Evita doble fondo blanco */
    box-shadow: none !important;
}

/* Estilos de la sombra de fondo (permanecen igual, pero aseguramos su nivel de capa) */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1040; /* Justo por debajo del #main-navbar */
    opacity: 0;
    pointer-events: none;                 
    transition: opacity 0.3s ease;        
}

.navbar-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;                 
}

/* ==========================================
   CALL TO ACTION
========================================== */
.section-cta-disruptive {
    padding: 140px 0;
    margin: 10px;
    background: linear-gradient(rgba(18, 21, 19, 0.85), rgba(18, 21, 19, 0.75)), url('../images/hero-banner.webp') center center/cover;
    border-radius: var(--border-radius-lg);
    background-attachment: fixed;
}

@media screen and (max-width: 991.98px) {
    .section-cta-disruptive {
        background-attachment: scroll;
        background: linear-gradient(rgba(18, 21, 19, 0.85), rgba(18, 21, 19, 0.75)), url('../images/hero-banner-mobile.webp') center center/cover;
    }
}

.btn-light-custom {
    background-color: #fff;
    color: var(--color-dark);
    padding: 16px 36px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.btn-light-custom:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-light-custom {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 16px 36px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

/* ==========================================
   FOOTER MEJORADO (MÁXIMA LEGIBILIDAD)
========================================== */
.footer-dark {
    background-color: var(--color-dark);
    padding: 80px 0 30px 0;
}

/* Modificado para asegurar blanco puro en textos */
.footer-dark p, 
.footer-dark .text-white-80 {
    color: #ffffff !important;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-dark h4 span {
    font-weight: 300;
    color: #a4b0a7;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: #169846 !important;
    padding-left: 4px;
}


/* ==========================================
   ELEMENTOS INTERNOS DE EXPERIENCIAS (TABS & MINIS)
========================================== */
.hero-internal {
    height: 95vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: var(--border-radius-lg);
}
@media screen and (max-width: 768px) {
    .hero-internal {
        height: 80vh;
    }
    
}

.border-smooth {
    border-radius: var(--border-radius-sm) !important;
}

/* Controladores de Ruta (Pills) */
.custom-route-tabs .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    border: 1px solid rgba(18, 21, 19, 0.08);
}

.custom-route-tabs .nav-link.active {
    background-color: var(--color-accent) !important;
    color: #fff !important;
    border-color: var(--color-accent);
}

.list-custom-route {
    padding-left: 20px;
}

.list-custom-route li {
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--color-muted);
}

/* Fila inferior de otras experiencias */
.card-mini-tour {
    height: 180px;
    position: relative;
}

.card-mini-tour img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition);
}

.mini-tour-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(18, 21, 19, 0.4);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}

.mini-tour-overlay h5 {
    color: #fff; font-weight: 800; text-uppercase: uppercase; margin:0; font-size: 1.1rem;
}

.card-mini-tour:hover img { transform: scale(1.08); }
.card-mini-tour:hover .mini-tour-overlay { background: rgba(30, 58, 39, 0.7); }

/* ==========================================
   GRUPO DE REDES FLOTANTES AGRUPADAS
========================================== */
.social-floating-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* ==========================================
   AISLAMIENTO Y CORRECCIÓN TOTAL DEL ICONO FLOTANTE
========================================== */
.social-float {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: inline-flex !important; 
    align-items: center !important;  
    justify-content: center !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    text-decoration: none !important;
}

.social-float svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    flex-shrink: 0 !important;       
    aspect-ratio: 1 / 1 !important;  
    display: block !important;
    margin: 0 auto !important;       
}

.social-float:hover {
    transform: scale(1.1) translateY(-3px);
    color: #fff;
}

.whatsapp-float { background-color: #169846; }
.instagram-float { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* ==========================================
   ESTILO CREATIVO BENTO GRID (INCLUSIONES)
========================================== */
.fw-extrabold {
    font-weight: 800;
}

/* Efecto de texto con contorno (Moderno/Urbano) */
.text-stroke {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-dark);
}

/* Tarjetas Bento */
.bento-include-card, .bento-include-card__no-hover {
    border: 1px solid rgba(18, 21, 19, 0.05);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.bg-light-card {
    background-color: #fcfdfe;
}

.bento-include-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(18, 21, 19, 0.04) !important;
    border-color: var(--color-accent);
}

.card-dark-accent {
    background-color: #dfdfdf;
    border: none;
}

.bento-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.font-xs {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Perso */
.bg-perso{
    background-color: transparent;
    color: #1e3a27;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px dotted #1e3a27;
}

@media (max-width: 768px) {
    .bg-perso{
        font-size: 16px;
        padding: 10px !important;
    }
}

.aside-box-shadow{
    box-shadow: 0 8px 24px rgba(30, 58, 39, 0.218);
}

.badge-download-pdf{
    background-color: white;
    color: #1e3a27;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    border: solid 2px white;
    line-height: 45px;
    text-decoration: none;
}
.badge-download-pdf:hover{
    background-color: #1e3a27;
    color: white;
    border: solid 2px #1e3a27;
    transition: all 0.3s ease;
}
.badge-cta{
    padding: 5px 30px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.badge-cta--primary{
    background-color: #1e3a27;
    color: white;
    border: solid 2px #1e3a27;
}
.badge-cta--primary:hover{
    background-color: white;
    color: #1e3a27;
    border: solid 2px #1e3a27;
    transition: all 0.3s ease;
}
.badge-cta--white{
    background-color: transparent;
    color: #1e3a27;
    border: solid 2px #1e3a27;
}
.badge-cta--white:hover{
    background-color: #1e3a27;
    color: white;
    border: solid 2px #1e3a27;
    transition: all 0.3s ease;
}

.box-title{
    font-weight: 500;
    font-size: 24px;
}
.hero-title{
    font-size: 58px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }
}
.color-primary{
    color: #1e3a27;
}
.subtitle-info{
    font-size: 24px;
    font-weight: 600;
    color: #1e3a27;
}
.section-title{
    font-size: 38px;
    font-weight: 700;
    color: #1e3a27;
    text-decoration: uppercase;
}

.landing-img-main{
    height: 350px;
    width: 100%;
    object-fit: cover;
}
.text-recomendation{
    font-size: 16px;
    font-weight: 500;
    color: #1e3a27;
    font-style: italic;
    text-decoration: underline;
}

.img-home-card{
    width: 100%;
    height: 275px !important;
}

.text-dark{
    color: #151515 !important;
}