.text p {
  font-size: clamp(0.8rem, 3.2vw, 1.55rem);
  max-width: 950px;
}

/* CATEGORIES SECTION */
.categorias-section {
  padding: 6rem 0;
  background: #fafbfc;
}

.categorias-section {
  padding: 4rem 0;
}

.iconos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
}

.icono-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 1.5rem;
}

.icono-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .iconos-grid {
    grid-template-columns: repeat(4, 1fr);  /* Desktop: 1x4 */
  }
}

/* PRODUCTS SECTION */
.products-section {
  padding: clamp(4rem, 8vh, 6rem) 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
}

.bubbles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.bubble {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border-radius: 20%; /* bubble perfecta */
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  animation: float 6s ease-in-out infinite;
  border: 20px solid rgba(255,255,255,0.6);
  overflow: hidden;
}

.bubble:nth-child(odd) { animation-delay: -2s; }
.bubble:nth-child(2n) { animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.bubble h3 {
  font-family: 'Sintony', sans-serif;
  font-size: clamp(0.8rem, 3vw, 1.2rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1e40af;
}

.bubble p {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #64748b;
  margin: 0 0 0.3rem 0;
  font-weight: 500;
}

.bubble small {
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  color: #94a3b8;
  line-height: 1.4;
}

.bubble:hover {
  transform: translateY(-25px) scale(1.05) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.95);
}


/* CONTACT SECTION */
.contact-section {
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.contact-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
}

.contact-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {
  .contact-section::before {
    top: 15px; right: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

.contact-text {
  background: #fff;
  padding: 3.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contact-text h3 {
  font-family: 'Sintony', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1.8rem;
  color: var(--dark);
  letter-spacing: 0.4px;
}

.contact-text p {
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  color: #2d3748;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .iconos-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 2rem !important; 
  }
  .contact-text { padding: 2.8rem 2.2rem !important; }
}

@media (max-width: 480px) {
  .iconos-grid { grid-template-columns: 1fr !important; }
}