/* Estilos para Mobile (menos de 768px) */
/* Menú Mobile Toggle desde Logo */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--off-white);
  border-top: 1px solid var(--light-rose);
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-purple);
  text-decoration: none;
  text-align: center;
}

.mobile-nav .nav-link:hover {
  color: var(--plum);
}
/* Header */
.main-header {
  padding: 1rem;
  flex-direction: column;
}

.main-nav {
  display: none;
}

/* Hero Section */
.hero-section {
  flex-direction: column;
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--deep-violet), var(--mulberry));
}

.hero-section::before {
  top: 20%;
  right: 50%;
  transform: translateX(50%);
  width: 100%;
  height: 60%;
  opacity: 0.05;
}

.hero-content {
  padding: 0 0 2rem 0;
  margin-bottom: 0.1rem;
  text-align: center;
}

.hero-title {
  font-size: 2.25rem;
}

.hero-text {
  margin: 0 auto 2rem;
}

.hero-buttons {
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.hero-image-container {
  max-width: 20rem; 
  margin: 0 auto; 
}
  
.hero-image {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 0.3rem;
}

.btn {
  width: 100%;
}

/* Servicios */
.services-section {
  padding: 2rem 1rem;
}

.services-section .services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  padding: 1rem !important;
  width: 100%;
  box-sizing: border-box;
}

.service-card {
  min-width: 0; 
  box-sizing: border-box; 
  overflow-wrap: break-word; 
}

.esmalte-icon {
  width: 5rem;
  height: 5rem;
}

.service-name {
  font-size: 0.9rem;
  display: block;            
  word-wrap: break-word;     
  overflow-wrap: break-word; 
  text-align: center;        
  max-width: 100%;           
}

.service-description {
  font-size: 0.85rem;
}

/* Instagram Section */
.instagram-section {
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.instagram-header {
  flex-direction: column;
  padding: 0;
}

.instagram-profile {
  margin-bottom: 1.5rem;
}

.instagram-logo {
  width: 3rem;
  height: 3rem;
}

.instagram-grid {
  grid-template-columns: repeat(2, 1fr);
}

.post-stats {
  gap: 1rem;
  font-size: 0.875rem;
}

/* Contact Section */
.contact-grid {
  grid-template-columns: 1fr;
}

/* Footer */
.footer-container {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--peach);
}

.footer-info {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.footer-section p {
  font-size: 0.85rem;
  margin: 0.2rem 0;
}

.footer-social {
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.footer-bottom {
  font-size: 0.75rem;
  color: var(--lavender-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.8rem;
  margin-top: 1rem;
  text-align: center;
}

.whatsapp-float {
  width: 3.5rem;
  height: 3.5rem;
  bottom: 1.5rem;
  right: 1.5rem;
}
  
.whatsapp-icon {
  width: 1.75rem;
  height: 1.75rem;
}