

/*=========================================
HERO ADOPCIONES
=========================================*/

.adoption-hero{

    padding:90px 0;

    background:#faf5eb;

}

.adoption-hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.adoption-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.adoption-text{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.adoption-text h1{

    font-size:58px;

    color:#3b2f2f;

    line-height:1.15;

    margin:8px 0 20px;

}

.adoption-text p{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:35px;

}

/*=========================================
NUESTROS MICHIS
=========================================*/

.cats-section{

    padding:120px 0;

    background:#ffffff;

}

.cats-filter{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin:50px 0 60px;

}

.filter{

    padding:14px 28px;

    border:none;

    border-radius:50px;

    background:#faf5eb;

    color:#3b2f2f;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.filter:hover{

    background:#6b7a5a;

    color:#ffffff;

}

.filter.active{

    background:#6b7a5a;

    color:#ffffff;

}

.cats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

/*=========================
TARJETAS
=========================*/

.cat-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

}

.cat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 40px rgba(0,0,0,.15);

}

.cat-card img{

    width:100%;

    height:270px;

    object-fit:cover;

    display:block;

}

.cat-info{

    padding:24px;

}

/*=========================
NOMBRE + CORAZÓN
=========================*/

.cat-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:10px;

}

.cat-header h3{

    font-size:28px;

    color:#3b2f2f;

    margin:0;

}

.status-heart{

    font-size:24px;

    transition:.3s;

}

.available{

    color:#e53935;

}

.pending{

    color:#f4b400;

}

.adopted{

    color:#bdbdbd;

}

/*=========================
DATOS
=========================*/

.cat-data{

    display:block;

    color:#6b7a5a;

    font-weight:600;

    margin-bottom:12px;

}

.cat-info p{

    color:#666;

    line-height:1.7;

    margin-bottom:22px;

}

/*=========================
BOTÓN
=========================*/

.cat-info .btn-primary{

    width:100%;

    text-align:center;

}

/*=========================
OCULTAR TARJETAS
=========================*/

.cat-card.hidden{

    display:none;

}

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

@media(max-width:1100px){

    .cats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:700px){

    .cats-grid{

        grid-template-columns:1fr;

    }

}


/*=========================================
MODAL ADOPCIONES
=========================================*/

.adoption-modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.70);

    display:none;

    justify-content:center;

    align-items:center;

    padding:30px;

    z-index:9999;

}

.adoption-modal.active{

    display:flex;

    animation:fadeModal .3s ease;

}

.modal-content{

    width:100%;

    max-width:1050px;

    background:#ffffff;

    border-radius:25px;

    overflow:hidden;

    position:relative;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.modal-grid{

    display:grid;

    grid-template-columns:420px 1fr;

}

/*=====================
IMAGEN
======================*/

.modal-image{

    background:#faf5eb;

}

.modal-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/*=====================
INFORMACIÓN
======================*/

.modal-info{

    padding:45px;

}

.modal-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.modal-top h2{

    font-size:42px;

    color:#3b2f2f;

}

/*=====================
ESTADO
======================*/

.status{

    padding:10px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

}

.status.available{

    background:#ffe9e9;

    color:#d32f2f;

}

.status.pending{

    background:#fff6da;

    color:#d9a400;

}

.status.adopted{

    background:#eeeeee;

    color:#777;

}

/*=====================
TARJETAS
======================*/

.modal-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;

}

.info-card{

    background:#faf5eb;

    border-radius:15px;

    padding:18px;

}

.info-card h4{

    color:#6b7a5a;

    margin-bottom:8px;

}

.info-card span{

    color:#3b2f2f;

}

/*=====================
HISTORIA
======================*/

.modal-history h3{

    color:#3b2f2f;

    margin-bottom:15px;

}

.modal-history p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

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

.modal-buttons{

    display:flex;

    gap:18px;

}

/*=====================
CERRAR
======================*/

.modal-close{

    position:absolute;

    top:18px;

    right:18px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    box-shadow:0 5px 18px rgba(0,0,0,.15);

    cursor:pointer;

    font-size:28px;

    transition:.3s;

}

.modal-close:hover{

    background:#6b7a5a;

    color:#ffffff;

}

/*=====================
ANIMACIÓN
======================*/

@keyframes fadeModal{

    from{

        opacity:0;

        transform:scale(.96);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

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

@media(max-width:900px){

    .modal-grid{

        grid-template-columns:1fr;

    }

    .modal-image{

        height:320px;

    }

    .modal-info{

        padding:30px;

    }

    .modal-cards{

        grid-template-columns:1fr;

    }

    .modal-buttons{

        flex-direction:column;

    }

}


/*=========================================
REQUISITOS DE ADOPCIÓN
=========================================*/

.requirements{

    padding:120px 0;

    background:#faf5eb;

}

.requirements-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.requirement-card{

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.requirement-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.requirement-card img{

    display:block;

    width:70px;

    height:70px;

    object-fit:contain;

    margin:0 auto 22px;

}

.requirement-card h3{

    font-size:24px;

    color:#3b2f2f;

    margin-bottom:15px;

}

.requirement-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:1000px){

    .requirements-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:700px){

    .requirements-grid{

        grid-template-columns:1fr;

    }

}

/*=========================================
HISTORIAS FELICES
=========================================*/

.happy-stories{

    padding:120px 0;

    background:#ffffff;

}

.stories-slider{

    display:flex;

    align-items:center;

    gap:25px;

    margin-top:60px;

}

.stories-wrapper{

    flex:1;

    overflow:hidden;

    position:relative;

}

.story-slide{

    display:none;

    grid-template-columns:420px minmax(0,1fr);

    gap:45px;

    align-items:center;

    background:#faf5eb;

    border-radius:30px;

    padding:35px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.story-slide.active{

    display:grid;

}

.story-image{

    width:100%;

    height:420px;

}

.story-image img{

    width:auto;

    height:350;

    object-fit:cover;

    border-radius:25px;

}

.story-info{

    width:100%;

    min-width:0;

}

.story-date{

    display:inline-block;

    background:#6b7a5a;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:20px;

}

.story-info h3{

    font-size:42px;

    color:#3b2f2f;

    margin-bottom:20px;

    line-height:1.2;

}

.story-info p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

    overflow-wrap:break-word;

    word-break:break-word;

}

.story-stars{

    font-size:24px;

    margin-bottom:18px;

}

.story-info strong{

    display:block;

    font-size:18px;

    color:#3b2f2f;

}

/*=========================
FLECHAS
=========================*/

.story-prev,
.story-next{

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#6b7a5a;

    color:#fff;

    font-size:26px;

    cursor:pointer;

    transition:.3s;

    flex-shrink:0;

}

.story-prev:hover,
.story-next:hover{

    background:#3b2f2f;

    transform:scale(1.08);

}

/*=========================
DOTS
=========================*/

.story-dots {

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:35px;

}

.story-dot{

    width:13px;

    height:13px;

    border-radius:50%;

    background:#d4d4d4;

    cursor:pointer;

    transition:.3s;

}

.story-dot.active{

    background:#6b7a5a;

    transform:scale(1.2);

}



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

.footer{

    position:relative;

    background:#221818;

    color:#ffffff;

    padding:50px 0 20px;
}

.footer-content{

    display:grid;

    grid-template-columns:200px 130px 200px 200px 1fr;

    gap:20px;

    align-items:flex-start;

}

.footer-logo img{

    width:120px;

    margin-bottom:15px;

}

.footer-logo p{

    font-size:15px;

    font-weight:600;

}

.footer-links h3{

    font-size:13px;

    margin-bottom:5px;

    color:#ffffff;

}

.footer-links p{
    
    margin-bottom:0px;

    font-size:12px;

    color:#e9e9e9;

}

.footer-policy p{
    
    margin-bottom:0px;

    font-size:12px;

    color:#e9e9e9;

}

.footer-hours p{

    margin-bottom:0px;

    font-size:12px;

    color:#e9e9e9;

}

.footer-policy h3{

    font-size:13px;

    margin-bottom:5px;

    color:#ffffff;

}

.footer-hours h3{

    font-size:13px;

    margin-bottom:5px;

    color:#ffffff;

}

.footer-complaints{

    margin-top:20px;

}

.footer-complaints h3{

    font-size:12px;

    margin-bottom:5px;

    color:#ffffff;

}

.footer-complaints img{

    width:100px;          /* Un poquito más pequeña */

    display:block;

    transition:.30s ease;

}

.footer-complaints img:hover{

    transform:scale(1.05);

}

.footer-map iframe{

    border-radius:10px;

}



.footer ul{

    list-style:none;

}

.footer ul li{
    font-size:12px; /* medida detexto del footer*/

    margin-bottom:0px; /*margen de los links de li*/

}

.footer a{

    color:#e9e9e9;

    transition:.3s;

}

.footer a:hover{

    color:#faf5eb;

}


.footer-copy{

    border-top:1px solid rgba(255,255,255,.15);

    padding:10px;

    text-align:center;

    color:#d8d8d8;

    font-size:12px;
    
    height:10px;      /* Puedes subirlo a 60 o 70 px */


}

.footer-copy p{

    margin:0;

    line-height:1;

}
/*=========================================
GALA
=========================================*/

.gala-footer{

    position:relative;
    height:0;
    z-index:10;


}

.gala-footer img{

    position:absolute;

    right:0;      /* Más a la derecha */

    top:0;      /* Se sienta sobre el footer */

    width:150px;

    transition:.35s ease;

}

.gala-footer img:hover{

    transform:translateY(-8px) rotate(-4deg);

}