.patitoamarillo{
    color: #FBBA00;
}

/* =========================================
   1. CONFIGURACIÓN GLOBAL (FONDO NARANJA)
   ========================================= */
:root {
    --brand-orange: #FBBA00;
    --card-dark: #1a1a1a;
    --text-white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: var(--brand-orange) !important;
    color: #000;
    overflow-x: hidden; /* Evita que el pato cause scroll horizontal */
    padding-top: 70px; /* Ajusta este número según el alto de tu logo */
}
.navbar {
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Un toque de sombra para que resalte sobre el naranja */
}
.nav-logo {
    width: 150px; /* Ajusta este valor al tamaño que quieras en escritorio */
    height: auto;
    transition: width 0.3s ease; /* Para que el cambio de tamaño sea suave */
}

/* Ajuste para tablets y celulares (Pantallas de menos de 992px, que es cuando Bootstrap usa el menu hamburguesa) */
@media (max-width: 991.98px) {
    .nav-logo {
        width: 70%; /* Un tamaño más discreto para móvil */
    }
    
    /* Si quieres que el logo se mantenga centrado en móvil */
    .navbar-brand {
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}

/* =========================================
   2. CONTENEDORES Y ESTRUCTURA (CATÁLOGO)
   ========================================= */
.container {
    width: 90%;
    max-width: 1000px !important; /* Tamaño "a chikita" para PC */
    margin: 0 auto !important;
    padding: 40px 0;
    background-color: transparent;
}

.portfolio-grid {
    display: grid;
    /* Tarjetas de máximo 280px para que se vean compactas */
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px)); 
    gap: 20px;
    justify-content: center;
}

/* =========================================
   3. TARJETAS Y COMPORTAMIENTO DE IMAGEN
   ========================================= */
.portfolio-item {
    position: relative;
    background: var(--card-dark);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    /* Se ajusta al lado más corto para no cortarse */
    object-fit: contain; 
    background-color: #000;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Sombra inferior para legibilidad */
.portfolio-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    z-index: 1;
    pointer-events: none;
}

/* Títulos blancos solicitados */
.item-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-white) !important;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0;
}

/* Overlay de información (al pasar el ratón) */
.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.portfolio-item:hover .info-overlay {
    opacity: 1;
}

.overlay-title {
    font-size: 0.8rem;
    color: #fff;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
    margin-bottom: 10px;
    font-weight: 800;
}

.overlay-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.7rem;
    color: #ccc;
    line-height: 1.5;
}

/* =========================================
   4. NAVEGACIÓN
   ========================================= */
header {
    background-color: #333;
    padding: 10px 0;
}

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

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
}

/* =========================================
   5. SECCIÓN DEL PATO (INTACTA)
   ========================================= */
.escena {
            position: relative;
            width: 100%;
            height: 250px;
            margin-top: 100px;
            background: #f0f0f0;
            overflow: hidden;
        }

        .pato {
            position: absolute;
            left: -150px;
            bottom: 50px; /* Ajusta esto para que las patas toquen el suelo */
            animation: caminar 8s linear infinite;
        }

        /* AQUÍ CARGAS TU ARCHIVO */
        .cuerpo-svg {
            width: 120px; /* Ajusta el ancho de tu patopatoso.svg */
            height: auto;
            display: block;
            position: relative;
            z-index: 2;
        }

      

        @keyframes caminar {
            from { left: -150px; }
            to { left: 100%; }
        }

        @keyframes moverPierna {
            from { transform: rotate(15deg); }
            to { transform: rotate(-15deg); }
        }

        .franja {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 80px;
            
        }
/* =========================================
   boton
   ========================================= */
   .pulse {
    --color: #ef6eae;
    --hover: #ef8f6e;
  }
  .pulse:hover,
.pulse:focus {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
 button {
    background: none;
    border: 2px solid;
    font: inherit;
    line-height: 1;
    margin: 0.5em;
    padding: 1em 2em;
  }

  /* =========================================
  Carrucel
   ========================================= */
/* Ajustes para el Carrusel de Inicio */
#carouselInicio {
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
}

.carousel-item img {
    height: 450px; /* Altura fija para mantener orden */
    object-fit: cover; /* Evita que las imágenes se deformen */
    filter: brightness(0.7); /* Oscurece un poco para que el texto resalte */
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    border-bottom: 4px solid #ffce00; /* El color amarillo de Cuack */
}

.carousel-caption h2 {
    font-family: 'Montserrat', sans-serif;
    color: #ffce00;
    text-transform: uppercase;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .carousel-item img {
        height: 250px;
    }
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
}
     /* =========================================
  Carrucel
   ========================================= */
    /* =========================================
  Revista
   ========================================= */
   
   .revista-container {
  perspective: 1200px;
  text-align: center;
  margin: 50px auto;
}

.revista {
  width: 300px;
  height: 400px;
  margin: auto;
  position: relative;
}

.pagina {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform-origin: left;
  transition: transform 0.8s;
  backface-visibility: hidden;
}

.pagina h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

.pagina:nth-child(1) { background: #fff8dc; }
.pagina:nth-child(2) { background: #e3f2fd; }
.pagina:nth-child(3) { background: #fce4ec; }
.pagina:nth-child(4) { background: #e8f5e9; }
.pagina:nth-child(5) { background: #ede7f6; }
.pagina:nth-child(6) { background: #fff3e0; }

.controles {
  margin-top: 20px;
}

.controles button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: black;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

       /* =========================================
  Revista
   ========================================= */
   /* =========================================
  CoNTACTO
   ========================================= */

.contacto-box {
  max-width: 700px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contacto-box h2 {
  font-weight: bold;
}

.contacto-box input,
.contacto-box select,
.contacto-box textarea {
  border-radius: 10px;
  padding: 10px;
}

.contacto-box button {
  border-radius: 10px;
  transition: 0.3s;
}

.contacto-box button:hover {
  transform: scale(1.05);
}

    /* =========================================
  CoNTACTO
   ========================================= */

   
    /* =========================================
  playeras perzonalizadas
   ========================================= */

   .cuack-customizador {
  max-width: 900px;
  margin: auto;
}

/* Canvas */
.cuack-customizador canvas {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: none;
}

/* Inputs y selects */
.cuack-customizador select,
.cuack-customizador input[type="text"],
.cuack-customizador input[type="email"] {
  width: 100%;
  max-width: 300px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  transition: all 0.2s ease;
}

.cuack-customizador select:focus,
.cuack-customizador input:focus {
  outline: none;
  border-color: #000;
  background: #fff;
}

/* Botón */
.cuack-customizador button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cuack-customizador button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Precio */
.cuack-customizador #precio {
  font-size: 24px;
  font-weight: bold;
}

/* Secciones */
.cuack-customizador h3 {
  margin-top: 20px;
}

/* Layout opcional */
.cuack-customizador form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Colores tipo swatch (opcional si los usas después) */
.cuack-colores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cuack-color-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: 0.2s;
}

.cuack-color-btn:hover {
  transform: scale(1.1);
  border-color: #000;
}
    /* =========================================
  playeras perzonalizadas
   ========================================= */
   