/* ============================================
   ESTILOS GLOBALES Y RESET
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  background: #f7eee7 url(../images/pattern.gif) repeat top center;
  color: #7A6B4E;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

a {
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

p a, ol li a {
  color: #7A6B4E;
  font-weight: bold;
  text-decoration: underline;
}

h4 a {
  color: #133E73;
  text-decoration: underline;
}

/* ============================================
   LOADER CON LOGO
   ============================================ */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 238, 231, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 200px;
  height: 200px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #007BFF;
  font-family: 'Pacifico', cursive;
  animation: fadeInOut 1.5s ease-in-out infinite;
}

.loader-spinner {
  margin-top: 15px;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #007BFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   SLIDER DE MARCAS
   ============================================ */
.brand-slider {
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  padding: 15px 0;
  margin: 0;
}

.slider-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.slider-track img {
  width: 120px;
  height: auto;
  margin: 0 25px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
nav {
  background: #12728fbd;
  border-bottom: 2px solid #ddd;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s, background 0.3s;
  padding: 8px 15px;
  border-radius: 5px;
  display: block;
  white-space: nowrap;
}

.nav-links li a:hover {
  background: #065826;
  color: #e90707;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  right: 20px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.overlay.show {
  display: block;
}

/* ============================================
   HEADER Y LOGO CON ESTILO CUADERNO
   ============================================ */
#header {
  background: 
    linear-gradient(90deg, #e8e8e8 1px, transparent 1px),
    linear-gradient(#e8e8e8 1px, transparent 1px),
    #ffffff;
  background-size: 30px 30px;
  padding: 20px 0;
  position: relative;
  width: 100%;
  overflow: visible;
  border-top: 3px solid #5a5a5a;
  box-shadow: inset 0 3px 8px rgba(0,0,0,0.1);
}


/* Espiral de cuaderno superior */
#header::before {
  content: '';
  position: absolute;
  left: 0;
  top: -15px;
  width: 100%;
  height: 40px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 15px,
    #ff6b35 15px,
    #ff6b35 17px,
    #ff8c42 17px,
    #ff8c42 19px,
    #ffa552 19px,
    #ffa552 21px,
    #ff8c42 21px,
    #ff8c42 23px,
    #ff6b35 23px,
    #ff6b35 25px,
    transparent 25px,
    transparent 40px
  );
  z-index: 5;
}

/* Círculos del espiral */
#header::after {
  content: '';
  position: absolute;
  left: 0;
  top: -8px;
  width: 100%;
  height: 25px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 12px,
    #333 12px,
    #333 28px,
    transparent 28px,
    transparent 40px
  );
  background-size: 40px 25px;
  -webkit-mask-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 12px,
    black 17px,
    black 23px,
    transparent 28px,
    transparent 40px
  );
  mask-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 12px,
    black 17px,
    black 23px,
    transparent 28px,
    transparent 40px
  );
  border-radius: 50%;
  z-index: 6;
}

#header canvas {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

#header .message {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 20px;
  font-size: 1.8em;
  font-weight: bold;
  color: #065826;
  text-shadow: 0 0 25px gold, 0 0 50px red;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  pointer-events: none;
  z-index: 10;
}

#header .section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
  position: relative;
  overflow: visible;
  z-index: 2;
}



#logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
  max-width: 500px;
  gap: 0;
  position: relative;
  z-index: 4;
  
}

#logo a {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

#logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -30px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

#tagline {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  font-weight: bold;
  font-family: 'Pacifico', cursive;
  color: #007BFF;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* ============================================
   FEATURED SECTION
   ============================================ */
#featured {
  max-width: 1200px;
  width: 100%;
  margin: 30px auto;
  padding: 0 20px;
}

#featured ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0;
  margin: 0;
}

#featured ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#featured ul li h2 {
  background: url(../images/bg-heading.gif) no-repeat;
  background-size: contain;
  font-family: 'MarkerFeltNormal', cursive;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: normal;
  height: auto;
  min-height: 64px;
  line-height: 1.5;
  margin: 0 0 10px 0;
  padding: 15px 25px;
}

#featured ul li h2 a {
  color: #7c4914;
  text-decoration: none;
  transition: color 0.3s ease;
}

#featured ul li h2 a:hover {
  color: #ff6600;
}

#featured ul li div {
  width: 100%;
  height: 264px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}

#featured ul li div::before {
  content: '🔍 Click para ver';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 123, 255, 0.95);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

#featured ul li div:hover::before {
  opacity: 1;
}

#featured ul li div:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

#featured ul li div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

#featured ul li div:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

#featured ul li a.view {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  display: inline-block;
  align-self: flex-end;
  font-family: 'MarkerFeltNormal', cursive;
  font-size: 18px;
  padding: 12px 25px;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#featured ul li a.view:hover {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

#featured ul li a.view span {
  display: inline-block;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
#content {
  background: #f7eee7;
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
}

#content > div {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

#section {
  width: 100%;
}

#article {
  width: 100%;
}

#article h2 {
  margin: 30px 0 20px 0;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: #333;
  text-align: center;
}

/* ============================================
   CARRUSEL
   ============================================ */
.carousel-container {
  position: relative;
  margin: 20px 0;
  width: 100%;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel .item {
  flex: 0 0 calc(25% - 15px);
  min-width: 200px;
  max-width: 280px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.carousel .item::before {
  content: '🔍 Ver detalles';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 123, 255, 0.95);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

.carousel .item:hover::before {
  opacity: 1;
}

.carousel .item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: zoom-in;
}

.carousel .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.carousel .item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.carousel .item h3 {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #333;
}

.carousel .item p {
  font-size: 1.1rem;
  color: #007BFF;
  font-weight: bold;
  margin: 5px 0;
}

.btn-ver {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 0.9rem;
}

.btn-ver:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

.carousel-container .prev,
.carousel-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-container .prev:hover,
.carousel-container .next:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* ============================================
   MODAL MEJORADO
   ============================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  margin: auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  animation: slideIn 0.4s ease;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  padding: 20px;
  color: white;
  position: relative;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.modal-body {
  padding: 30px;
}

.modal-content img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #f5f5f5;
  padding: 10px;
}

.modal-price {
  font-size: 2rem;
  color: #28a745;
  font-weight: bold;
  margin: 15px 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.modal-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007BFF;
}

.modal-features {
  text-align: left;
  margin: 20px 0;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.modal-features h4 {
  color: #007BFF;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.modal-features li:last-child {
  border-bottom: none;
}

.modal-features li:before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
}

.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

.close {
  color: white;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { 
    opacity: 0;
  }
  to { 
    opacity: 1;
  }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #2c3e50;
  color: #ddd;
  padding: 40px 20px 20px;
  margin-top: 50px;
  font-size: 14px;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #007BFF;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section p {
  line-height: 1.8;
  margin: 8px 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #007BFF;
}

.social {
  margin-top: 15px;
}

.social a {
  display: inline-block;
  margin-right: 15px;
  color: #ddd;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}

.social a:hover {
  color: #007BFF;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 10px;
  border-top: 1px solid #444;
  font-size: 13px;
}

.footer-bottom a {
  color: #66B2FF;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
a.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 100;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

a.float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
  #logo {
    max-width: 350px;
  }

  #logo img {
    max-width: 300px;
  }

  #tagline {
    font-size: 2.2rem;
  }

  #featured ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .carousel .item {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 180px;
  }

  .loader-logo {
    width: 150px;
    height: 150px;
  }
}

/* Móviles grandes */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    padding: 10px 60px 10px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #5fc027;
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .nav-links li a {
    padding: 15px 20px;
    width: 100%;
    color: #fff;
  }

  #header {
    background-size: 20px 20px;
  }

  #header::before {
    background-size: 30px 40px;
  }

  .spiral-decoration {
    display: none;
  }

  #logo {
    max-width: 280px;
    padding: 15px;
  }

  #logo img {
    max-width: 250px;
    margin-bottom: -20px;
  }

  #tagline {
    font-size: 1.8rem;
  }

  #featured ul {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .carousel .item {
    flex: 0 0 calc(50% - 10px);
    min-width: 160px;
  }

  .carousel .item img {
    height: 180px;
  }

  .carousel-container .prev,
  .carousel-container .next {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-slider .slider-track img {
    width: 100px;
    margin: 0 15px;
  }

  .modal-content {
    width: 95%;
    max-width: 500px;
  }

  .modal-header h3 {
    font-size: 1.5rem;
  }

  .modal-price {
    font-size: 1.7rem;
  }

  .modal-body {
    padding: 20px;
  }

  .loader-logo {
    width: 120px;
    height: 120px;
  }

  .loader-text {
    font-size: 1rem;
  }

  a.float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  #header .message {
    font-size: 1.2em;
    padding: 0 10px;
  }

  #logo {
    max-width: 220px;
  }

  #logo img {
    max-width: 200px;
    margin-bottom: -15px;
  }

  #tagline {
    font-size: 1.4rem;
  }

  .carousel .item {
    flex: 0 0 calc(80% - 10px);
    min-width: 140px;
  }

  .carousel .item img {
    height: 150px;
  }

  .carousel .item h3 {
    font-size: 0.95rem;
  }

  .carousel .item p {
    font-size: 0.9rem;
  }

  .btn-ver {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  #article h2 {
    font-size: 1.2rem;
  }

  .brand-slider .slider-track img {
    width: 80px;
    margin: 0 10px;
  }

  .modal-content {
    padding: 0;
  }

  .modal-header {
    padding: 15px;
  }

  .modal-header h3 {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 15px;
  }

  .modal-price {
    font-size: 1.5rem;
  }

  .modal-desc {
    font-size: 1rem;
  }

  .btn-whatsapp {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .loader-logo {
    width: 100px;
    height: 100px;
  }

  .loader-text {
    font-size: 0.9rem;
  }
}

/* Pantallas muy pequeñas */
@media (max-width: 360px) {
  #logo img {
    max-width: 180px;
  }

  #tagline {
    font-size: 1.2rem;
  }

  .carousel .item {
    min-width: 120px;
  }

  .modal-header h3 {
    font-size: 1.1rem;
  }

  .modal-price {
    font-size: 1.3rem;
  }
}