﻿/* Plantilla50 "Raiz" — General / Multi-industria
   Paleta: verde bosque profundo + oro envejecido + crema calida
   Fonts: Merriweather (display, serif sobria) + Raleway (body, sans limpia)
   Hero: minimalista texto gigante sobre gradiente verde + lineas diagonales CSS
   Cards servicios: fondo solido + borde inferior accent
   Decorativo: patron de lineas diagonales CSS (technical grid)
   Portfolio: grid 3x3 con hover overlay limpio
   Sin testimonios/opiniones — plantilla 100% generica
*/

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ===== TOKENS ===== */
:root {
  --bg-dark:       #002800;
  --bg-darker:     #001A00;
  --bg-darkest:    #001200;
  --accent:        #C9A96E;
  --accent-d:      #A8864D;
  --accent-glow:   rgba(201,169,110,0.2);
  --bg-light:      #F5F2EC;
  --bg-section:    #EDE9E1;
  --bg-white:      #FFFFFF;
  --text-dark:     #1A2E1A;
  --text-mid:      #4A6A4A;
  --text-muted:    #7A9A7A;
  --text-on-dark:  #E8E4DC;
  --text-on-dark-mid: #B8B0A0;
  --cream:         #FAF8F4;
  --white:         #FFFFFF;
  --sage:          #6B8F6B;
  --sage-light:    rgba(107,143,107,0.12);
  --border:        rgba(0,40,0,0.1);
  --border-on-dark:rgba(255,255,255,0.08);

  --font-display:  'Merriweather', Georgia, serif;
  --font-body:     'Raleway', system-ui, sans-serif;

  --radius:        4px;
  --radius-lg:     8px;
  --transition:    0.32s ease;

  --shadow-sm:     0 2px 12px rgba(0,40,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,40,0,0.10);
  --shadow-lg:     0 16px 48px rgba(0,40,0,0.14);

  --header-h:      72px;

  /* Diagonal lines pattern */
  --diagonal-lines:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(201,169,110,0.04) 18px,
      rgba(201,169,110,0.04) 19px
    );
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.72;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ===== DIAGONAL LINES BG ===== */
.diagonal-lines-bg {
  background-image: var(--diagonal-lines);
  background-color: var(--bg-light);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-d);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
}

.section-header { margin-bottom: 60px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: var(--bg-darker);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-d);
  border-color: var(--accent-d);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(232,228,220,0.3);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== SOCIAL SIDEBAR ===== */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
}
.social-sidebar ul { display: flex; flex-direction: column; gap: 14px; }
.social-sidebar li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg-dark);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all var(--transition);
  border: 1px solid var(--border-on-dark);
}
.social-sidebar li a:hover {
  background: var(--accent);
  color: var(--bg-darker);
  transform: scale(1.1);
  box-shadow: 0 4px 16px var(--accent-glow);
}
@media (max-width: 768px) { .social-sidebar { display: none; } }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: all var(--transition);
}
#header {
  background: transparent;
}
#header.scrolled {
  background: rgba(0,24,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo-img { height: 44px; width: auto; }
.nav-desktop ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  transition: color var(--transition);
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after { width: 100%; }
.nav-cta {
  background: var(--accent);
  color: var(--bg-darker) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent-d);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-on-dark);
  transition: all var(--transition);
}
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,20,0,0.97);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.overlay-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
}
.overlay-close:hover { color: var(--accent); }
.nav-overlay nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.nav-overlay nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.nav-overlay nav a:hover { color: var(--accent); }
.nav-overlay .overlay-cta {
  background: var(--accent);
  color: var(--bg-darker);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-overlay .overlay-cta:hover { color: var(--bg-darker); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.2s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,40,0,0.92) 0%,
    rgba(0,26,0,0.85) 40%,
    rgba(0,18,0,0.80) 100%
  );
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(201,169,110,0.04) 80px,
      rgba(201,169,110,0.04) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201,169,110,0.04) 80px,
      rgba(201,169,110,0.04) 81px
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0 80px;
}
.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-on-dark-mid);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== ABOUT ===== */
.about-section { background: var(--bg-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 100px; height: 100px;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  z-index: 1;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -1px;
  width: 100px; height: 100px;
  border-bottom: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  z-index: 1;
}
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 20px 0;
}
.about-desc {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== PRINCIPIOS ===== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.principle-card {
  background: var(--bg-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border-bottom: 3px solid var(--accent);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.principle-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  color: var(--accent-d);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.principle-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.principle-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .principles-grid { grid-template-columns: 1fr; }
}

/* ===== MISION & VISION ===== */
.mv-section {
  background: var(--bg-dark);
  position: relative;
}
.mv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 24px,
      rgba(201,169,110,0.03) 24px,
      rgba(201,169,110,0.03) 25px
    );
  pointer-events: none;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-on-dark);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.mv-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.2);
}
.mv-card-accent {
  border-color: rgba(201,169,110,0.2);
}
.mv-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.mv-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.mv-card p {
  font-size: 0.95rem;
  color: var(--text-on-dark-mid);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICIOS ===== */
.services-section { background: var(--bg-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-light);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border-bottom: 3px solid var(--sage);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--accent);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  color: var(--text-dark);
  border-radius: var(--radius);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--bg-light); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.port-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.port-link {
  display: block;
  position: relative;
}
.port-link img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.port-link:hover img { transform: scale(1.05); }
.port-over {
  position: absolute;
  inset: 0;
  background: rgba(0,40,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.port-link:hover .port-over { opacity: 1; }
.port-over i {
  color: var(--accent);
  font-size: 2rem;
}
@media (max-width: 540px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CONTACTO ===== */
.contact-section {
  background: var(--bg-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
  transition: all var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent-glow);
  color: var(--accent-d);
  border-radius: 50%;
  font-size: 1.1rem;
}
.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-card p,
.contact-card span {
  font-size: 0.95rem;
  color: var(--text-dark);
}
.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.phone-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border-bottom: 3px solid var(--sage);
  transition: all var(--transition);
}
.phone-card:hover {
  border-bottom-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.phone-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.phone-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}
.phone-number:hover { color: var(--accent-d); }
.btn-wa-contact {
  justify-content: center;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  padding: 60px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-on-dark);
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { height: 40px; width: auto; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-on-dark-mid);
  margin-top: 8px;
}
.footer-nav ul {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-on-dark-mid);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-on-dark);
  border-radius: 50%;
  color: var(--text-on-dark-mid);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-on-dark-mid);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,12,0,0.94);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}
.lb-close:hover { color: var(--accent); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,40,0,0.5);
  border: 1px solid var(--border-on-dark);
  color: var(--text-on-dark);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.lb-nav:hover { background: var(--accent); color: var(--bg-darker); border-color: var(--accent); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-wrap {
  max-width: 85vw;
  max-height: 85vh;
}
.lb-wrap img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  color: var(--accent);
  border: 1px solid var(--border-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  color: var(--bg-darker);
  border-color: var(--accent);
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }



/* ===== CONTACT EMAIL OVERFLOW FIX ===== */
.contact-icon ~ div,
.detail-icon ~ div,
.contact-cantina-icon ~ div,
.info-item > div,
.info-pill > div {
  min-width: 0;
}

#correoElectronico {
  overflow-wrap: break-word;
  word-break: break-word;
}
