/*!
Theme Name: La Tribuna
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: la-tribuna
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

La Tribuna is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Estilo
	 ========================================================================== */

 body {
      /*font-family: 'Montserrat', sans-serif;*/
      font-family: 'Poppins', sans-serif;
      font-weight: 300;
      color: #7b7a7a;

    }

    a { text-decoration:none; }
    section { padding: 3em 0; }

    h1,h2,h3,h4,h5 {}

    ul,label{
  margin:0;
  padding:0;
}


@font-face {
  font-family: 'kenian';
  src: 
       url('fuentes/kenyan-coffee-rg.ttf') format('truetype');
}

#text1, #text2 {
    font-family: 'kenian';
}

.container { max-width:1180px; }

.jumbotron {
    height: 500px;
    background-color: black; /* Fondo inicial */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Inicialmente ocultamos los textos */
.animated-text {
    font-size: 5.2rem;
    font-weight: normal;
    opacity: 0;
    transform: translateX(-250px); /* Cambiado de translateY(30px) a translateX(-50px) */
    transition: opacity 3.5s ease, transform 3.5s ease;
    font-family: "Squada One", sans-serif;
}

/* Clase para mostrar los textos */
.show {
    opacity: 1;
    transform: translateX(0); /* Desliza hacia su posición original */
}

/* Estilos para la imagen del banner */
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
}

/* Clase para mostrar la imagen */
.show-image {
    opacity: 1;
}

.jumbotron h1  { color:#ec3237; font-size:8rem; }

/* Animación para deslizar la imagen hacia la derecha */
@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

/* Clase para aplicar la animación de deslizamiento */
.slide-out {
    animation: slideOutRight 1.5s forwards;
}
    
    .nav-bg-color { background: rgb(220,35,40);
background: linear-gradient(97deg, rgba(220,35,40,1) 0%, rgba(240,72,76,1) 26%, rgba(247,85,89,1) 33%, rgba(231,73,76,1) 40%, rgba(140,1,2,1) 100%)!important; width:100%;  }
    .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #cc0f13;
  padding: 1em 0;
}

.navbar-brand {
  margin-right: auto;
}

.navbar-nav {
  display: flex;
}

.nav-item {
  margin-right: 15px;
  font-size: 1.1em;
}
.nav-item a { color:#fff;  text-transform: uppercase; font-size: 0.9em;}
.nav-item a:hover { color:#fcff00; }
.nav-item a.active { color:#fcff00!important; }
.navbar-collapse {
 flex-grow: 0!important; }
 .navbar-toggler-icon {  }
 .navbar-toggler {
    border-color: #fff;
}

.dropdown-item {

    color: #000!important;
}


 .banner {width: 100%; height: auto; position: relative; display: block;}
  .banner img { max-width:100%; width:100%; height: auto; }
    
    .section-heading {
     
      /*margin: 50px 0;*/
      margin: 0;
    }
    
    .section-heading h2 {
      font-size: 32px;
      margin-bottom: 1em;
      color: #b62026;
    }

    .section-heading h2 span {

      font-size: 23px;
    }

       .section-heading h2 i {
      font-size: 92px;
      margin-bottom: 0.3em;
      color: #b62026;
    }
    
    .block {
      flex-direction: column;
     display: flex;
     justify-content: center;

      
    }
    .block a { color:#328dba; }
    
    .block img {
      width: 100%;
   
      margin-bottom: 10px;
    }
    
    .block h3 {
      font-size: 1.8em;
      margin-bottom: 0px;
      padding: 1em 0 0.5em 0;
      font-weight: normal;
      color: #b62026;
    }
    
    .parallax {
      background-image: url('img/2400X1350-HERO_2-1600x600.jpg');
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      text-align: center;
      padding: 140px 0;
      color: #ffffff;
    }
    .parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.inicio { text-align:left; padding:0em; font-size:1.1em; color: #585866; }
.intro { background-color:#f1f1f1; padding:4em 0; }
.intro h1 { color:#b62026; font-size:36px; }
.destacados { background: url(img/negro.jpg); background-repeat: repeat-x; padding:3em 0;  text-align:center; }
.destacados h2 { color:#fff; }
.serv {padding: 10px 10px 30px 10px;
    background-color: #fff;
    width: 32%;
  margin: 0.6%;
      box-shadow: 0 0 10px 0 rgba(43,52,59,.1);
}

.serv-cat {padding: 10px 10px 30px 10px;
    background-color: #fff;
    width: 32%;
  margin: 0.6%;
      box-shadow: 0 0 10px 0 rgba(43,52,59,.1);
      text-align: center;
      margin-bottom: 2em;
}

.serv-cat h3 {
    font-size: 1.4em;
}

.eventos h5 {
    color: #2d2d2d;
    padding: 0.6em;
}

.eventos p {
    padding: 0 4em;
}

.eventos a p {
    padding: 0;
    color: #333;
}

.btn-cenas a {
     display: inline-block;
    border: 1px solid #e9aa46;
    padding: 8px 20px;
}

.btn-cenas a.active {
   
    
}

  
.btn_pedido {background: rgb(215,145,50);
background: linear-gradient(310deg, rgba(215,145,50,1) 13%, rgba(255,220,85,1) 50%, rgba(234,167,75,1) 86%);color:#fff; padding: 0.5em 1.5em; font-size: 1.1em; margin-top: 2em; font-weight: 300;}

.cenas h2 { font-size:1.5em; }

.cenas p span {font-style: italic; font-weight: 500;}

.img-cenas {
     display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items:  start;
}
.txt-cenas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:  start;
}

.txt-cenas h4 { font-size:1.2em; }

.p-textos { text-align:left; }
.parallax h2, .parallax a { z-index:5; position:relative; }

.parallax a { background: rgb(215,145,50);
background: linear-gradient(310deg, rgba(215,145,50,1) 13%, rgba(255,220,85,1) 50%, rgba(234,167,75,1) 86%);color:#000; padding: 0.5em 1.5em; font-size: 1.1em; margin-top: 2em; font-weight: 500;}

.parallax p { z-index:5; position:relative; padding:30px 4em; font-size:1.1em; }
    
    .footer {
      background: #000; color:#b62026;
      padding: 4em 0;
      text-align: center;
    }
      .footer ul { list-style:none; margin:5px 0; padding:0 }
      .footer ul li { margin:5px; }
    
    .footer-logo {
      margin-bottom: 20px;
    }
    .footer h3 { font-size:1.3em; padding:0; margin:0; text-align:left; }
    
    .footer-links {
      margin-bottom: 20px;
    }
    
    .footer-social {
      margin-bottom: 20px;
    }
    
     .footer-links a,
    .footer-social a {
      margin-right: 10px;
      color: #fff;
      display: block;
      text-align: left;
      font-size: 0.9em;
    }

    .footer-links a.whats {font-size: 1.2em;}

    .footer-links i { color:#999; }


    .leer { padding:1em; margin: 1em 0; background-color:#000; color:#fff; border:0; }

    .ubicacion iframe { border: none; width: 100%; min-height:300px; }


    /*-- sign-in --*/
   
.formulario_registro label {
    width: 100%;
 color:rgba(95,95,95,1.00); 
 letter-spacing:1px;
  font-size:1em; 
  font-weight:400; 
  padding-left:12px;
}


.formulario_registro input[type="text"], .formulario_registro input[type="password"], input[type="tel"], .formulario_registro input[type="email"] {
    width: 100%;
    padding: 15px 10px;
    font-size: 0.9em;
    margin: 0 0 1em;
    outline: none;
    color: #000;
    border: 1px solid #bfbfbf;
    letter-spacing: 1px;
    text-align: left;
}
.formulario_registro input[type="text"] {
    background: none;
    display: block;
}
.formulario_registro input[type="email"] {
    background: none;
    display: block;
}

.formulario_registro input[type="date"], .formulario_registro input[type="time"], .formulario_registro input[type="number"] {
    display: block;
    width: 97%;
    padding: 15px 10px;
    font-size: 0.9em;
    margin: 0 0 1em;
    outline: none;
    color: #000;
    border: 1px solid #bfbfbf;
    letter-spacing: 1px;
    text-align: left;
    line-height: 16px;
}
.formulario_registro input[type="date"], .formulario_registro input[type="time"] { margin-right:3% }
.formulario_registro input[type="submit"] {
    padding: 10px 0;
    width: 36%;
    font-size: 1em;
    border: none;
    color: #fff;
    background:#ec1f25;
    outline: none;
    font-weight: 600;
    letter-spacing: 1px;
}
.formulario_registro input[type="submit"]:hover {
    background:#a6b753;
}
.formulario_registro p{
  font-size: 0.9em;
    color: #212121;
    letter-spacing: 1px;
    padding:2em 0;
}
.formulario_registro p a {
    color: #23B684;
  text-decoration:underline;
}
.formulario_registro p a:hover{
  color:#212121;
}
.formulario_registro textarea {background: none;
    display: block; width: 100%;
    padding: 15px 10px;
    font-size: 0.9em;
    margin: 0 0 1em;
    outline: none;
    color: #000;
    border: 1px solid #bfbfbf;
    letter-spacing: 1px;
    text-align: left; }




/* Eventos y catering  */
     
    .tit-eve { margin: 1.2em 0 0.6em 0; display: block; color: #b62026}
    .eventos-lat-i { order:1; }
    .precio-ev { font-size:3em; color:orangered; font-family: "Squada One", sans-serif; }
    .precio-ev span { font-size:0.5em;}
    p.bold { font-weight:600; }
    .list-eve { padding:1em 2em; }
    .list-eve li { color:#000; }
  .txt-min { font-size:0.8em;
   background-color: #f8f9fa; border: 1px solid #dee2e6; padding: 15px; border-radius: 8px; margin: 2em 0;
   }
  .txt-min2 { font-size:0.74em; padding:0; }

  .taquiza {  border-bottom:1px dashed #aaa9aa; margin-bottom:1em; }

  .eventos-lat-d { margin: 2em 0; order:2; }

  .list-eve2 { padding:1em 2em; }
  .list-eve2 li { color:#b62026; }
  .list-eve2 li span { display:block; color:#000;  font-size:0.6em; text-transform:uppercase; }

  .list-eve-tacos { padding:1em; text-align:center; border:  1px solid #d0d2d6; margin: 0.6em  0; display: block;}
  .list-eve-tacos li { list-style:none; color:#000; font-weight:500; }
  .list-eve-tacos li.canasta-cantidad { font-weight:600; font-size:1.1em; }
  .list-eve-tacos li.canasta-precio { color: #b62026; font-weight:600; font-size:1.3em; }
  .list-eve-tacos li.canasta-precio span { display:block; font-size:0.5em; }
  .list-eve-tacos li.incluye span { display:block; font-size:0.8em; }
  .list-eve-tacos li.incluye span.txt-min { font-size:0.7em; }

  .chilaquiles-sec { text-align:center; }

     .ensaladas {
    padding: 1em;
   }

  .ensaladas h3 {
    color: #000;
    font-size: 1.2em;
  }
  .ensaladas p { 
     font-size: 0.8em;
     color: #373737;
  }

  .b-verde {
     border: 5px solid #8fd8a6;
  }

    .b-ama {
     border: 5px solid #ebc62a;
  }

.breadcrumb-item a {
    color: #f0494d;
    font-weight: 400;
}

.uber-leyenda {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    padding: 1em 15%;
    margin-bottom: 1em;
}
.uber-leyenda img { width:120px; }

.uber-leyenda p { color:#fff; text-align:left; color:#999; }

.cenas .fa-bowl-food {
    color: #fcff00!important;
}

strong {
    color: #4b4b4b!important;
    font-weight: 500!important;
}

.tx-orange {
    color: orangered;
    font-weight: 500;
    font-size: 1.4em;
}

.btns_info {
    margin-bottom: 2em;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

        .btn_info_w a {
            display: inline-block;
            margin-top: 2em; 
            font-size: 1.2em;
            padding:0.5em 1.5em;
            background-color: #25d366;
            border: 1px solid #fff;
            border-radius: 5px;
            color: #fff;
            text-decoration: none;

              }

        .btn_info_w a i {

            font-size: 1.4em;
            margin-right: 10px;
            line-height: 1.4em;
        }

       .btn_info_w a:hover {

            background-color: #a6b753;

        }
 

        .btn_info a {
            display: inline-block;
            margin-top: 2em; 
            font-size: 1.2em;
            padding:0.5em 1.5em;
            background-color: #ec1f25;
            border: 1px solid #fff;
            border-radius: 5px;
            color: #fff;
            text-decoration: none;

              }

        .btn_info a i {

            font-size: 1.4em;
            margin-right: 10px;
            line-height: 1.4em;
        } 

        .btn_info a:hover {

            background-color: orangered;

        }

        .h2-taquiza {
            font-size: 1.7em;
            color: #b62026;
            margin: 2em auto 1em auto;
        }

        .h4-taquiza {
            color: #000;
        }

        .div-precio {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            padding: 15px;
            border-radius: 8px;
            margin: 3em;
            text-align: center;
        }

        .div-precio h3 {
            color: orangered; 
            font-size: 2.5rem; 
            font-weight: bold;
             margin-bottom: 5px;
        }


/* RESPONSIVE   */

@media only screen and (max-width: 767px) {
  .jumbotron {

  background-position: left;
  height: 240px;

}
 
  .navbar-nav {
    padding: 1em 0;
    align-items: center;
  }

  .logo-top { width:96%; }

  .section-heading h2 {
 
  margin: 1em 0 0.5em 0;

}

  .parallax {
  padding: 100px 0;

}

.parallax p {

  padding: 30px 2em;

}

  .inicio {  padding:0 1em; font-size:1em; }
  .intro h1 {  font-size:28px; }
  .section-heading h2 {
      font-size: 26px;

    }

    .serv, .serv-cat {
    width: 90%;
  margin: 5%;
      
}
.promos { margin-bottom:1.6em; }

.animated-text {
    font-size: 2.6rem;
}
.jumbotron h1  { color:#ec3237; font-size:2.8rem; }


 .eventos-lat-i { margin: 2em 0; order:2; }
  .eventos-lat-d { margin: 2em 0; order:1; }


.uber-leyenda {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
}

.uber-leyenda p {
  text-align: center;
}

.eventos p {
    padding: 0em;
}

.btns_info {

    display: block;

}

.btn_info a, .btn_info_w a  {

    display: block;
}




.div-precio {
 
            margin: 3em 0.5em;

        }

.div-precio h3 {
           
            font-size: 2rem; 
            font-weight: bold;
             margin-bottom: 5px;
        }
  .div-precio p {
    font-size: 0.9em;
  }      

}

  /*** boton wats */
#wats_btn { width: 68px; height: 72px; position: fixed; bottom: 30px; right: 5px; z-index: 99999; }
#wats_btn img { width: 84%; height: auto; }

#uber_btn { width: 68px; height: 72px; position: fixed; bottom: 120px; right: 5px; z-index: 99999; }
#uber_btn img { width: 84%; height: auto; }