*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
    
/* Hero Section - Same as Tattoos Page */
.hero {
    height: 360px;  
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: 
    linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(45, 45, 45, 0.6) 50%,
        rgba(26, 26, 26, 0.8) 100%
      ),
        url('../assets/img/colagehero2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0 auto;
    width: 100%;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
  linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(48, 91, 177, 0.299) 50%, rgba(26, 26, 26, 0.5) 100%),
      url('../assets/img/colagehero2.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transform: scale(1.1);
      filter: brightness(0.7) contrast(0.8) saturate(0.8) sepia(0.2);
}

.hero .hero-content-all {
    width: 100%;
    height:auto;
    text-align: center;
    color: var(--nav-text);
    z-index: 2;
    position: relative;
    margin-top: 100px;
}

.space {
    letter-spacing: -1px;
}

.size-h1 {
    font-size: 4rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content-all p {
    font-family: 'Oswald', sans-serif;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 100;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Solución para iOS - background-attachment: fixed no funciona */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
    
    /* Alternativa usando pseudo-elemento para iOS */
    .hero::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
        linear-gradient(
            135deg,
            rgba(26, 26, 26, 0.8) 0%,
            rgba(45, 45, 45, 0.6) 50%,
            rgba(26, 26, 26, 0.8) 100%
          ),
            url('../assets/img/IMG_3905.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }
}

/* Solución alternativa con JavaScript para iOS */
.ios-device .hero {
    background-attachment: scroll;
}

.ios-device .hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(45, 45, 45, 0.6) 50%,
        rgba(26, 26, 26, 0.8) 100%
      ),
        url('../assets/img/IMG_3905.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Responsive para hero section */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .hero .hero-content-all h1 {
        font-size: 3rem;
    }
    
    .hero .hero-content-all p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    
    .hero .hero-content-all h1 {
        font-size: 2.5rem;
    }
    
    .hero .hero-content-all p {
        font-size: 0.9rem;
    }
}

/* Sección de información de contacto */
.contact-info-section {
  padding: 100px 0;
  background: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
}

.contact-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-weight: 100;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 5px;
  min-width: 20px;
}

.contact-item-content h4 {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.contact-item-content p {
  color: var(--accent-color);
  margin: 0;
}

.contact-item-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-content a:hover {
  color: var(--secondary-color);
}

/* Horarios */
.schedule {
  background: var(--dark-color);
  color: white;
  padding: 30px;
  margin-top: 30px;
}

.schedule h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item:last-child {
  border-bottom: none;
}

/* Formulario de contacto */
.contact-form {
  background: white;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  background: var(--primary-color);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Oswald", sans-serif;
}

.submit-btn:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Mapa */
.map-section {
  padding: 0;
  background: var(--light-color);
}

.map-container {
  width: 100%;
  height: 500px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) brightness(0.9);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) brightness(1);
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .hero .hero-content-all {
        font-size: 2rem;
        margin-top: 50px;
        max-width: 400px;
    }
    
    .hero .hero-content-all p {
        margin-top: 5px;
        font-size: 1.5rem;
        max-width: 300px;
        font-weight: 100;
    }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }


  .contact-info,
  .contact-form {
    padding: 25px;
  }
}
