/* SECCION 1 INICIO PAGINA WEB */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
    font-family:'Poppins',sans-serif;
    background:#fff;
}

img{
    max-width:100%;
    display:block;
}

/* HEADER */

header{
    width:100%;
    background:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 70px;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    height:65px;
}

/* MENU */

.menu{
    display:flex;
    align-items:center;
}

nav ul{
    list-style:none;
    display:flex;
    gap:35px;
}

nav ul li a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:500;
    transition:.3s ease;
}

nav ul li a:hover,
nav ul li a.active{
    color:#f5a623;
}

/* HERO */

.hero{
    position:relative;
    width:100%;
}

.hero img:first-child{
    width:100%;
    height:760px;
    object-fit:cover;
}

/* LOGO */

.hero-logo{
    position:absolute;
    width:260px;
    top:28%;
    left:72%;
    transform:translate(-50%,-50%);
}

/* TEXTO */

.hero-texto{
    position:absolute;
    top:50%;
    left:120px;
    transform:translateY(-50%);
    max-width:650px;
}

.hero-texto h1{
    font-size:58px;
    line-height:1.2;
    color:#1f7a7a;
    font-weight:700;
}

.hero-texto span{
    color:#f5a623;
}

.hero-texto p{
    margin-top:20px;
    font-size:20px;
    color:#1f7a7a;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1024px){

header{
    padding:18px 40px;
}

.hero-texto h1{
    font-size:48px;
}

.hero-logo{
    width:200px;
    left:68%;
}

}

@media(max-width:768px){

header{
    flex-direction:column;
    gap:20px;
    padding:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.hero img:first-child{
    height:650px;
}

.hero-logo{
    width:140px;
    left:50%;
    top:18%;
}

.hero-texto{
    width:90%;
    left:50%;
    top:56%;
    transform:translate(-50%,-50%);
    text-align:center;
}

.hero-texto h1{
    font-size:34px;
}

.hero-texto p{
    font-size:16px;
}

}

@media(max-width:480px){

.hero-texto h1{
    font-size:28px;
}

.hero-texto p{
    font-size:15px;
}

.hero-logo{
    width:115px;
}

nav ul li a{
    font-size:14px;
}

}

/* ========================= */
/* SECCION 2 QUIENES SOMOS */

.quienes-somos{
    width:100%;
    padding:90px 30px 70px;
    background:linear-gradient(to bottom,#ffffff,#eef4f5);
    position:relative;
}

.qs-contenedor{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:50px;
    align-items:start;
}

/* INFO */

.qs-info h2{
    font-size:46px;
    color:#0d3b66;
    margin-bottom:20px;
    font-weight:700;
    position:relative;
}

.qs-info h2::after{
    content:"";
    width:85px;
    height:4px;
    background:#00a8a8;
    display:block;
    margin-top:12px;
    border-radius:20px;
}

.qs-info p{
    font-size:16px;
    line-height:1.8;
    color:#444;
    margin-bottom:30px;
    max-width:560px;
}

.qs-info h3{
    font-size:28px;
    color:#0d3b66;
    margin-bottom:18px;
}

/* VALORES */

.qs-valores{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    max-width:520px;
}

.qs-valores span{
    background:white;
    padding:12px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:500;
    box-shadow:0 6px 14px rgba(0,0,0,.08);
    transition:.3s ease;
}

.qs-valores span:hover{
    background:#0d3b66;
    color:white;
    transform:translateY(-3px);
}

/* TARJETAS */

.qs-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.qs-card{
    background:white;
    padding:28px 22px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    transition:.35s ease;
}

.qs-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.14);
}

.qs-card img{
    width:110px;
    margin:0 auto 15px;
    transition:.35s ease;
}

.qs-card:hover img{
    transform:scale(1.08);
}

.qs-card h4{
    font-size:22px;
    margin-bottom:12px;
    color:#222;
}

.qs-card p{
    font-size:14px;
    line-height:1.7;
    color:#555;
}

/* ========================= */
/* DISTINTIVO */
/* ========================= */

.distintivo-m{
    width:100%;
    display:flex;
    justify-content:flex-end;
    margin-top:18px;
    max-width:1250px;
    margin-left:auto;
    margin-right:auto;
    padding-right:25px;
}

.distintivo-m img{
    width:130px;
    height:auto;
    object-fit:contain;
    opacity:.95;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

.qs-contenedor{
    grid-template-columns:1fr;
}

.qs-info{
    text-align:center;
}



.qs-info p{
    margin:auto auto 30px;
}

.qs-info h2::after{
    margin:12px auto 0;
}

.qs-valores{
    justify-content:center;
    margin:auto;
}

.distintivo-m{
    justify-content:center;
    padding-right:0;
    margin-top:30px;
}

}

@media(max-width:768px){

.quienes-somos{
    padding:70px 20px;
}

.qs-info h2{
    font-size:36px;
}

.qs-info h3{
    font-size:24px;
}

.qs-cards{
    grid-template-columns:1fr;
}

.qs-card{
    padding:24px 20px;
}

.distintivo-m img{
    width:52px;
}

}

@media(max-width:480px){

.qs-info h2{
    font-size:30px;
}

.qs-info p{
    font-size:15px;
}

.qs-valores span{
    width:100%;
    text-align:center;
}

.qs-card h4{
    font-size:20px;
}

.distintivo-m img{
    width:46px;
}

}

/* ========================= */
/* SECCION 3 HOTELES */

.paquetes-hoteles{
    width:100%;
    padding:90px 30px;
    background:linear-gradient(to bottom,#ffffff,#f4f6f9);
}

.paquetes-hoteles h2{
    text-align:center;
    font-size:46px;
    color:#0d3b66;
    margin-bottom:55px;
    font-weight:700;
    position:relative;
}

.paquetes-hoteles h2::after{
    content:"";
    width:85px;
    height:4px;
    background:#00a8a8;
    display:block;
    margin:14px auto 0;
    border-radius:20px;
}

/* GRID */

.hoteles-grid{
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

/* TARJETA */

.hotel-card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    transition:.35s ease;
    border:1px solid #f0f0f0;
}

.hotel-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 35px rgba(0,0,0,.14);
}

/* IMAGEN */

.hotel-card img{
    width:100%;
    height:210px;
    object-fit:cover;
}

/* INFO */

.hotel-info{
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.hotel-info h3{
    font-size:18px;
    color:#222;
    font-weight:600;
    line-height:1.4;
}

/* BOTON */

.btn-leer{
    background:#0d3b66;
    color:white;
    border:none;
    padding:9px 16px;
    border-radius:30px;
    font-size:13px;
    cursor:pointer;
    transition:.3s ease;
    flex-shrink:0;
}

.btn-leer:hover{
    background:#145da0;
}

/* DESPLEGABLE */

.hotel-extra{
    max-height:0;
    overflow:hidden;
    opacity:0;
    padding:0 18px;
    transition:
    max-height .5s ease,
    opacity .35s ease,
    padding .35s ease;
}

.hotel-extra.mostrar{
    max-height:500px;
    opacity:1;
    padding:10px 18px 22px;
}

/* LOGO */

.hotel-logo{
    width:700px !important;
    height:auto !important;
    object-fit:contain !important;
    margin:15px auto !important;
}

/* TEXTO */

.hotel-extra p{
    font-size:14px;
    color:#555;
    line-height:1.7;
    margin-bottom:18px;
}

/* BOTON PDF */

.btn-pdf{
    display:inline-block;
    background:#00a8a8;
    color:white;
    text-decoration:none;
    padding:10px 18px;
    border-radius:30px;
    font-size:13px;
    transition:.3s ease;
}

.btn-pdf:hover{
    background:#008888;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

.hoteles-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.paquetes-hoteles{
    padding:70px 20px;
}

.paquetes-hoteles h2{
    font-size:36px;
}

.hoteles-grid{
    grid-template-columns:1fr;
    gap:22px;
}

.hotel-card{
    width:100%;
}

.hotel-card img{
    height:240px;
}

.hotel-info{
    flex-direction:column;
    align-items:flex-start;
}

.hotel-info h3{
    font-size:20px;
}

.btn-leer{
    width:100%;
    text-align:center;
}

.hotel-extra p{
    font-size:15px;
}

.btn-pdf{
    width:100%;
    text-align:center;
}

}

@media(max-width:480px){

.paquetes-hoteles h2{
    font-size:30px;
}

.hotel-card img{
    height:220px;
}

.hotel-info h3{
    font-size:18px;
}

.hotel-extra p{
    font-size:14px;
}

}

/* ========================= */
/* SECCION 4 TURISMO COMUNITARIO */

.turismo-comunitario{
    width:100%;
    position:relative;
    overflow:hidden;
    padding:95px 30px;
    background:linear-gradient(to bottom,#ffffff,#f4f7f8);
}

/* FONDO */

.tc-fondo{
    position:absolute;
    top:0;
    right:0;
    width:52%;
    height:100%;
    opacity:.13;
    z-index:1;
}

.tc-fondo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENEDOR */

.tc-contenedor{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
}

/* TEXO */

.tc-texto{
    max-width:650px;
}

.tc-texto h2{
    font-size:46px;
    color:#0d3b66;
    margin-bottom:20px;
    font-weight:700;
    position:relative;
}

.tc-texto h2::after{
    content:"";
    width:85px;
    height:4px;
    background:#00a8a8;
    display:block;
    margin-top:12px;
    border-radius:20px;
}

.tc-texto p{
    font-size:16px;
    line-height:1.9;
    color:#444;
    margin-bottom:35px;
}

/* SUBTITULO */

.tc-subtitulo{
    font-size:28px;
    color:#0d3b66;
    margin-bottom:20px;
}

/* EXPERIENCIAS */

.tc-experiencias{
    display:flex;
    flex-direction:column;
    gap:18px;
    max-width:650px;
}

/* TARJETAS */

.tc-card{
    background:white;
    padding:18px 24px;
    border-radius:18px;
    font-size:15px;
    line-height:1.7;
    color:#444;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    border-left:6px solid #00a8a8;
    transition:.35s ease;
}

.tc-card:hover{
    transform:translateX(8px);
    box-shadow:0 14px 30px rgba(0,0,0,.12);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

.tc-fondo{
    width:70%;
    opacity:.09;
}

}

@media(max-width:768px){

.turismo-comunitario{
    padding:75px 20px;
}

.tc-texto{
    max-width:100%;
    text-align:center;
}

.tc-texto h2{
    font-size:36px;
}

.tc-texto h2::after{
    margin:12px auto 0;
}

.tc-subtitulo{
    font-size:24px;
}

.tc-texto p{
    font-size:15px;
}

.tc-experiencias{
    max-width:100%;
}

.tc-card{
    text-align:left;
    padding:18px 20px;
}

.tc-fondo{
    width:100%;
    opacity:.06;
}

}

@media(max-width:480px){

.tc-texto h2{
    font-size:30px;
}

.tc-subtitulo{
    font-size:22px;
}

.tc-card{
    font-size:14px;
    line-height:1.6;
}

}

/* ========================= */
/* SECCION 5 GALERÍA */

/* ========================= */
/* GALERÍA */
/* ========================= */

.galeria-seccion{
    width:100%;
    padding:90px 25px;
    background:linear-gradient(to bottom,#ffffff,#f5f7fa);
    overflow:hidden;
}

/* TITULO */

.titulo-galeria{
    text-align:center;
    font-size:46px;
    color:#0d3b66;
    margin-bottom:55px;
    font-weight:700;
    position:relative;
}

.titulo-galeria::after{
    content:"";
    width:85px;
    height:4px;
    background:#00a8a8;
    display:block;
    margin:14px auto 0;
    border-radius:20px;
}

/* GALERIA */

.tc-galeria{
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* IMAGENES */

.tc-galeria img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:22px;
    transition:.4s ease;
    cursor:pointer;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}

/* HOVER */

.tc-galeria img:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 18px 35px rgba(0,0,0,.16);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1100px){

.tc-galeria{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.galeria-seccion{
    padding:75px 20px;
}

.titulo-galeria{
    font-size:36px;
    margin-bottom:40px;
}

.tc-galeria{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.tc-galeria img{
    height:220px;
    border-radius:18px;
}

}

@media(max-width:480px){

.titulo-galeria{
    font-size:30px;
}

.tc-galeria{
    grid-template-columns:1fr;
}

.tc-galeria img{
    height:240px;
}

}

/* ========================= */
/* SECCION 6 TURISMO BIENESTAR */

.bienestar{
    background:linear-gradient(to bottom, #ffffff, #eef4f5);
    padding:70px 30px;
    text-align:center;
    font-family:'Poppins', sans-serif;
}

/* TITULO */

.bienestar h2{
    font-size:42px;
    color:#0d3b66;
    margin-bottom:18px;
    font-weight:700;
    letter-spacing:1px;
    position:relative;
}

/* LINEA DECORATIVA */

.bienestar h2::after{
    content:"";
    width:85px;
    height:4px;
    background:#00a8a8;
    display:block;
    margin:14px auto 0 auto;
    border-radius:10px;
}

/* TEXTO */

.bienestar-texto{
    max-width:760px;
    margin:auto;
    font-size:16px;
    color:#444;
    line-height:1.7;
    margin-bottom:40px;
}

/* CONTENEDOR */

.bienestar-contenedor{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

/* TARJETAS */

.bienestar-card{
    background:white;
    padding:22px 24px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
    text-align:left;
    transition:all 0.3s ease;
    border:1px solid #f0f0f0;
}

/* EFECTO TARJETA */

.bienestar-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

/* IMAGEN */

.bienestar-card img{
    width:190px;
    display:block;
    margin:0 auto 15px auto;
    transition:transform 0.3s ease;
}

/* EFECTO IMAGEN */

.bienestar-card:hover img{
    transform:scale(1.08);
}

/* TITULO TARJETA */

.bienestar-card h3{
    font-size:21px;
    text-align:center;
    margin-bottom:14px;
    font-weight:600;
    color:#222;
}

/* LISTA */

.bienestar-card ul{
    padding-left:18px;
    margin-bottom:18px;
}

.bienestar-card li{
    margin-bottom:8px;
    font-size:14.5px;
    color:#555;
}

/* BOTON MODERNO */

.btn-bienestar{
    display:block;
    width:150px;
    margin:12px auto 0 auto;
    background:#0d3b66;
    color:white;
    text-decoration:none;
    padding:11px 20px;
    border-radius:30px;
    text-align:center;
    font-size:14px;
    font-weight:600;
    transition:all 0.3s ease;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* EFECTO BOTON */

.btn-bienestar:hover{
    background:#145da0;
    transform:scale(1.05);
}

/* ========================= */
/* SECCION 7 EXPERIENCIAS TURISTICAS */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.experiencias-section{
    width:100%;
    padding:55px 4%;
    background:#f5f5f5;
    font-family:'Poppins',sans-serif;
}

.experiencias-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    color:#1d3557;
    margin-bottom:10px;
}

.experiencias-line{
    width:75px;
    height:4px;
    background:#2bb3a3;
    border-radius:20px;
    margin:0 auto 40px auto;
}

/* CONTENEDOR */
.cards-container{
    display:flex;
    gap:30px;
    overflow-x:auto;
    padding:20px 15px 30px 15px;
    scroll-behavior:smooth;
}

.cards-container::-webkit-scrollbar{
    height:6px;
}

.cards-container::-webkit-scrollbar-thumb{
    background:#cfcfcf;
    border-radius:20px;
}

/* TARJETAS */
.travel-card{
    min-width:260px;
    height:390px;
    border-radius:26px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    flex-shrink:0;
    transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.travel-card:hover{
    transform:translateY(-6px) scale(1.02);
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
    z-index:10;
}

.travel-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s ease;
}

.travel-card:hover img{
    transform:scale(1.08);
}

.travel-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.88) 8%,
    rgba(0,0,0,0.45) 42%,
    rgba(0,0,0,0.05) 75%);
}

.travel-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:24px;
    color:white;
    z-index:2;
}

.travel-location{
    font-size:12px;
    background:rgba(255,255,255,0.16);
    border:1px solid rgba(255,255,255,0.2);
    display:inline-block;
    padding:6px 14px;
    border-radius:40px;
    margin-bottom:14px;
    backdrop-filter:blur(10px);
}

.travel-content h3{
    font-size:26px;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:700;
}

.travel-btn{
    width:46px;
    height:46px;
    border-radius:50%;
    background:white;
    color:#1d3557;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    transition:0.35s ease;
}

.travel-card:hover .travel-btn{
    background:#2bb3a3;
    color:white;
    transform:rotate(45deg) scale(1.1);
}

/* DESPLEGABLE */
.detalle-card{
    display:none;
    margin-top:45px;
    background:#ececec;
    border-radius:30px;
    padding:35px;
    gap:22px;
    align-items:flex-start;
    opacity:0;
    transform:translateY(30px);
    transition:0.45s ease;
}

.detalle-card.activo{
    display:flex;
    opacity:1;
    transform:translateY(0);
    animation:fadeZoom 0.6s ease;
}

@keyframes fadeZoom{

0%{
    opacity:0;
    transform:translateY(40px) scale(0.96);
}

100%{
    opacity:1;
    transform:translateY(0) scale(1);
}

}

.detalle-info{
    width:26%;
    padding-top:10px;
    animation:slideLeft 0.8s ease;
}

.detalle-info h2{
    font-size:46px;
    line-height:0.95;
    font-weight:800;
    color:#151515;
    margin-bottom:22px;
}

.detalle-info p{
    font-size:15px;
    color:#6d6d6d;
    line-height:1.8;
}

.detalle-gallery{
    width:74%;
    display:flex;
    gap:18px;
}

.detalle-item{
    flex:1;
    transition:0.45s ease;
    animation:fadeUp 0.7s ease;
}

.detalle-item:hover{
    transform:translateY(-8px);
}

.detalle-item img{
    width:100%;
    height:340px;
    object-fit:cover;
    border-radius:24px;
    margin-bottom:14px;
    transition:0.55s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.detalle-item:hover img{
    transform:scale(1.04);
    box-shadow:0 18px 35px rgba(0,0,0,0.18);
}

.detalle-item h3{
    font-size:20px;
    color:#1d1d1d;
    margin-bottom:8px;
    font-weight:700;
}

.detalle-item p{
    color:#6f6f6f;
    line-height:1.7;
    font-size:14px;
}

@keyframes slideLeft{

0%{
    opacity:0;
    transform:translateX(-30px);
}

100%{
    opacity:1;
    transform:translateX(0);
}

}

@keyframes fadeUp{

0%{
    opacity:0;
    transform:translateY(30px);
}

100%{
    opacity:1;
    transform:translateY(0);
}

}

/* RESPONSIVE */
@media(max-width:1100px){

.detalle-card{
    flex-direction:column;
}

.detalle-info{
    width:100%;
}

.detalle-gallery{
    width:100%;
    flex-direction:column;
}

.detalle-item img{
    height:280px;
}

}

@media(max-width:768px){

.experiencias-title{
    font-size:34px;
}

.travel-card{
    min-width:220px;
    height:340px;
}

.travel-content h3{
    font-size:22px;
}

.detalle-card{
    padding:24px;
    border-radius:24px;
}

.detalle-info h2{
    font-size:36px;
}

}

/* ========================= */
/* SECCION 8 RUTAS TURISTICAS */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.rutas-section{
  width:100%;
  background:#f3f3f3;
  padding:70px 30px 220px;
  font-family:'Poppins', sans-serif;
  overflow:visible;
  position:relative;
}

.rutas-titulo{
  text-align:center;
  margin-bottom:50px;
}

.rutas-titulo h2{
  font-size:42px;
  color:#163d7a;
  font-weight:800;
  margin-bottom:18px;
}

.linea{
  width:90px;
  height:6px;
  background:#36c4c0;
  margin:auto;
  border-radius:20px;
}

.rutas-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:30px 10px;
  justify-items:center;
  position:relative;
}

.ruta-item{
  position:relative;
}

.ruta-card{
  position:relative;
  width:245px;
  height:245px;
  border-radius:50%;
  cursor:pointer;
  transition:.4s ease;
  z-index:2;
}

.ruta-card:hover{
  transform:translateY(-8px) scale(1.03);
}

.ruta-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  display:block;
  box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.ruta-badge{
  position:absolute;
  top:15px;
  right:-5px;
  width:95px;
  height:95px;
  border-radius:50%;
  background:#8fc0e3;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  font-size:16px;
  font-weight:700;
  line-height:1.3;
  padding:10px;
  box-shadow:0 5px 18px rgba(0,0,0,.12);
}

/* TARJETAS */

.info-card{
  position:absolute;
  width:640px;
  background:#ececec;
  border-radius:30px;
  padding:28px;
  display:none;
  gap:18px;
  z-index:999;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
  animation:aparecer .35s ease;
}

.info-card.active{
  display:flex;
}

/* ARRIBA */
.top-card{
  top:270px;
}

/* ABAJO */
.bottom-card{
  bottom:270px;
}

/* POSICIONES */
.left-open{
  left:0;
}

.center-open{
  left:-190px;
}

.right-open{
  right:0;
}

@keyframes aparecer{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.info-left{
  width:190px;
  flex-shrink:0;
}

.info-left h3{
  font-size:33px;
  line-height:1;
  font-weight:900;
  color:#111;
  margin-bottom:18px;
}

.info-left p{
  font-size:13px;
  color:#666;
  line-height:1.9;
}

.lugares{
  display:flex;
  gap:15px;
}

.lugar{
  width:170px;
}

.lugar img{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:24px;
  margin-bottom:12px;
}

.lugar h4{
  font-size:17px;
  color:#111;
  margin-bottom:6px;
  font-weight:800;
}

.lugar p{
  font-size:13px;
  line-height:1.6;
  color:#666;
}

@media(max-width:1600px){

  .rutas-grid{
    grid-template-columns:repeat(4,1fr);
  }

}

@media(max-width:1200px){

  .rutas-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .info-card{
    width:560px;
  }

}

@media(max-width:900px){

  .rutas-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .info-card{
    position:relative !important;
    width:100%;
    top:30px !important;
    bottom:auto !important;
    left:0 !important;
    right:auto !important;
    flex-direction:column;
  }

  .lugares{
    flex-direction:column;
  }

  .lugar{
    width:100%;
  }

  .lugar img{
    height:220px;
  }

}

@media(max-width:600px){

  .rutas-grid{
    grid-template-columns:1fr;
  }

  .ruta-card{
    width:210px;
    height:210px;
  }

  .ruta-badge{
    width:80px;
    height:80px;
    font-size:14px;
  }

  .rutas-section{
    padding:60px 20px 180px;
  }

}


/* ========================= */
/* SECCION 9 TRAMITES MIGRATORIOS */

/* ========================= */
/* TRÁMITES MIGRATORIOS */
/* ========================= */

.tramites{
    width:100%;
    padding:95px 30px;
    background:linear-gradient(to bottom,#ffffff,#eef3f4);
}

/* TITULO */

.tramites h2{
    text-align:center;
    font-size:46px;
    color:#0d3b66;
    margin-bottom:55px;
    font-weight:700;
    position:relative;
}

.tramites h2::after{
    content:"";
    width:85px;
    height:4px;
    background:#00a8a8;
    display:block;
    margin:14px auto 0;
    border-radius:20px;
}

/* CONTENEDOR */

.tramites-contenedor{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:28px;
}

/* TARJETA */

.tramite-card{
    background:white;
    border-radius:26px;
    padding:25px;
    display:flex;
    gap:28px;
    align-items:center;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    transition:.35s ease;
}

.tramite-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.14);
}

/* IMAGEN */

.tramite-img{
    width:280px;
    flex-shrink:0;
}

.tramite-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:20px;
}

/* INFO */

.tramite-info{
    flex:1;
}

.tramite-info h3{
    font-size:30px;
    color:#111;
    margin-bottom:16px;
}

/* TEXTO */

.tramite-texto{
    font-size:15px;
    line-height:1.8;
    color:#555;
    margin-bottom:22px;
}

/* GRID */

.tramite-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

/* ITEMS */

.tramite-item{
    display:flex;
    align-items:center;
    gap:14px;
    background:#f5f7f9;
    padding:14px 18px;
    border-radius:18px;
    text-decoration:none;
    color:#222;
    transition:.3s ease;
    box-shadow:0 5px 14px rgba(0,0,0,.05);
}

.tramite-item:hover{
    background:#0d3b66;
    color:white;
    transform:translateY(-3px);
}

/* ICONO */

.pdf-icon{
    width:42px;
    height:auto;
    flex-shrink:0;
}

/* TEXTO ITEM */

.tramite-item span{
    font-size:14px;
    font-weight:600;
    line-height:1.4;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

.tramite-card{
    flex-direction:column;
    align-items:flex-start;
}

.tramite-img{
    width:100%;
}

.tramite-img img{
    height:280px;
}

}

@media(max-width:768px){

.tramites{
    padding:75px 20px;
}

.tramites h2{
    font-size:36px;
}

.tramite-card{
    padding:22px;
    gap:22px;
}

.tramite-info h3{
    font-size:26px;
}

.tramite-grid{
    grid-template-columns:1fr;
}

.tramite-item{
    width:100%;
}

.tramite-img img{
    height:240px;
}

}

@media(max-width:480px){

.tramites h2{
    font-size:30px;
}

.tramite-info h3{
    font-size:22px;
}

.tramite-texto{
    font-size:14px;
}

.tramite-item{
    padding:12px 14px;
}

.tramite-item span{
    font-size:13px;
}

.pdf-icon{
    width:36px;
}

.tramite-img img{
    height:220px;
}

}

/* ========================= */
/* SECCION 10 SERVICIOS DE ASOSIACION DE CONDOMINIOS DE LA PLAZA */

/* ========================= */
/* ASOCIACIÓN CONDOMINIO */
/* ========================= */

.asociacion{
    width:100%;
    position:relative;
    padding:110px 25px;
    background-image:url("img/fondo.jpg");
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

/* OVERLAY */

.asociacion-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

/* CONTENEDOR */

.asociacion-contenedor{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:auto;
    background:white;
    padding:60px 55px;
    border-radius:28px;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* TITULO */

.asociacion-contenedor h2{
    font-size:42px;
    color:#0d3b66;
    margin-bottom:24px;
    line-height:1.3;
    font-weight:700;
    position:relative;
}

.asociacion-contenedor h2::after{
    content:"";
    width:85px;
    height:4px;
    background:#00a8a8;
    display:block;
    margin:16px auto 0;
    border-radius:20px;
}

/* TEXTO */

.asociacion-contenedor p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:35px;
}

/* BOTON */

.btn-descargar{
    display:inline-block;
    background:#0d3b66;
    color:white;
    text-decoration:none;
    padding:16px 34px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.btn-descargar:hover{
    background:#145da0;
    transform:translateY(-4px);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:768px){

.asociacion{
    padding:80px 20px;
}

.asociacion-contenedor{
    padding:40px 28px;
}

.asociacion-contenedor h2{
    font-size:34px;
}

.asociacion-contenedor p{
    font-size:15px;
}

.btn-descargar{
    width:100%;
    text-align:center;
}

}

@media(max-width:480px){

.asociacion-contenedor{
    padding:35px 22px;
}

.asociacion-contenedor h2{
    font-size:28px;
}

.asociacion-contenedor p{
    font-size:14px;
}

.btn-descargar{
    padding:14px 22px;
    font-size:14px;
}

}

/* ========================= */
/* SECCION 11 CONTACTANOS */

/* ========================= */
/* CONTACTO */
/* ========================= */

.contacto{
    width:100%;
    padding:95px 30px 70px;
    background:linear-gradient(to bottom,#ffffff,#eef3f4);
}

/* HEADER */

.contacto-header{
    max-width:1200px;
    margin:auto auto 55px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* TITULO */

.contacto-header h2{
    font-size:46px;
    color:#0d3b66;
    font-weight:700;
    position:relative;
}

.contacto-header h2::after{
    content:"";
    width:85px;
    height:4px;
    background:#00a8a8;
    display:block;
    margin-top:14px;
    border-radius:20px;
}

/* REDES */

.redes{
    display:flex;
    align-items:center;
    gap:16px;
}

.redes a{
    width:56px;
    height:56px;
    border-radius:50%;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    transition:.35s ease;
}

.redes a:hover{
    transform:translateY(-5px);
    background:#0d3b66;
}

.redes img{
    width:28px;
    height:28px;
    object-fit:contain;
}

/* CONTENEDOR */

.contacto-contenedor{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    margin-bottom:45px;
}

/* COLUMNAS */

.contacto-columna{
    display:flex;
    flex-direction:column;
    gap:28px;
}

/* TARJETAS */

.contacto-item{
    background:white;
    padding:28px;
    border-radius:24px;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    transition:.35s ease;
}

.contacto-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.14);
}

/* TITULO ITEM */

.contacto-titulo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:22px;
}

.contacto-titulo img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.contacto-titulo h3{
    font-size:28px;
    color:#111;
}

/* BOXES */

.contacto-box{
    background:#f5f7f9;
    padding:16px 20px;
    border-radius:18px;
    margin-bottom:14px;
    font-size:15px;
    line-height:1.7;
    color:#444;
    word-break:break-word;
}

.contacto-box:last-child{
    margin-bottom:0;
}

.direccion p{
    margin:0;
}

/* MAPA */

.mapa{
    max-width:1200px;
    margin:auto;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.mapa iframe{
    width:100%;
    height:420px;
    border:0;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

.contacto-contenedor{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.contacto{
    padding:75px 20px 60px;
}

.contacto-header{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:40px;
}

.contacto-header h2{
    font-size:36px;
}

.contacto-item{
    padding:24px;
}

.contacto-titulo h3{
    font-size:24px;
}

.contacto-titulo img{
    width:44px;
    height:44px;
}

.contacto-box{
    font-size:14px;
}

.mapa iframe{
    height:320px;
}

}

@media(max-width:480px){

.contacto-header h2{
    font-size:30px;
}

.contacto-item{
    padding:22px 18px;
}

.contacto-titulo{
    gap:12px;
}

.contacto-titulo h3{
    font-size:20px;
}

.contacto-titulo img{
    width:38px;
    height:38px;
}

.redes a{
    width:48px;
    height:48px;
}

.redes img{
    width:24px;
    height:24px;
}

.mapa iframe{
    height:260px;
}

}



