@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Encabezado*/



.header {
    display: table;
    position: relative;
    width: 100%;
    height: 300px;
    background: url(../img/bg.jpg) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.img-logo{
    max-width: 200px;
    vertical-align: bottom;
    padding: 5px 5px 5px 5px;
}

.img-card{
    max-width: 70%;
}

.banner{
    max-width: 400px;
    padding: 5px 5px 5px 5px;
}



.nav.navbar {
    background-color: transparent; /* el fondo es el header */
    padding: 0;
}

.navbar-toggler {
    text-decoration: none;
    background-color: #91d8f7 !important;
}

.navbar-collapse{
    /* background-color: #000;*/
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 10px 10px 10px 10px;
    font-weight: 600;
}


.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.precio-anterior {
    font-size: 0.8em;
    color: red;
    text-decoration: line-through;
}

.precio-oferta {
    font-weight: bold;
    color: green;
    font-size: 1.2em;
}

.badge-descuento {
    background-color: #ff4d4d; /* rojo intenso */
    color: #fff;
    font-size: 0.75em;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
}

.promo-temporada {
    background: linear-gradient(90deg, #ffdd00, #ff7b00);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.promo-temporada h2 {
    margin: 0;
    font-size: 1.5em;
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}





/* Fondo del header tipo folleto */
.folleto-header {
    background-image: url('/onepage/img/heather.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    max-width: 1390px;
    margin: 0 auto;
    padding: 40px 0;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    height: auto; /* o height: 200px si lo preferís fijo */
    position: fixed;
    width:100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1040;

}


/* Limitar todo el contenido central a 1390px como máximo */
.folleto-container {
    max-width: 1390px;
    margin: 0 auto;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding-left: 10px;
    padding-right: 15px;
}

.fuentePrecio{
    font-weight: bold;
    font-size: 48px;
}

a{
    text-decoration: none;
}
h2#title {
    font-size: 1.1rem;
}

iconosRedes .fab {
    font-size: 30pt;

}

.btn-primary {
    background-color: #f87f0f;
    border-color: #f87f0f;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #d46f0d;
    border-color: #d46f0d;
}


/* Estilos generales */
section#about,
section#galery,
section#services,
section#contact {
    margin-top: 50px;
}


.partnership-highlight {
    background-color: #c7d6e5; /* Fondo gris muy claro */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.partnership-highlight h1 {
    color: #1a1a1a;
    font-size: 22pt;
    font-weight: 700;
}

.partnership-highlight p {
    color: #333;
    font-size: 1.1rem;
}


/* Estilos solo para pantallas pequeñas (celulares) */
@media (max-width: 700px) {
    section#about,
    section#galery,
    section#services,
    section#contact {
        margin-top: 90px;
    }

    .header {
        display: table;
        position: relative;
        width: 100%;
        height: 120px;
        background: url(../img/bg.jpg) no-repeat center center scroll;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
    }

    .img-logo{
        max-width: 100px;
        vertical-align: bottom;
        padding: 5px 5px 5px 5px;
    }

    .banner{
        max-width: 100%;
        padding: 5px 5px 5px 5px;
    }

    .img-card{
        max-width: 85%;
    }
}
