/*====================================
            GENERAL
=====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#ffffff;

    color:#222;

}

a{

    text-decoration:none;

}

img{

    width:100%;

    display:block;

}


/*====================================
      BARRA SUPERIOR
=====================================*/

.barra-superior{

    background:#ffffff;

    padding:18px 0;

    border-bottom:1px solid #ddd;

}

.btn-proyecto{

    border:2px solid #777;

    color:#222;

    padding:12px 24px;

    margin-left:15px;

    font-weight:bold;

    transition:.3s;

    background:#fff;

}

.btn-proyecto:hover{

    background:#222;

    color:white;

}


/*====================================
            HEADER
=====================================*/

header{

    background:#555;

    padding:18px 0;

}

.logo{

    color:white;

    font-size:45px;

    font-weight:bold;

    line-height:45px;

    margin:0;

}

nav ul{

    display:flex;

    justify-content:center;

    align-items:center;

    list-style:none;

    margin:0;

    padding:0;

}

nav ul li{

    margin:0 18px;

}

nav ul li a{

    color:white;

    font-size:22px;

    font-weight:600;

    transition:.3s;

}

nav ul li a:hover{

    color:#FFD54F;

}


/*====================================
BOTON RESERVAR
=====================================*/

.btn-reservar{

    background:black;

    color:white;

    padding:14px 24px;

    font-weight:bold;

    display:inline-block;

    transition:.3s;

}

.btn-reservar:hover{

    background:#8B4513;

    color:white;

}

.usuario{

    color:white;

    font-size:50px;

    margin-left:20px;

    vertical-align:middle;

}


/*====================================
            BANNER
=====================================*/

.banner{

    padding:80px 0;

}

.banner h1{

    font-size:62px;

    font-weight:900;

    line-height:72px;

}

.banner p{

    font-size:26px;

    margin:30px 0;

    color:#555;

}

.imagen-banner{

    border-radius:5px;

    height:420px;

    object-fit:cover;

}


/*====================================
BOTONES BANNER
=====================================*/

.botones-banner{

    margin-top:35px;

}

.btn-negro{

    background:#222;

    color:white;

    padding:16px 35px;

    font-weight:bold;

    margin-right:20px;

    display:inline-block;

}

.btn-negro:hover{

    background:#000;

    color:white;

}

.btn-gris{

    background:#D9D9D9;

    color:#222;

    padding:16px 35px;

    font-weight:bold;

    display:inline-block;

}

.btn-gris:hover{

    background:#bfbfbf;

}

/*====================================
    NUESTRAS ESPECIALIDADES
=====================================*/

.especialidades{

    padding:80px 0;

    background:#f8f8f8;

}

.titulo-seccion{

    text-align:center;

    margin-bottom:60px;

}

.titulo-seccion h2{

    font-size:42px;

    font-weight:bold;

    letter-spacing:2px;

    color:#222;

}

.card-especialidad{

    background:white;

    border:1px solid #ddd;

    text-align:center;

    padding:20px;

    transition:.3s;

    height:100%;

}

.card-especialidad:hover{

    transform:translateY(-8px);

    box-shadow:0 10px 20px rgba(0,0,0,.15);

}

.card-especialidad img{

    height:220px;

    object-fit:cover;

    margin-bottom:20px;

}

.card-especialidad h4{

    font-size:22px;

    margin-bottom:15px;

    font-weight:bold;

}

.card-especialidad a{

    display:inline-block;

    background:#222;

    color:white;

    padding:10px 20px;

    font-weight:bold;

    transition:.3s;

}

.card-especialidad a:hover{

    background:#8B4513;

}


/*====================================
        RESERVA
=====================================*/

.reserva{

    background:#ffffff;

    padding:70px 0;

    border-top:1px solid #ddd;

    border-bottom:1px solid #ddd;

}

.reserva h3{

    font-size:40px;

    font-weight:bold;

    color:#222;

}

.reserva p{

    font-size:20px;

    color:#666;

    margin-top:15px;

}

.btn-reserva{

    background:black;

    color:white;

    padding:16px 35px;

    font-weight:bold;

    transition:.3s;

}

.btn-reserva:hover{

    background:#8B4513;

    color:white;

}


/*====================================
            FOOTER
=====================================*/

footer{

    background:#222;

    color:white;

    padding:60px 0;

}

.footer-logo{

    font-size:34px;

    font-weight:bold;

    margin-bottom:25px;

}

.redes a{

    color:white;

    font-size:28px;

    margin-right:20px;

    transition:.3s;

}

.redes a:hover{

    color:#FFD54F;

}

footer h4{

    margin-bottom:25px;

    font-weight:bold;

}

.footer-menu{

    list-style:none;

    padding:0;

}

.footer-menu li{

    margin-bottom:10px;

}

.footer-menu a{

    color:white;

}

.footer-menu a:hover{

    color:#FFD54F;

}

footer p{

    margin-bottom:10px;

}


/*====================================
        RESPONSIVE
=====================================*/

@media(max-width:992px){

.logo{

    text-align:center;

    margin-bottom:20px;

}

nav ul{

    flex-direction:column;

}

nav ul li{

    margin:12px 0;

}

.banner{

    text-align:center;

}

.banner h1{

    font-size:42px;

    line-height:52px;

}

.banner p{

    font-size:20px;

}

.imagen-banner{

    margin-top:40px;

    height:auto;

}

.usuario{

    display:none;

}

}

@media(max-width:768px){

.btn-proyecto{

    display:block;

    margin:10px 0;

}

.barra-superior .d-flex{

    flex-direction:column;

    align-items:center;

}

.titulo-seccion h2{

    font-size:32px;

}

.reserva{

    text-align:center;

}

.reserva .text-end{

    text-align:center !important;

    margin-top:25px;

}

}

/*==========================
LINK ACTIVO
===========================*/

.activo{

    color:#FFD54F !important;

}


/*==========================
ANIMACIÓN TARJETAS
===========================*/

.card-especialidad{

    transition:.4s;

}

/*====================================
        PÁGINA MENÚ
=====================================*/

.titulo-menu{

    padding:70px 0 40px;

    text-align:center;

}

.titulo-menu h1{

    font-size:55px;

    font-weight:bold;

    margin-bottom:20px;

}

.titulo-menu p{

    font-size:24px;

    color:#555;

}



.menu-cafe{

    padding:40px 0 80px;

}



.categorias{

    background:#efefef;

    padding:25px;

}

.categorias h3{

    font-weight:bold;

    margin-bottom:20px;

}

.categorias ul{

    list-style:none;

    padding:0;

}

.categorias li{

    padding:10px 0;

    font-size:20px;

    border-bottom:1px solid #ddd;

}



.producto-menu{

    background:#f8f8f8;

    border:1px solid #ddd;

    transition:.3s;

    height:100%;

}

.producto-menu:hover{

    transform:translateY(-8px);

    box-shadow:0 10px 20px rgba(0,0,0,.15);

}

.producto-menu img{

    height:180px;

    object-fit:cover;

}

.producto-info{

    padding:15px;

    text-align:center;

}

.producto-info h5{

    font-weight:bold;

    margin-bottom:10px;

}

.producto-info p{

    color:#8B4513;

    font-weight:bold;

}

/*====================================
        NOSOTROS
=====================================*/

.historia{

    padding:80px 0;

}

.historia h1{

    font-size:56px;

    font-weight:bold;

    margin-bottom:30px;

}

.historia p{

    font-size:22px;

    color:#555;

    line-height:38px;

    margin-bottom:25px;

}

.imagen-historia{

    height:420px;

    object-fit:cover;

    border-radius:5px;

}



/*====================================
        VALORES
=====================================*/

.valores{

    background:#f3f3f3;

    padding:80px 0;

}

.valores h2{

    font-size:50px;

    font-weight:bold;

    margin-bottom:60px;

}



.card-valor{

    background:white;

    text-align:center;

    padding:35px 20px;

    height:100%;

    transition:.3s;

    border:1px solid #ddd;

}

.card-valor:hover{

    transform:translateY(-8px);

    box-shadow:0 10px 20px rgba(0,0,0,.15);

}

.card-valor i{

    font-size:60px;

    color:#8B4513;

    margin-bottom:20px;

}

.card-valor h4{

    font-size:28px;

    font-weight:bold;

    margin-bottom:20px;

}

.card-valor p{

    font-size:18px;

    color:#666;

}



/*====================================
RESPONSIVE NOSOTROS
=====================================*/

@media(max-width:992px){

.historia{

text-align:center;

}

.imagen-historia{

margin-top:40px;

height:auto;

}

.valores h2{

font-size:38px;

}

}

/*====================================
        GALERÍA
=====================================*/

.titulo-galeria{

    padding:70px 0 20px;

    text-align:center;

}

.titulo-galeria h1{

    font-size:58px;

    font-weight:bold;

}

.titulo-galeria p{

    font-size:24px;

    color:#666;

}



.filtros{

    padding-bottom:45px;

}

.filtros .btn{

    min-width:170px;

    height:55px;

    font-size:22px;

    font-weight:bold;

    border-radius:0;

    margin:10px;

}



.galeria{

    padding-bottom:80px;

}



.foto-galeria{

    overflow:hidden;

    transition:.4s;

    border:1px solid #ddd;

    background:#fff;

}



.foto-galeria img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s;

}



.foto-galeria:hover img{

    transform:scale(1.08);

}



.foto-galeria:hover{

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}



/*=============================
RESPONSIVE GALERÍA
==============================*/

@media(max-width:992px){

.filtros .btn{

width:100%;

margin-bottom:15px;

}

.titulo-galeria h1{

font-size:42px;

}

.titulo-galeria p{

font-size:20px;

}

}

/*====================================
        CONTACTO
=====================================*/

.titulo-contacto{

    padding:70px 0 40px;

    text-align:center;

}

.titulo-contacto h1{

    font-size:58px;

    font-weight:bold;

}

.titulo-contacto p{

    font-size:24px;

    color:#666;

}



/*====================================
        INFORMACIÓN
=====================================*/

.contacto{

    padding-bottom:80px;

}

.info-contacto{

    background:#e8e8e8;

    padding:40px;

    height:100%;

}

.dato{

    display:flex;

    align-items:flex-start;

    gap:20px;

}

.dato i{

    font-size:48px;

    color:#222;

}

.dato h3{

    font-size:34px;

    font-weight:bold;

    margin-bottom:10px;

}

.dato p{

    font-size:22px;

    color:#444;

    margin-bottom:5px;

}



/*====================================
        REDES
=====================================*/

.redes-contacto{

    margin-top:35px;

}

.redes-contacto a{

    font-size:50px;

    color:#111;

    margin-right:25px;

    transition:.3s;

}

.redes-contacto a:hover{

    color:#8B4513;

}



/*====================================
        FORMULARIO
=====================================*/

.formulario{

    background:#e8e8e8;

    padding:40px;

}

.formulario label{

    font-size:24px;

    font-weight:bold;

}

.form-control,

.form-select{

    border-radius:0;

    font-size:20px;

}

textarea{

    resize:none;

}

.btn-enviar{

    background:#222;

    color:white;

    border:none;

    padding:15px 60px;

    font-size:22px;

    transition:.3s;

}

.btn-enviar:hover{

    background:#8B4513;

}



/*====================================
RESPONSIVE CONTACTO
=====================================*/

@media(max-width:992px){

.info-contacto{

margin-bottom:30px;

}

.titulo-contacto h1{

font-size:42px;

}

.titulo-contacto p{

font-size:20px;

}

.dato h3{

font-size:28px;

}

.dato p{

font-size:18px;

}

.redes-contacto{

text-align:center;

}

}

/*====================================
            RESERVAS
====================================*/

.titulo-reserva{

    background:#ececec;

    padding:70px 0 40px;

    text-align:center;

}

.titulo-reserva h1{

    font-size:56px;

    font-weight:bold;

}

.titulo-reserva p{

    font-size:24px;

    color:#555;

}

.reservas{

    background:#ececec;

    padding:20px 0 80px;

}

.reservas label{

    font-weight:bold;

    font-size:22px;

}

.reservas .form-control,

.reservas .form-select{

    border-radius:0;

    font-size:20px;

}

.promesa{

    background:white;

    padding:40px;

    height:100%;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.promesa h2{

    text-align:center;

    font-size:44px;

    font-weight:bold;

    margin-bottom:30px;

}

.promesa p{

    font-size:24px;

    color:#444;

    margin-bottom:25px;

}

.promesa img{

    width:100%;

    height:420px;

    object-fit:cover;

    margin-top:20px;

    border-radius:4px;

}

.btn-enviar{

    width:100%;

    background:#222;

    color:white;

    border:none;

    padding:16px;

    font-size:24px;

    transition:.3s;

}

.btn-enviar:hover{

    background:#8B4513;

}

@media(max-width:992px){

.titulo-reserva h1{

font-size:42px;

}

.titulo-reserva p{

font-size:20px;

}

.promesa{

margin-top:40px;

}

.promesa h2{

font-size:34px;

}

.promesa p{

font-size:20px;

}

}