/* =================== IMPORTS =================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* =================== VARIABLES =================== */
:root {
  --primary-gold: #d4af37;
  --secondary-gold-light: #f5e8b0;
  --dark-gray: #1f1f1f;
  --gray-100: #2e2e2e;
  --gray-200: #3d3d3d;
  --text-light: #f5f5f5;
  --text-muted: #cccccc;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.15);
}

/* =================== RESET & BASE =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--dark-text);
  line-height: 1.6;
  background-color: var(--white);
}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

/* =================== TIPOGRAFÍA =================== */
h1, h2, h3, h4, .logo {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
}
h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}
h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
p, body, button, input, textarea, select {
  font-family: Arial, sans-serif;
}
.logo {
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-pink);
  letter-spacing: 1px;
}
.section-title::after, .hero-title::after {
  height: 2px;
  opacity: 0.8;
}
.hero-title, .section-title {
  color: var(--primary-pink);
}

/* =================== LAYOUT GENERAL =================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =================== NAVBAR =================== */
header {
  background-color: var(--dark-gray);
  box-shadow: 0 2px 10px var(--shadow);
  /* position: sticky; */ /* LO SACAMOS */
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background-color: var(--dark-gray);
  transition: background-color 0.4s, box-shadow 0.4s;
  border-radius: 8px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}


/* =================== HERO =================== */
.hero {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #2a2a2a 60%, var(--gray-200) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 30% 80%, rgba(245, 232, 176, 0.08) 0%, transparent 40%);
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content {
  color: var(--dark-gray);
  text-align: left;
  position: relative;
  z-index: 2;
}
.hero-title {
  margin-bottom: 20px;
}
.hero-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-pink), var(--secondary-lavender));
  margin: 20px auto;
}
.decoracion-linea {
  width: 120px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
  margin: 20px auto;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.resaltado {
  color: var(--primary-gold);
}

.hero-title, .hero-subtitle {
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-buttons .button {
  width: auto; /* para que se ajuste al contenido */
  min-width: 160px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-buttons .button:hover {
  border: 2px solid var(--primary-gold);
  background-color: transparent;
  color: var(--primary-gold);
}


.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 450px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =================== BOTONES =================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 50px; /* esto unifica altura */
  line-height: 1; /* evita desalineaciones de texto */
}


.button-primary {
  background-color: var(--primary-gold);
  color: #1f1f1f;
  box-shadow: 0 0 0 transparent;
}

.button-primary:hover {
  background-color: #c69c28;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  color: #000;
}

.button-secondary {
  background-color: white;
  color: #1f1f1f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.button-secondary:hover {
  background-color: var(--primary-gold);
  color: white;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-buttons .button {
  width: 180px;
}

/* === ANIMACIONES HERO === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Aplicación */
.hero-title {
  animation: fadeInUp 0.8s ease forwards;
}

.decoracion-linea {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero-subtitle {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.9s;
}

.hero-image {
  animation: zoomIn 1s ease forwards;
  animation-delay: 0.3s;
}

/* Evitar animaciones si ya están visibles */
.hero-title,
.decoracion-linea,
.hero-subtitle,
.hero-buttons,
.hero-image {
  opacity: 0;
  transform: translateY(30px);
}


/* =================== SECTION GENÉRICO =================== */
.section {
  padding: 80px 0;
}
.section-light {
  background: linear-gradient(to bottom, #31312f 0%, #4a4a48 40%, var(--gray-200) 100%);
  color: var(--text-light);
}

.process-content {
  background-color: var(--dark-gray);
  color: var(--text-light);
}

.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-pink), var(--secondary-lavender));
  margin: 20px auto;
}
.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* =================== SECCIÓN "PROCESS" =================== */
.process-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}
.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}
.process-step:nth-child(even) {
  flex-direction: row-reverse;
}
.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.process-step:nth-child(even) .process-number {
  left: auto;
  right: 0;
}
.process-content {
  flex: 1;
  background-color: var(--dark-gray);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: left;
  margin: 0 40px 0 60px;
  color: var(--text-light);
}
.process-step:nth-child(even) .process-content {
  margin: 0 60px 0 40px;
}
.process-image {
  flex: 1;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}
.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-step {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.2s;
}
.process-step:nth-child(2) {
  animation-delay: 0.4s;
}
.process-step:nth-child(3) {
  animation-delay: 0.6s;
}


/* =================== SPECIALTIES =================== */
.section-dark {
  background: linear-gradient(to bottom, #31312f 0%, #3a3a3a 100%);
  color: var(--text-light);
}

.specialty-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.specialty-card {
  background-color: var(--gray-100);
  color: var(--text-light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.specialty-img {
  height: 250px;
  overflow: hidden;
}
.specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialty-content {
  padding: 30px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.specialty-tag {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: var(--secondary-lavender);
  color: white;
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.specialty-title {
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.specialty-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-pink);
  margin-top: 20px;
}
.specialty-action {
  margin-top: auto;
  padding-top: 20px;
}
.specialty-action .button {
  padding: 10px 25px;
}
.specialty-action .button-primary:hover {
  background-color: #c69c28;
  color: #1f1f1f;
}

.tag-breakfast {
  background-color: var(--primary-gold);
}

.tag-picada {
  background-color: #d17f3f;
}

.tag-torta {
  background-color: #bb5095;
}


/* =================== GALERÍA =================== */
#gallery.section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-header .section-title {
  margin-bottom: 10px;
}

.gallery-header .section-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}


.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.3rem;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-gold);
  margin: 20px auto 0;
}

.section-subtitle {
  margin-bottom: 30px;
}


.gallery-item .button {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.gallery-item-1,
.gallery-item-5 {
  grid-column: span 2;
}

/* --- VARIACIÓN DE TAMAÑOS --- */

/* Primera imagen más protagonista */
.gallery-item-1 {
  grid-column: span 2;
  grid-row: span 2;
}

/* Agregá clases similares si querés que otras ocupen más */
.gallery-item-5 {
  grid-column: span 2;
}

@keyframes zoomFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.gallery-item {
  animation: zoomFade 0.6s ease forwards;
  opacity: 0;
}
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }


/* =================== CONTACTO =================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.contact-form h3 {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-text);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-pink);
}
.contact-details {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  animation: fadeInRight 0.9s ease forwards;
  opacity: 0; /* inicia oculta */
  animation-delay: 0.4s;
}
.contact-details h3 {
  color: var(--primary-gold);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-info-content h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: var(--dark-text);
}
.contact-info-content p {
  margin-bottom: 0;
  color: var(--light-text);
}
.button-whatsapp {
  margin-top: 20px;
  align-self: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-gold);
  color: #1f1f1f;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInLeft 1s ease-out forwards;
  animation-delay: 1.1s;
  opacity: 0;
}
.button-whatsapp img {
  width: 20px;
  filter: drop-shadow(0 0 1px #000);
}

.contact-info-item:nth-of-type(1) {
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.contact-info-item:nth-of-type(2) {
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}




.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 1.8rem;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.3s ease;
  text-align: center;
}

.whatsapp-float:hover {
  background-color: #1ebc57;
}


.contact-slogan {
  margin-top: 4.4rem;
  font-size: 1.1rem;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInLeft 1s ease-out forwards;
  animation-delay: 1.3s;
  opacity: 0;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}








/* =================== FOOTER =================== */
footer {
  background-color: #333;
  color: white;
  padding: 60px 0 30px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-pink);
}
.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--primary-pink);
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover {
  background-color: var(--primary-pink);
}
.footer-newsletter input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 5px;
  margin-bottom: 15px;
}
.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-newsletter .button {
  width: 100%;
  margin: 0;
  padding: 10px 15px;
}
.footer-copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
.footer-copyright a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.footer-copyright a:hover {
  color: var(--primary-pink);
}

#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}


/* =================== MEDIA QUERIES =================== */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-details {
    order: -1;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero {
    display: flex;
    flex-direction: column;
    background-color: var(--dark-gray);
  }

  .hero-image-mobile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .hero-content-mobile {
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--dark-gray);
    color: var(--text-light);
  }

  .hero-title {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gold-light);
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .highlight {
    color: var(--primary-gold);
    font-weight: bold;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .process-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--gray-100);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 1rem;
  }

  .process-number {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-gray);
    background-color: var(--primary-gold);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .process-content {
    flex: 1;
    text-align: left;
  }

  .process-content h3 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
  }

  .process-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
  }

  .process-image {
    flex-shrink: 0;
    width: 100px;
    height: 200px; /* ⬅️ Subido, antes era 80px */
    border-radius: 10px;
    overflow: hidden;
  }

  .process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

    .cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .specialty-card {
    max-width: 400px;
    margin: 0 auto 2rem auto;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
  }
  .card-especialidad {
    width: 100%;
    max-width: 340px; /* 🔥 Esto achica la card */
    margin: 0 auto 2rem auto;
    padding: 1rem;
    border-radius: 12px;
  }

  .card-especialidad img {
    max-height: 200px; /* opcional: si querés limitar altura */
    object-fit: cover;
  }

  .card-especialidad h3 {
    font-size: 1.4rem;
  }

  .card-especialidad p {
    font-size: 0.95rem;
  }

  .card-especialidad .button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    padding: 1rem;
    justify-items: center;
  }
  
  .gallery-container img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Cuadrada */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-container img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 560px) {
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    text-align: center;
    border-radius: 16px;
  }

  .hero-content {
    text-align: center;
  }
  
  /* 📸 Imagen opcional, con sombra pro y bordes suaves */
  .hero-image {
    order: 1;
    width: 100%;
    max-width: 440px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }
  
  /* 🧁 Título principal: impacto visual moderado y elegante */
  .hero-title {
    order: 2;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    text-transform: none;
  }
  
  /* ✨ Frase secundaria con estilo especial */
  .hero-subtitle {
    order: 3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
  }
  
  /* 📝 Descripción clara, con aire y legibilidad perfecta */
  .hero-description {
    order: 4;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
    padding: 0 0.5rem;
    text-align: center;

  }
  
  /* 🎯 Botones: alineados horizontalmente, pero adaptables */
  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }

  .hero-buttons .button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-radius: 999px;
    width: auto;
    min-width: 130px;
    text-align: center;
    white-space: nowrap;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--gray-100);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    gap: 1rem;
  }
  
  

  .process-number {
    position: static;
    background-color: var(--primary-gold);
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: bold;
    padding: 0.6rem 1rem;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

  .process-image {
    order: 2;
    width: 100%;
    max-width: 320px;
    border-radius: 14px;
    overflow: hidden;
  }
  

  .process-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .process-content {
    order: 3;
    background-color: var(--gray-200);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
  }

  .process-content h3 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .process-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  .process-step:nth-child(even) {
    flex-direction: column !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .process-step:nth-child(even) .process-content {
    margin: 0 auto !important;
    max-width: 90%;
  }
  
  .process-step:nth-child(even) .process-number {
    margin: 0 auto 0.5rem auto;
  }
  

}

@media (max-width: 430px) {
  h2 {
    font-size: 2rem;
    text-align: center;
  }


  
}

@media (max-width: 400px) {
  .specialty-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .specialty-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .process-content {
    max-width: 90%;
    width: 100%;
    padding: 1.5rem 1.8rem;
    margin: 0 auto;
    border-radius: 16px;
    text-align: left;
    word-break: normal;
    line-height: 1.6;
    font-size: 1rem;
  }
  
  .process-content p {
    font-size: 1rem;
    text-align: left;
    line-height: 1.6;
  }
  
}






