.text-center{
    font-size: small;
    font-weight: bold;
}

.text-muted{
    font-size: 1.5em;
}

.text-oferta{
    color: #649947;
    font-size: 10em;
    font-weight: bold;
    font-style: italic;
}

#text-mensaje{
    color: #649947;
    font-size: 2em;
}

.oferta-title {
    font-size: 72px; /* un poco más grande para equilibrar */
    font-weight: 700;
    letter-spacing: 3px;

    color: #deffff;
    -webkit-text-stroke: 4px #649947;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);

    animation: fadeDogshop 3s ease-in-out infinite;
}

@keyframes fadeDogshop {
    0%   { opacity: 0.1; }
    25%  { opacity: 1; }
    50%  { opacity: 1; }
    75%  { opacity: 1; }
    100% { opacity: 0.1; }
}

.display-4{
    color: #649947;
    font-size: 3em;
    font-weight: bold;
}

.img-slide-in {
    animation: slideFromRight 1s ease-out forwards;
}

.img-slide-small img {
    max-width: 80%;   /* ⬅ reduce tamaño */
    height: auto;
    display: block;
    margin-left: auto;  /* centra horizontalmente */
    margin-right: auto;
}


/* Animación */
@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(280px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#sobre-nosotros img {
    max-height: 420px;
    object-fit: cover;
}

/* Banner amarillo full width */
.banner-yellow {
    width: 100vw;
    background-color: #d9d307; /* amarillo */
    padding: 10px 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor interno */
.banner-yellow-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen central */
.banner-yellow-img {

    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.lista-check {
    list-style: none;      /* elimina el punto */
    padding-left: 0;
}

.lista-check li {
    position: relative;
    padding-left: 20px;    /* espacio para el check */
    margin-bottom: 10px;
}

.lista-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;        /* verde */
    font-weight: bold;
}

.img-hover-zoom {
    transition: transform 0.4s ease;
}

.img-hover-zoom:hover {
    transform: scale(1.08);
}