    :root { --primary: #1e3a8a; --secondary: #7ed982; --text: #334155; --bg: #f8fafc; }


    .turismo-container{
        max-width: 1920px;
        margin: 1em auto;
        padding: 3em 3em;
        /* font-family: 'Helvetica Neue', Arial, sans-serif; */
        width: 90%;
        background-color: #fbfbfb;
        border-radius: 0.8em;
    } 



    .turismo-header { text-align: center; margin-bottom: 40px; }
    .turismo-header h1 { color: #1e3a8a; font-size: 36px; margin-bottom: 10px; }
    .turismo-header p { color: #64748b; font-size: 1em; padding: 1em}
    
    /* Buscador Principal */
    .search-wrapper {background: linear-gradient(180deg, #066bca, #4893e3);padding: 3em 3em;border-radius: 15px;box-shadow: 0 10px 25px rgba(0,0,0,0.08);margin-bottom: 50px;}
    .search-form { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-end; }
    .form-group-search { flex: 1; min-width: 250px; display: flex; flex-direction: column; gap: 8px; }
    .form-group-search label {font-weight: bold;color: #ffffff;font-size: 14px;}
    .form-group-search select { padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; background: #f8fafc; font-size: 15px; outline: none; width: 100%; }
    .form-group-search input {padding: 12px;border: 1px solid #cbd5e1;border-radius: 8px;background: #f8fafc;font-size: 15px;outline: none;width: 100%;color: #173a5b;}
    .btn-search { background: #7ed982; color: white; border: none; padding: 14px 28px; border-radius: 8px; cursor: pointer; font-weight: bold; font-size: 16px; transition: background 0.2s; height: 48px; }
    .btn-search:hover { background: #047857; }

    /* Grid de Categorías (Estilo Country Tours) */
    .categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .category-card { position: relative; height: 400px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; text-decoration: none; display: block; }
    .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .category-card:hover img { transform: scale(1.08); }
    .category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #00000057 20%, #00000000 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; box-sizing: border-box; }
    .category-overlay h3 { color: #ffffff; font-size: 24px; margin: 0 0 8px 0; font-weight: bold; }
    .category-overlay p { color: #cbd5e1; font-size: 14px; margin: 0; }


    .back-link { display: inline-block; margin-bottom: 20px; color: #059669; text-decoration: none; font-weight: bold; }
    .listado-title { color: #1e3a8a; font-size: 28px; margin-bottom: 30px; }
    
    /* Grid de Resultados */
    .grid-destinos { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
    
    /* Tarjeta de Destino Individual */
    .destino-card { 
        position: relative; 
        background: #fff; 
        border-radius: 12px; 
        overflow: hidden; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
        text-decoration: none; 
        color: inherit; 
        display: flex; 
        flex-direction: column; 
        height: 420px;
    }

    /* Contenedor de la Imagen y el Efecto Hover */
    .card-image-wrapper { 
        position: relative; 
        height: 240px; 
        overflow: hidden; 
    }
    .card-image-wrapper img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        transition: transform 0.4s ease;
    }
    
    /* Capa Hover Deslizable (Efecto TemplateMonster) */
    .hover-overlay {
        position: absolute;
        bottom: -100%; /* Totalmente oculta abajo */
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(30, 58, 138, 0.9); /* Azul corporativo con opacidad */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 20px;
        box-sizing: border-box;
        color: #fff;
    }

    /* Al pasar el mouse por encima de la tarjeta */
    .destino-card:hover .hover-overlay { bottom: 0; } /* Desliza la capa hacia arriba */
    .destino-card:hover .card-image-wrapper img { transform: scale(1.1); }

    /* Iconos de Servicios en el Hover */
    .hover-icons-grid { 
        display: flex; 
        gap: 15px; 
        justify-content: center; 
        flex-wrap: wrap; 
        margin-top: 15px; 
    }
    .service-icon-item { 
        text-align: center; 
        font-size: 13px; 
        background: rgba(255,255,255,0.15); 
        padding: 8px 12px; 
        border-radius: 6px; 
        min-width: 60px;
    }
    .service-icon-item i { display: block; font-size: 20px; margin-bottom: 5px; }

    /* Información de la Tarjeta (Parte Inferior estática) */
    .card-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
    .card-info h3 { margin: 0 0 5px 0; font-size: 18px; color: #1e3a8a; }
    .location-tag { color: #64748b; font-size: 14px; margin-bottom: 10px; }
    .btn-view-more { 
        background: #f1f5f9; 
        color: #1e3a8a; 
        text-align: center; 
        padding: 10px; 
        border-radius: 6px; 
        font-weight: bold; 
        font-size: 14px; 
        transition: all 0.2s;
    }
    .destino-card:hover .btn-view-more { background: #059669; color: #fff; }
    
    .no-results { text-align: center; padding: 50px; color: #64748b; font-size: 18px; width: 100%; }

        
    /* Layout de dos columnas */
    .layout-v2 { display: flex; gap: 40px; margin-top: 20px; padding: 0em 3em 2em 3em; }
    .col-principal { width: 70%; display: flex; flex-direction: column; gap: 15px; }
    .col-lateral { width: 30%; }

    /* HEADER */
    .header-v2 h1 {
        /* font-size: 34px; */
        color: var(--primary);
        margin: 0 0 0.1em 0;
        line-height: 1.4em;
        background-color: #f7f7f7;
    }


    .meta-location { color: #64748b; font-size: 16px; margin-bottom: 25px; }

    /* ESTRUCTURA DEL ACORDEÓN (ESTILO LUXSTAR / TEMPLATEMONSTER) */
    .accordion-item { background: white; border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.01); }
    
    .accordion-header { 
        width: 100%; background: white; padding: 18px 22px; text-align: left;
        font-size: 18px; font-weight: 600; color: var(--primary); border: none;
        display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.2s;
    }
    .accordion-header:hover { background: #f8fafc; }
    .accordion-header i { transition: transform 0.3s; color: var(--secondary); }
    
    /* Contenido colapsable animado */
    .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: white; }
    .accordion-body-inner { padding: 1em 2em; border-top: 1px solid #f1f5f9; }
    
    /* Estado Abierto (Gestionado por JS) */
    .accordion-item.active .accordion-content { max-height: 2000px; transition: max-height 0.5s ease-in; }
    .accordion-item.active .accordion-header { background: #f1f5f9; }
    .accordion-item.active .accordion-header i { transform: rotate(180px); }

    /* RENDER DE BLOQUES INTERNOS */
    .block-parrafo { 
        line-height: 1.7em; 
        color: #475569; 
        padding: 0.8em;
        font-size: 0.9em; 
    }

    .block-servicios-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }

    .accordion-body-inner h3 {
        /* font-size: 34px; */
        color: var(--primary);
        margin: 0 0 0.1em 0;
        line-height: 1.4em;
        background-color: #f7f7f7;
    }




    .block-parrafo ul {
        /* font-size: 1.0em; */
        color: #475569;
        margin-left: 2em;
        line-height: 1.4em;
    }

    .block-parrafo li {
        /* font-size: 1.0em; */
        color: #475569;
    }
    





    .service-item { background: #f8fafc; padding: 12px; border-radius: 8px; text-align: center; border: 1px solid #e2e8f0; }
    .service-item i { display: block; font-size: 22px; color: var(--secondary); margin-bottom: 5px; }
    
    /* FORMULARIO DE TURISMO (ESTILO PREMIUM LUXSTAR) */
    .form-booking-container { background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 30px; margin-top: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
    .form-booking-container h3 { margin-top: 0; color: var(--primary); font-size: 22px; border-bottom: 2px solid #f1f5f9; padding-bottom: 12px; margin-bottom: 20px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full-width { grid-column: span 2; }
    .form-group label { font-size: 14px; font-weight: 600; color: #475569; }
    .form-group input, .form-group select, .form-group textarea { padding: 10px 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 15px; outline: none; transition: 0.2s; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1); }
    .btn-submit-form { background: var(--primary); color: white; border: none; padding: 14px; border-radius: 6px; font-size: 16px; font-weight: bold; cursor: pointer; transition: 0.2s; margin-top: 10px; width: 100%; }
    .btn-submit-form:hover { background: #172554; }

    /* SIDEBAR STICKY RESUMEN */
    /*.sticky-sidebar { position: sticky; top: 20px; background: white; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); border-left: 4px solid var(--secondary); }*/
    .sticky-sidebar { position: sticky; top: 20px; }
    

    .contact-card { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-top: 5px solid var(--secondary); }
    .contact-card h3 { margin-top: 0; color: var(--primary); line-height: 1.9em; }
    .btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25d366; color: white; padding: 15px; border-radius: 8px; text-decoration: none; font-weight: bold; margin-top: 20px; transition: 0.3s; font-size: 0.8em; }
    .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }


    p{
        line-height: 1.7em;
        text-align: justify;
        margin: 1em 0em;
    }



    @media(max-width: 768px){
        .layout-v2 { flex-direction: column; }
        .col-principal, .col-lateral { width: 100%; }
        .form-grid { grid-template-columns: 1fr; }
        .form-group.full-width { grid-column: span 1; }
    }

