/* ===================================================
   PORTFOLIO JON URBANEJA — CSS MOBILE-FIRST
   =================================================== */

:root {
  /* Colores */
  --colorPri: #1a1d1c;
  --colorSecun: #c0c494;
  --colorTerc: #36cc8d;
  --colorBgCard: #202422;
  --colorBgInput: #252927;
  --colorBgPopup: #171817;

  /* Fuentes */
  --fuenteRoboto: "Roboto", sans-serif;
  --fuenteLobster: "Lobster", cursive;
  --fuenteMontserrat: "Montserrat", sans-serif;
  --fuenteFjalla: "Fjalla One", sans-serif;

  /* Tiempos */
  --transRapida: 0.2s ease;
  --transNormal: 0.3s ease;
}

/* ===================================================
   RESET
   =================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--colorPri);
  color: var(--colorSecun);
  font-family: var(--fuenteMontserrat);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Accesibilidad */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 2px solid var(--colorTerc);
  outline-offset: 2px;
}

/* ===================================================
   HEADER / NAV (mobile-first)
   =================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--colorPri);
  z-index: 100;
  border-bottom: 1px solid rgba(192, 196, 148, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.nav-logo {
  color: var(--colorTerc);
  font-family: var(--fuenteRoboto);
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-logo span {
  font-family: var(--fuenteLobster);
  color: var(--colorSecun);
  font-weight: 400;
}

.btn-burger {
  padding: 0.5rem;
  transition: transform var(--transNormal), opacity var(--transNormal);
}

.btn-burger img {
  width: 36px;
  height: 36px;
}

.btn-burger[aria-expanded="true"] {
  transform: rotate(90deg);
  opacity: 0;
  pointer-events: none;
}

/* Panel de navegación móvil */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--colorPri);
  border-bottom: 3px solid var(--colorTerc);
  padding: 1.25rem 1.5rem 1.5rem;
  transform: translateY(-110%);
  transition: transform var(--transNormal);
  z-index: 101;
}

.nav-menu.is-open {
  transform: translateY(0);
}

.nav-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-menu a {
  display: block;
  padding: 0.85rem;
  text-align: center;
  color: var(--colorTerc);
  font-family: var(--fuenteRoboto);
  font-weight: 500;
  border-radius: 6px;
  transition: background-color var(--transRapida);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background-color: rgba(54, 204, 141, 0.1);
}

/* Overlay oscuro detrás del menú */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transNormal);
  z-index: 99;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===================================================
   BOTÓN CERRAR REUTILIZABLE
   =================================================== */
.btn-cerrar {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--colorPri);
  border: 1.5px solid var(--colorTerc);
  color: var(--colorTerc);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: all var(--transRapida);
  z-index: 5;
}

.btn-cerrar:hover {
  background: var(--colorTerc);
  color: var(--colorPri);
  transform: rotate(90deg);
}

.btn-cerrar-menu {
  position: static;
  transform: none;
}

/* ===================================================
   MAIN / CARD BASE
   =================================================== */
main {
  padding-top: 60px;
}

.card {
  padding: 3rem 1.5rem;
  position: relative;
}

.card .texto h1 {
  font-family: var(--fuenteFjalla);
  color: var(--colorTerc);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.card .texto p {
  font-family: var(--fuenteMontserrat);
  color: var(--colorSecun);
  line-height: 1.5;
  max-width: 65ch;
}

/* Botón principal */
.btn-primario {
  display: inline-block;
  margin: 1.5rem 0;
  padding: 0.6rem 1.25rem;
  background-color: transparent;
  color: var(--colorSecun);
  border: 3px solid var(--colorTerc);
  border-radius: 7px;
  font-family: var(--fuenteMontserrat);
  font-size: 0.95rem;
  transition: all var(--transRapida);
}

.btn-primario:hover,
.btn-primario:focus-visible {
  background-color: rgba(54, 204, 141, 0.12);
}

/* ===================================================
   CARD 1 — HERO
   =================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem 3rem;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(54, 204, 141, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  background: rgba(54, 204, 141, 0.1);
  border: 1px solid rgba(54, 204, 141, 0.3);
  border-radius: 30px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--colorTerc);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.availability-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--colorTerc);
  border-radius: 50%;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.95); }
}

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

.hero-title {
  font-family: var(--fuenteFjalla);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--colorSecun);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title .highlight {
  color: var(--colorTerc);
  display: inline;
}

.hero-title .text-secondary {
  color: var(--colorSecun);
  display: inline;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--colorSecun);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description strong {
  color: var(--colorTerc);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(54, 204, 141, 0.15);
  border-bottom: 1px solid rgba(54, 204, 141, 0.15);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--fuenteFjalla);
  font-size: 2.5rem;
  color: var(--colorTerc);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--colorSecun);
  opacity: 0.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-family: var(--fuenteMontserrat);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transNormal);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--colorTerc);
  color: var(--colorPri);
  box-shadow: 0 4px 15px rgba(54, 204, 141, 0.3);
}

.btn-primary:hover {
  background: #2eb377;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(54, 204, 141, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--colorSecun);
  border: 2px solid rgba(54, 204, 141, 0.4);
  font-weight: 500;
}

.btn-secondary:hover {
  background: rgba(54, 204, 141, 0.1);
  border-color: var(--colorTerc);
  transform: translateY(-2px);
}

.key-benefits {
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.benefits-label {
  font-size: 0.85rem;
  color: var(--colorSecun);
  opacity: 0.6;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-stack {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tech-item {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  background: rgba(54, 204, 141, 0.1);
  border: 1px solid rgba(54, 204, 141, 0.3);
  border-radius: 6px;
  transition: all var(--transNormal);
}

.tech-item:hover {
  background: rgba(54, 204, 141, 0.15);
  border-color: rgba(54, 204, 141, 0.5);
  transform: translateY(-2px);
}

.tech-name {
  font-size: 0.9rem;
  color: var(--colorTerc);
  font-family: var(--fuenteMontserrat);
  font-weight: 500;
}

.hero-visual {
  display: none;
}

.geometric-pattern {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* ===================================================
   CARD 2 — SERVICIOS
   =================================================== */
#card2 .subtitulo-servicios {
  font-family: var(--fuenteMontserrat);
  font-size: 1rem;
  margin: 1.5rem 0 2rem;
  font-weight: 400;
  color: var(--colorSecun);
  line-height: 1.5;
}

.virtudes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.design {
  padding: 2rem 1.5rem;
  background-color: var(--colorBgCard);
  border-radius: 10px;
  border: 1px solid rgba(54, 204, 141, 0.1);
  transition: transform var(--transNormal), border-color var(--transNormal);
}

.design:hover {
  transform: translateY(-3px);
  border-color: rgba(54, 204, 141, 0.35);
}

.design img {
  max-width: 70px;
  margin: 0 auto 1.25rem;
}

.design h3 {
  color: var(--colorSecun);
  font-family: var(--fuenteMontserrat);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.design p {
  color: var(--colorSecun);
  font-family: var(--fuenteMontserrat);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
  border-left: 3px solid var(--colorTerc);
  padding-left: 0.75rem;
}

/* ===================================================
   CARD PLANES
   =================================================== */
#card-planes .subtitulo-planes {
  font-family: var(--fuenteMontserrat);
  font-size: 1rem;
  margin: 1.5rem 0 2.5rem;
  font-weight: 400;
  color: var(--colorSecun);
  line-height: 1.5;
}

.planes-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.plan {
  position: relative;
  padding: 2rem 1.5rem;
  background-color: var(--colorBgCard);
  border-radius: 10px;
  border: 2px solid rgba(54, 204, 141, 0.15);
  transition: transform var(--transNormal), border-color var(--transNormal), box-shadow var(--transNormal);
}

.plan:hover {
  transform: translateY(-5px);
  border-color: rgba(54, 204, 141, 0.4);
  box-shadow: 0 8px 25px rgba(54, 204, 141, 0.15);
}

.plan-destacado {
  border-color: var(--colorTerc);
  background: linear-gradient(135deg, var(--colorBgCard) 0%, rgba(54, 204, 141, 0.05) 100%);
}

.plan-destacado:hover {
  box-shadow: 0 8px 30px rgba(54, 204, 141, 0.3);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--colorTerc);
  color: var(--colorPri);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-family: var(--fuenteMontserrat);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(54, 204, 141, 0.2);
}

.plan-header h3 {
  color: var(--colorTerc);
  font-family: var(--fuenteFjalla);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.plan-descripcion {
  color: var(--colorSecun);
  font-family: var(--fuenteMontserrat);
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.85;
}

.plan-caracteristicas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.plan-caracteristicas li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--colorSecun);
  font-family: var(--fuenteMontserrat);
  font-size: 0.9rem;
  line-height: 1.5;
}

.plan-caracteristicas li img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background-color: transparent;
  color: var(--colorSecun);
  border: 2px solid var(--colorTerc);
  border-radius: 8px;
  font-family: var(--fuenteMontserrat);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--transRapida);
}

.btn-plan:hover,
.btn-plan:focus-visible {
  background-color: rgba(54, 204, 141, 0.12);
  transform: translateY(-2px);
}

.btn-plan-destacado {
  background-color: var(--colorTerc);
  color: var(--colorPri);
  font-weight: 600;
}

.btn-plan-destacado:hover,
.btn-plan-destacado:focus-visible {
  background-color: #2eb377;
  box-shadow: 0 4px 15px rgba(54, 204, 141, 0.4);
}

/* ===================================================
   CARD 3 — METODOLOGÍA
   =================================================== */
.metodologia-section {
  overflow: hidden;
}

.metodologia-intro {
  font-size: 1rem;
  margin: 1.5rem 0 3rem;
  max-width: 65ch;
}

.metodologia-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.timeline-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(54, 204, 141, 0.1);
  border: 2px solid var(--colorTerc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fuenteFjalla);
  font-size: 1.5rem;
  color: var(--colorTerc);
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h3 {
  font-family: var(--fuenteMontserrat);
  font-size: 1.2rem;
  color: var(--colorTerc);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timeline-content p {
  color: var(--colorSecun);
  font-family: var(--fuenteMontserrat);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.compas {
  display: none;
}

/* ===================================================
   CARD 4 — CONTACTO
   =================================================== */
#card4 .texto h4 {
  font-family: var(--fuenteMontserrat);
  color: var(--colorSecun);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

#card4 p {
  color: var(--colorSecun);
  font-family: var(--fuenteMontserrat);
  line-height: 1.5;
  margin-bottom: 1rem;
}

#card4 p span {
  color: var(--colorTerc);
  font-weight: 500;
}

form {
  margin-top: 2rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--fuenteMontserrat);
  font-size: 0.95rem;
  color: var(--colorSecun);
  background-color: var(--colorBgInput);
  border: 1px solid transparent;
  border-radius: 7px;
  margin-bottom: 1rem;
  transition: border-color var(--transRapida);
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(192, 196, 148, 0.5);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--colorTerc);
}

form textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--fuenteMontserrat);
}

form button[type="submit"] {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: var(--colorSecun);
  border: 3px solid var(--colorTerc);
  border-radius: 10px;
  font-family: var(--fuenteMontserrat);
  font-size: 1rem;
  transition: all var(--transRapida);
}

form button[type="submit"]:hover {
  background-color: rgba(54, 204, 141, 0.15);
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 2px solid var(--colorTerc);
}

.footer-firma {
  font-family: var(--fuenteRoboto);
  color: var(--colorTerc);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-firma span {
  color: var(--colorSecun);
  font-family: var(--fuenteLobster);
  font-weight: 400;
}

.footer-copy {
  color: var(--colorSecun);
  font-family: var(--fuenteMontserrat);
  font-size: 0.8rem;
  opacity: 0.55;
}

/* ===================================================
   TABLET — 700px +
   =================================================== */
@media (min-width: 700px) {
  nav {
    padding: 1rem 2.5rem;
  }

  .btn-burger,
  .nav-menu-header,
  .nav-overlay {
    display: none;
  }

  .nav-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0;
  }

  .nav-menu ul {
    flex-direction: row;
    gap: 1.5rem;
  }

  .nav-menu a {
    padding: 0.5rem 0.75rem;
    text-align: left;
  }

  .card {
    padding: 4rem 2.5rem;
  }

  .card .texto h1 {
    font-size: 2.5rem;
  }

  /* Card 1 - Hero */
  #card1 {
    padding-top: 5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 1;
    animation: fadeIn 1s ease-out 0.5s both;
    padding-top: 2rem;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .geometric-pattern {
    max-width: 400px;
  }

  /* Servicios 2 columnas */
  .virtudes {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  /* Planes 2 columnas */
  .planes-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Avatar visible en bocadillo */
  .bocadillo.is-visible {
    max-height: 800px;
  }

  .bocadillo .avatar {
    display: block;
    width: 90px;
    padding: 0.5rem;
    background-color: var(--colorBgCard);
    border-radius: 8px;
    margin-top: 1rem;
  }

  .compas {
    display: block;
    width: 250px;
    margin: 0 auto;
    opacity: 0.7;
  }

}

/* ===================================================
   DESKTOP — 900px +
   =================================================== */
@media (min-width: 900px) {
  main {
    padding-top: 70px;
  }

  .card {
    padding: 6rem 5rem;
  }

  .card .texto h1 {
    font-size: 3rem;
  }

  /* Card 1 - Hero */
  #card1 {
    min-height: 90vh;
  }

  .hero-section {
    padding: 6rem 5rem;
  }

  .hero-content {
    max-width: 600px;
  }

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

  .hero-description {
    font-size: 1.15rem;
  }

  .geometric-pattern {
    max-width: 550px;
    position: relative;
    top: -40px;
  }

  /* Servicios */
  #card2 .texto {
    padding-left: 2rem;
    border-left: 3px solid var(--colorTerc);
  }

  #card2 .subtitulo-servicios {
    max-width: 70ch;
  }

  .virtudes {
    gap: 1.5rem;
  }

  /* Planes */
  #card-planes .texto {
    padding-left: 2rem;
    border-left: 3px solid var(--colorTerc);
  }

  /* Metodología */
  .metodologia-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .metodologia-section .texto {
    padding-left: 2rem;
    border-left: 3px solid var(--colorTerc);
  }

  .compas {
    display: block;
    width: 380px;
    position: static;
    opacity: 0.75;
  }

  /* Contacto en dos columnas */
  #card4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  #card4 .texto {
    padding-left: 2rem;
    border-left: 3px solid var(--colorTerc);
  }

  form {
    margin-top: 0;
    padding: 2rem;
    background-color: rgba(32, 36, 34, 0.5);
    border-radius: 10px;
  }
}

/* ===================================================
   DESKTOP GRANDE — 1100px +
   =================================================== */
@media (min-width: 1100px) {
  .virtudes {
    grid-template-columns: repeat(3, 1fr);
  }

  #card1 .hero-ilustracion {
    width: 450px;
  }
}

/* ===================================================
   DESKTOP XL — 1300px +
   =================================================== */
@media (min-width: 1300px) {
  .card .texto h1 {
    font-size: 3.5rem;
  }

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

  .card {
    max-width: 1300px;
    margin: 0 auto;
  }
}

/* ===================================================
   PREFERS REDUCED MOTION
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-title .text-secondary {
  color: #c0c494;
}

.hero-visual {
  padding-left: 3rem !important;
}

.geometric-pattern {
  margin-left: 2rem;
}


.hero-title .text-secondary {
  color: var(--colorSecun);
  display: inline;
}
/* Añadir al final del archivo PortfolioFinal.css */

/* TÍTULO MÁS GRANDE */
.hero-title-large {
  font-size: 3.5rem;
  line-height: 1.1;
}

.hero-title .text-secondary {
  color: var(--colorSecun);
}

/* SVG MÁS A LA DERECHA Y ARRIBA */
@media (min-width: 900px) {
  .hero-title-large {
    font-size: 5.5rem;
  }
  
  .hero-visual-right {
    padding-left: 4rem;
    align-items: flex-start;
    padding-top: 0;
  }
  
  .geometric-pattern {
    margin-left: auto;
    position: relative;
    top: -80px;
    right: -30px;
  }
}

/* CONTACTO SIMPLE */
.contacto-simple {
  padding: 6rem 2rem !important;
}

.contacto-simple .texto {
  text-align: left;
  max-width: 600px;
  padding-left: 2rem;
  border-left: 3px solid var(--colorTerc);
  margin-bottom: 4rem;
}

.contacto-intro {
  font-size: 1.1rem;
  margin: 1.5rem 0 0;
  color: var(--colorSecun);
  opacity: 0.9;
  line-height: 1.6;
}

.contacto-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .contacto-info {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 900px) {
  .contacto-simple {
    padding: 8rem 5rem !important;
  }
  
  .contacto-info {
    gap: 3rem;
  }
}

.contacto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 3rem;
  background: rgba(54, 204, 141, 0.05);
  border: 2px solid rgba(54, 204, 141, 0.2);
  border-radius: 12px;
  transition: all var(--transNormal);
  min-height: 220px;
  justify-content: center;
}

@media (max-width: 500px) {
  .contacto-item {
    padding: 2.5rem 2rem;
  }
}

.contacto-item:hover {
  background: rgba(54, 204, 141, 0.08);
  border-color: rgba(54, 204, 141, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(54, 204, 141, 0.2);
}

.contacto-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(54, 204, 141, 0.1);
  border-radius: 50%;
  transition: all var(--transNormal);
  flex-shrink: 0;
}

.contacto-item:hover .contacto-icon {
  background: rgba(54, 204, 141, 0.2);
  transform: scale(1.1);
}

.contacto-icon svg {
  width: 36px;
  height: 36px;
}

.contacto-content {
  text-align: center;
}

.contacto-content h3 {
  font-family: var(--fuenteMontserrat);
  font-size: 1.2rem;
  color: var(--colorTerc);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contacto-content a {
  font-family: var(--fuenteMontserrat);
  font-size: 1.05rem;
  color: var(--colorSecun);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transNormal);
  display: block;
  word-break: keep-all;
  white-space: nowrap;
  overflow-wrap: normal;
}

.contacto-content a:hover {
  color: var(--colorTerc);
}

@media (max-width: 400px) {
  .contacto-content a {
    font-size: 0.95rem;
  }
}
