/* ==================================================
   RESET GENERAL
================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Roboto', sans-serif;
    background:#f8f9fa;
    color:#111;
    line-height:1.6;
}

/* ==================================================
   CONTENEDORES
================================================== */
.contenedor,
.container1{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==================================================
   HEADER
================================================== */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(6px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    z-index:1000;
}

.logo{
    height:62px;
    width:auto;
}

/* MENU */
.menu{
    display:flex;
    gap:28px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:#d4af37;
}

/* ==================================================
   BANNER
================================================== */
.banner{
    width:100%;
    height:100vh;
    background:url("../img/abg1.png") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    padding-top:90px;
}

.contenido-banner{
    background:rgba(0,0,0,.42);
    backdrop-filter:blur(10px);
    padding:55px 70px;
    border-radius:18px;
    text-align:center;
    color:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.30);
    border:1px solid rgba(255,255,255,.10);
}

.contenido-banner h1{
    font-family:'Cinzel', serif;
    font-size:72px;
    margin-bottom:15px;
    font-weight:700;
}

.contenido-banner p{
    font-size:24px;
    margin-bottom:28px;
    font-weight:300;
}

.btn-banner{
    display:inline-block;
    padding:15px 35px;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    font-weight:700;
    border-radius:8px;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.btn-banner:hover{
    transform:translateY(-2px);
    background:#e7c04a;
}

/* ==================================================
   NOSOTROS
================================================== */
.conocenos1{
    padding:90px 0;
    background:#fff;
    text-align:center;
}

.conocenos1 h3,
.bienvenida h3,
.contacto h3{
    color:#d4af37;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.conocenos1 h2,
.bienvenida h2,
.contacto h2{
    font-size:42px;
    margin-bottom:50px;
    font-weight:700;
}

.fila-nosotros{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card-nosotros{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card-nosotros:hover{
    transform:translateY(-8px);
}

.card-nosotros img{
    width:100%;
    height:270px;
    object-fit:cover;
}

.contenido-card{
    padding:28px;
}

.contenido-card h4{
    font-size:28px;
    margin-bottom:18px;
}

.contenido-card p{
    color:#555;
    font-size:16px;
}

/* ==================================================
   SERVICIOS
================================================== */
.bienvenida{
    padding:90px 0;
    background:#193441;
    color:#fff;
    text-align:center;
}

.fila-servicios{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card-servicio{
    background:#fff;
    color:#111;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.3s;
}

.card-servicio:hover{
    transform:translateY(-8px);
}

.card-servicio img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card-servicio h4{
    font-size:24px;
    padding:20px 20px 10px;
}

.card-servicio p{
    padding:0 20px 25px;
    color:#555;
}

/* ==================================================
   CONTACTO
================================================== */
.contacto{
    padding:90px 0;
    background:#f4f4f4;
    text-align:center;
}

.formulario{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.formulario input,
.formulario textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    font-family:'Roboto', sans-serif;
}

.formulario textarea{
    resize:none;
}

/* ==================================================
   FOOTER
================================================== */
.center-footer{
    background:#152d37;
    padding:45px 0;
    text-align:center;
}

.logofoot{
    height:55px;
    margin-bottom:15px;
}

.center-footer p{
    color:#fff;
    margin-bottom:6px;
}

.bottom-footer{
    background:#0f1e25;
    text-align:center;
    padding:12px;
}

.bottom-footer p{
    color:#ccc;
    font-size:14px;
}

/* ==================================================
   WHATSAPP
================================================== */
.social{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:999;
}

.social img{
    width:58px;
    border-radius:50%;
    box-shadow:0 8px 20px rgba(0,0,0,.20);
    transition:.3s;
}

.social img:hover{
    transform:scale(1.08);
}

/* ==================================================
   RESPONSIVE
================================================== */
@media(max-width:992px){

.fila-nosotros{
    grid-template-columns:1fr;
}

.fila-servicios{
    grid-template-columns:1fr 1fr;
}

.contenido-banner h1{
    font-size:54px;
}

.contenido-banner{
    padding:40px;
}
}

@media(max-width:768px){

.header{
    flex-direction:column;
    height:auto;
    padding:15px;
}

.menu{
    margin-top:10px;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
}

.banner{
    padding-top:130px;
}

.fila-servicios{
    grid-template-columns:1fr;
}

.conocenos1 h2,
.bienvenida h2,
.contacto h2{
    font-size:32px;
}

.contenido-banner h1{
    font-size:38px;
}

.contenido-banner p{
    font-size:18px;
}

.contenido-banner{
    width:90%;
    padding:28px;
}
}

@media(max-width:480px){

.logo{
    height:48px;
}

.menu a{
    font-size:14px;
}

.btn-banner{
    width:100%;
}
}












/* Caja central elegante */
.contenido-banner{
    animation: entradaSuave 1s ease;
}

@keyframes entradaSuave{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Botón */
.btn-banner:hover{
    transform:translateY(-2px);
}





/* =========================
   WHATSAPP MULTIPLE
========================= */

.social{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
}

.wa-btn{
    width:60px;
    border-radius:50%;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.whatsapp-menu{
    display:none;
    flex-direction:column;
    margin-bottom:12px;
    gap:10px;
}

.social:hover .whatsapp-menu{
    display:flex;
}

.wa-item{
    background:#25d366;
    color:white;
    text-decoration:none;
    padding:12px 18px;
    border-radius:10px;
    font-size:14px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.wa-item:hover{
    background:#1ebe5d;
}

