/*==========================
        RESET
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#111;
    color:white;

}

/*==========================
        HEADER
===========================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(12px);

    z-index:1000;

}

.logo h2{

    color:#ff2d2d;

    font-size:30px;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#ff2d2d;

}

.boton{

    background:#ff2d2d;

    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:40px;

    font-weight:bold;

    transition:.3s;

}

.boton:hover{

    background:white;

    color:#111;

}/*==========================
BOTÓN VER SERVICIOS
==========================*/

.btn3{

    display:inline-block;

    margin-left:15px;

    padding:15px 35px;

    border:2px solid white;

    color:white;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;

}

.btn3:hover{

    background:white;

    color:#111;

}/*==================================
            HERO
==================================*/

.hero{

    height:100vh;

    background:url("../img/banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.65);

}

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    width:90%;

    max-width:900px;

}

.hero-content h1{

    font-size:65px;

    margin-bottom:25px;

    color:white;

}

.hero-content p{

    font-size:22px;

    line-height:35px;

    margin-bottom:40px;

    color:#ddd;

}/*==============================
        SERVICIOS
==============================*/

.servicios{
    padding:80px 8%;
    background:#f5f5f5;
}

.servicios h2{
    text-align:center;
    font-size:40px;
    margin-bottom:15px;
}

.subtitulo{
    text-align:center;
    margin-bottom:50px;
    color:#000000;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:20px 20px 10px;
}

.card p{
    padding:0 20px 20px;
    color:#555;
}

.card a{
    display:block;
    background:#c40000;
    color:white;
    text-align:center;
    text-decoration:none;
    padding:15px;
    font-weight:bold;
}

.card a:hover{
    background:#900000;
}/*=========================
DETALLE DEL SERVICIO
=========================*/

.detalle-servicio{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    padding:100px 8%;

    flex-wrap:wrap;

}

.detalle-img{

    flex:1;

    min-width:320px;

}

.detalle-img img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:15px;

    box-shadow:0 15px 30px rgba(0,0,0,.2);

}


.detalle-texto{

    flex:1;

    min-width:320px;

}

.detalle-texto h1{

    font-size:45px;

    margin-bottom:20px;

}

.detalle-texto p{

    line-height:30px;

    margin-bottom:20px;

}

.detalle-texto ul{

    margin-bottom:30px;

}

.detalle-texto li{

    margin-bottom:12px;

}.btn2{
    display: inline-block;
    background: #ff2d2d;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-right: 15px;
}

.btn2:hover{
    background: #d60000;
    transform: translateY(-3px);
}
/* ================= GALERÍA ================= */

.galeria{
    padding: 80px 10%;
    text-align: center;
}

.galeria h2{
    font-size: 36px;
    margin-bottom: 15px;
}

.galeria .subtitulo{
    margin-bottom: 40px;
    color: #666;
}

.galeria-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galeria-grid img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.galeria-grid img:hover{
    transform: scale(1.05);
}.footer{

background:#0f0f0f;

padding:60px 20px;

text-align:center;

color:white;

}

.footer h2{

color:#ff3333;

margin-bottom:20px;

}

.footer p{

margin:10px;

}

.redes{

margin:25px 0;

}

.redes a{

display:inline-flex;

justify-content:center;

align-items:center;

width:55px;

height:55px;

background:#ff3333;

color:white;

border-radius:50%;

margin:0 10px;

text-decoration:none;

font-size:24px;

transition:.3s;

}

.redes a:hover{

transform:translateY(-6px);

background:white;

color:#ff3333;

}

.copy{

margin-top:30px;

color:#888;

}.whatsapp{

position:fixed;

bottom:25px;

right:25px;

width:70px;

height:70px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:40px;

color:white;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.3);

transition:.3s;

z-index:999;

}

.whatsapp:hover{

transform:scale(1.1);

}/*========================
      NOSOTROS
========================*/

.nosotros{
    padding: 100px 10%;
    background: #111;
    text-align: center;
}

.nosotros h2{
    font-size: 42px;
    color: #fff;
    margin-bottom: 25px;
}

.nosotros p{
    max-width: 900px;
    margin: auto;
    color: #d6d6d6;
    line-height: 1.8;
    font-size: 18px;
}

.nosotros ul{
    list-style: none;
    margin-top: 35px;
    padding: 0;
}

.nosotros ul li{
    color: white;
    font-size: 18px;
    margin: 12px 0;
}

.nosotros .btn2{
    margin-top: 35px;
    display: inline-block;
}/*========================
    POR QUÉ ELEGIRNOS
========================*/

.elegirnos{
    padding:100px 10%;
    background:#181818;
    text-align:center;
}

.elegirnos h2{
    color:#fff;
    font-size:42px;
    margin-bottom:50px;
}

.beneficios{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.beneficio{
    background:#222;
    padding:35px;
    border-radius:15px;
    transition:.3s;
}

.beneficio:hover{
    transform:translateY(-8px);
}

.beneficio h3{
    color:#ff3b3b;
    margin-bottom:15px;
}

.beneficio p{
    color:#d4d4d4;
}.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height: 60px;
    width:auto;


}/*=========================
      ANIMACIONES
=========================*/

.animar{
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animar.mostrar{
    opacity: 1;
    transform: translateY(0);
}