:root {
  --bg: #0f0f0f;
  --panel: #171717;
  --muted: #9aa3a8;
  --accent-cyan: #00f0d1;
  --accent-pink: #ff2fb8;
  --accent-yellow: #ffb23b;
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 18px;
  --container: 1200px;
  --gradient-1: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink));
}

/* Base */
* {
  box-sizing: border-box
}
html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden
}
body {
  margin: 0;
  font-family: "Poppins", system-ui, Segoe UI, Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: #e6e6e6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h2 {
  margin: 0;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

img,
.hero-photo img,
.circle-img,
.brochure-circle {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px
}
.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f0d1, #ff2fb8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b0b0b;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
}
.brand-text {
  color: #8bdfe2;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center
}
.main-nav a {
  color: #cfd6d8;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px
}
.nav-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ddd;
  margin: 4px 0
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #cfd6d8;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.lang-btn:hover {
  color: var(--accent-cyan);
}

.lang-btn.active {
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
  color: #0f0f0f;
  font-weight: 600;
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-text {
  display: inline-block;
}

.lang-separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

/* HERO */
.hero {
  min-height: 725px;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.75) 10%, rgba(11, 11, 11, 0.35) 60%);
}
.hero-inner {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  width: 100%;
  height: 100%;
}
.hero-left {
  flex: 1;
  color: #fff;
  z-index: 2;
  min-width: 0;
  flex-shrink: 1;
  text-align: left;
}
.hero-title {
  margin: 6px 0 18px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap
}
.btn-primary {
  background: var(--accent-cyan);
  color: #081414;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 240, 209, 0.12)
}

.hero-right {
  flex: 0 0 auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  min-width: 0
}
.hero-photo {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 8px;
  border: 3px solid rgba(0, 240, 209, 0.12)
}
.hero-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  display: block
}

/* Sections */
.section {
  padding: 64px 0
}
.dark-section {
  background: var(--panel);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02)
}
.section-title {
  color: var(--accent-cyan);
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  font-size: 42px;
}

.about-left {
  flex: 1 1 420px;
  min-width: 0
}
.section-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap
}
.about-left h3.accent {
  color: var(--accent-cyan);
  margin: 0;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.05;
  word-break: break-word;
  overflow-wrap: break-word
}
.about-left h4.muted {
  color: #d7dfe1;
  margin: 6px 0 18px;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.05
}
.about-circles {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap
}
.circle-img {
  height: auto;
  max-width: 85%
}
.about-right {
  flex: 1 1 420px;
  min-width: 0
}
.about-right p {
  color: #cfd6d8
}

/* Values */
.values {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.values li {
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.values li::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.values li .text-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.values li strong {
  color: var(--accent-pink);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}

.values li .description {
  color: #c9d3d4;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  display: block;
}

.values li:nth-child(1)::before {
  background-image: url('icono_nos_2.png');
}
.values li:nth-child(2)::before {
  background-image: url('icono_nos_3.png');
}
.values li:nth-child(3)::before {
  background-image: url('icono_nos_4.png');
}

/* SERVICES - 4 TARJETAS (2x2) */
.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.row-1 {
  justify-content: center;
}
.row-2 {
  justify-content: center;
}

.services-intro {
  text-align: center;
  font-size: 18px;
  color: #cfd6d8;
  max-width: 750px;
  margin: -20px auto 50px auto;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Poppins", system-ui, sans-serif;
}

.service-card-simple {
  background: transparent;
  padding: 0;
  border-radius: 16px;
  position: relative;
  width: calc(50% - 12px);
  max-width: 500px;
  flex: 0 0 auto;
}

.card-inner-simple {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  min-height: 280px;
}

.card-inner-simple::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(90deg, #ff00c3, #ffb347);
  border-radius: 18px;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.service-card-simple:hover .card-inner-simple::before {
  opacity: 1;
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-pink);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 6px;
  opacity: 0.8;
}

.card-content h4 {
  color: var(--accent-cyan);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  font-family: "Montserrat", sans-serif;
}

.service-sub {
  color: #cfd6d8;
  font-size: 15px;
  font-weight: 400;
  margin: -6px 0 14px 0;
  line-height: 1.5;
  font-style: italic;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  margin-bottom: 14px;
  color: #cfd6d8;
  font-size: 14px;
  line-height: 1.5;
}

.service-list li strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
  font-size: 20px;
}

.service-list li span {
  color: #b0baba;
  font-weight: 400;
  font-size: 16px;
  display: block;
  margin-top: 2px;
}

/* SECTORES - 6 TARJETAS (3x2) */
.sectores-section {
  background: var(--panel);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.sector-card {
  height: auto !important;
  min-height: unset !important;
}

.sector-card .card-inner-simple {
  min-height: unset !important;
  height: auto !important;
  padding: 28px 24px;
}

.sector-card .card-content {
  height: auto !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sector-card .card-content h4 {
  font-size: 22px;
  margin: 0 0 4px 0;
  color: var(--accent-cyan);
  line-height: 1.2;
}

.sector-card .service-sub {
  font-size: 14px;
  color: #cfd6d8;
  margin: 0 0 12px 0;
  font-style: normal;
  line-height: 1.5;
  flex: 0 0 auto;
}

.sector-link {
  display: inline-block;
  color: var(--accent-pink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: auto;
}

.sector-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-pink);
  transition: width 0.3s ease;
}

.sector-link:hover {
  color: var(--accent-cyan);
}

.sector-link:hover::after {
  width: 100%;
  background: var(--accent-cyan);
}

.sector-link-highlight {
  color: #ffffff;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
  padding: 8px 22px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.sector-link-highlight::after {
  display: none;
}

.sector-link-highlight:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 47, 184, 0.4);
  color: #ffffff;
}

.sector-card-highlight .card-inner-simple {
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.sector-card-highlight .card-inner-simple::before {
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan), var(--accent-yellow));
  opacity: 0.7;
}

.sector-card-highlight:hover .card-inner-simple::before {
  opacity: 1;
}

/* VENTAJAS - 4 columnas */
.why-choose-us {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 100%);
  position: relative;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 60px;
  color: #ffffff;
  width: 100%;
}

.benefits-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card-new {
  background: var(--panel);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.benefit-card-new::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 22px;
  z-index: -1;
  opacity: 0.5;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
}

.benefit-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-pink);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 12px;
  line-height: 1;
}

.benefit-card-new h3 {
  color: var(--accent-cyan);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}

.benefit-card-new p {
  color: #cfd6d8;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* CTA big */
.cta-big {
  padding: 64px 0;
  text-align: center
}
.giant {
  font-size: clamp(36px, 9vw, 110px);
  line-height: 0.95;
  margin: 0 0 18px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 60px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  width: 100%;
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
  border-radius: 3px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--panel);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active::before {
  opacity: 1;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--panel);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.faq-question h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--accent-cyan);
}

.faq-toggle {
  color: var(--accent-pink);
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 16px 16px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  color: #cfd6d8;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Precios */
.pricing-section {
  padding: 80px 0;
  background: transparent;
  position: relative;
}

.pricing-section h2 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 50px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  position: relative;
  border-radius: 24px;
  padding: 3px;
  background: transparent;
  transition: transform 0.3s ease;
  width: 340px;
  flex: 0 0 auto;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan), var(--accent-yellow));
  border-radius: 24px;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-inner {
  position: relative;
  background: transparent;
  border-radius: 22px;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
  color: var(--accent-cyan);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.price .amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-pink);
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 47, 184, 0.3);
}

.price .period {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}

.price .tax-info {
  font-size: 14px;
  color: #9aa3a8;
  font-style: italic;
}

.pricing-description {
  margin-bottom: 25px;
}

.pricing-description p {
  color: #cfd6d8;
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0;
  text-align: center;
}

.pricing-description .small-text {
  font-size: 12px;
  color: #9aa3a8;
  text-align: center;
}

.pricing-description strong {
  color: var(--accent-cyan);
}

.pricing-features {
  margin-bottom: 20px;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  color: #cfd6d8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.pricing-features li::before {
  content: "•";
  color: var(--accent-pink);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
}

.pricing-features .highlight {
  color: var(--accent-yellow);
  font-weight: 600;
}

/* Gradient button */
.btn-gradient-outline {
  position: relative;
  display: inline-block;
  padding: 12px 40px;
  font-weight: 700;
  font-size: 1.2em;
  color: var(--accent-cyan);
  border: none;
  border-radius: 40px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.22s;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}
.btn-gradient-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 2px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  transition: opacity .22s;
}
.btn-gradient-outline::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 38px;
  background: transparent;
  transition: background .22s;
  z-index: -1;
}
.btn-gradient-outline:hover,
.btn-gradient-outline:focus {
  color: #fff;
}
.btn-gradient-outline:hover::after,
.btn-gradient-outline:focus::after {
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink));
}
.btn-gradient-outline:hover::before,
.btn-gradient-outline:focus::before {
  opacity: 0;
}

/* Helpers */
.muted {
  color: #cfd6d8
}
.accent {
  color: var(--accent-cyan)
}

/* Contact Form */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--panel) 0%, #0f0f0f 100%);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(90deg, #ff00c3, #ffb347, #00ffff);
  border-radius: 26px;
  z-index: -1;
}

.form-title {
  text-align: center;
  margin-bottom: 40px;
}

.form-title h3 {
  color: var(--accent-cyan);
  font-size: 36px;
  margin: 0 0 10px;
  font-weight: 700;
}

.form-title p {
  color: #bfc9cb;
  font-size: 18px;
  margin: 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group label span {
  color: var(--accent-pink);
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #252525;
  border: 2px solid transparent;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 195, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
  font-size: 14px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff2fb8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
}

.form-group select option {
  background: #1a1a1a;
  color: #ffffff;
  padding: 12px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.btn-submit {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(90deg, #ff00c3, #ffb347);
  padding: 16px 48px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  min-width: 250px;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(255, 0, 195, 0.4);
}

.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 0, 195, 0.6);
  opacity: 1;
}

.form-message {
  margin-top: 30px;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: rgba(0, 240, 209, 0.2);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  display: block;
}

.form-message.error {
  background: rgba(255, 47, 184, 0.2);
  border: 1px solid var(--accent-pink);
  color: var(--accent-pink);
  display: block;
}

/* Brochure */
.brochure {
  padding: 48px 0;
  text-align: center
}
.brochure-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px
}

/* Footer */
.site-footer {
  padding: 60px 0 20px;
  color: #c8d1d2;
  background: var(--panel);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-contact {
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

.footer-brand .logo {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.footer-brand .brand-text {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

.footer-welcome {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-info p {
  margin: 0;
  font-size: 15px;
}

.contact-link {
  color: #cbd7d8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--accent-cyan);
}

.contact-location {
  color: #cbd7d8;
}

.footer-col h5 {
  color: var(--accent-cyan);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd7d8;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-pink);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
  color: #0f0f0f;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-pink),
      var(--accent-cyan),
      var(--accent-yellow),
      transparent);
  margin: 30px 0 20px;
  opacity: 0.5;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #8a9a9c;
  padding: 10px 0;
}

.copyright p {
  margin: 0;
}

/* HERO STYLES */
.hero-tagline {
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--accent-cyan);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  font-family: "Poppins", system-ui, sans-serif;
  opacity: 0.8;
}

.hero-title {
  margin: 0 0 18px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: medium;
}

.hero-main {
  font-size: 60px;
  line-height: 1.05;
  display: block;
}

.hero-gradient {
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-white {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  color: #cfd6d8;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 600px;
  display: block;
  font-family: "Poppins", system-ui, sans-serif;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-tagline2 {
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--accent-cyan);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  font-family: "Poppins", system-ui, sans-serif;
  opacity: 0.8;
  text-align: center;
}

/* BADGES HERO */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  align-items: center;
}

.hero-badge {
  color: #cfd6d8;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  font-family: "Poppins", system-ui, sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 0;
}

.hero-badge strong {
  font-weight: 700;
  color: #ffffff;
}

.hero-badge:not(:last-child)::after {
  content: "•";
  color: var(--accent-cyan);
  font-size: 20px;
  margin-left: 12px;
  display: inline-block;
  opacity: 0.6;
}

/* MEDIA QUERIES */
@media (max-width: 1151px) {
  .container {
    width: 94%
  }
  .hero-title .big-gradient {
    font-size: clamp(34px, 7.5vw, 60px)
  }
  .hero-photo {
    max-width: 450px
  }
  .about-left h3.accent {
    font-size: 40px
  }
  .about-left h4.muted {
    font-size: 38px
  }
}

@media (max-width: 1024px) {
  .benefits-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .language-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    right: 12px;
    top: 64px;
    background: var(--panel);
    padding: 12px;
    border-radius: 8px;
    flex-direction: column;
    display: none;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.6);
    min-width: 180px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 40px 12px;
    gap: 20px
  }
  .hero-right {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center
  }
  .hero-photo {
    max-width: 400px
  }
  .nav-toggle {
    display: block
  }
  .giant {
    font-size: 64px
  }
  .about-left h3.accent {
    font-size: 40px
  }
  .about-left h4.muted {
    font-size: 40px
  }
  .section-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero {
    height: auto;
  }
  .section-inner {
    gap: 20px;
  }
  .hero-tagline {
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 2px;
    text-align: center;
  }
  .hero-main {
    font-size: clamp(36px, 7vw, 55px);
  }
  .hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
    gap: 16px;
    margin-top: 0px;
  }
  .btn-gradient-outline {
    padding: 12px 24px;
    font-size: 0.95em;
  }
  .hero-subtitle {
    margin-top: 20px;
  }

  .hero-left {
    text-align: center;
    align-self: center;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-right p {
    text-align: justify;
  }
  .hero-photo {
    margin: 0 auto;
  }
  .about-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .about-circles {
    justify-content: center;
    width: 100%;
  }
  .circle-img {
    margin: 0;
  }
  .about-right {
    text-align: justify;
  }

  .service-card-simple {
    width: 100%;
    max-width: 480px;
  }
  .services-row {
    justify-content: center;
  }
  .card-inner-simple {
    padding: 26px 22px;
    min-height: 240px;
  }
  .card-number {
    font-size: 24px;
  }
  .card-content h4 {
    font-size: 24px;
  }
  .services-intro {
    font-size: clamp(15px, 2vw, 18px);
    padding: 0 16px;
    margin: -10px auto 35px auto;
  }

  .hero-badges {
    justify-content: center;
    gap: 12px 20px;
    margin-top: 20px;
  }
  .hero-badge {
    font-size: clamp(12px, 1.5vw, 14px);
  }
  .hero-badge:not(:last-child)::after {
    margin-left: 10px;
    font-size: 16px;
  }

  .sector-card {
    width: 100%;
    max-width: 480px;
  }
  .row-1, .row-2 {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-contact {
    grid-column: span 2;
    text-align: center;
    align-items: center;
  }
  .footer-brand {
    justify-content: center;
  }
  .footer-col h5 {
    text-align: left;
  }
  .footer-col h5::after {
    left: 0;
    transform: none;
  }
  .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .values li {
    gap: 15px;
    margin: 25px 0;
  }
  .values li::before {
    width: 70px;
    height: 70px;
  }
  .values li strong {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .values li .description {
    font-size: 15px;
  }

  .hero-inner {
    align-items: center;
    padding: 30px 10px;
    gap: 18px
  }
  .hero-title .big-gradient {
    font-size: clamp(30px, 8vw, 60px)
  }
  .hero-photo {
    max-width: 340px
  }
  .about-left {
    flex-basis: 100%
  }
  .about-right {
    flex-basis: 100%;
  }
  .giant {
    font-size: 54px
  }
  .faq-container {
    /* padding: 0 20px; */
  }

  .pricing-card {
    width: 100%;
    max-width: 340px;
  }
  .pricing-header h3 {
    font-size: 22px;
  }
  .price .amount {
    font-size: 38px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-title h3 {
    font-size: 28px;
  }
  .btn-submit {
    width: 100%;
    min-width: auto;
    padding: 14px 30px;
    font-size: 16px;
  }
}

@media (max-width: 693px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 20px 0px;
    gap: 14px;
  }
  .hero-title .big-gradient {
    font-size: clamp(26px, 9vw, 48px)
  }
  .hero-photo {
    max-width: 340px
  }
  .about-left h3.accent {
    font-size: 30px
  }
  .about-left h4.muted {
    font-size: 28px
  }
  .container {
    width: 97%;
  }
  .btn {
    padding: 10px 16px
  }
}

@media (max-width: 600px) {
  .service-card {
    height: 420px;
  }
  .pricing-card {
    width: 100%;
    max-width: 340px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-contact {
    grid-column: span 1;
  }
  .footer-col {
    text-align: center;
    align-items: center;
  }
  .footer-col h5 {
    text-align: center;
  }
  .footer-col h5::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links li {
    margin-bottom: 8px;
  }
  .footer-social {
    align-items: center;
  }
  .social-icons {
    justify-content: center;
  }
  .contact-info {
    align-items: center;
  }

  .benefits-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  .benefit-card-new {
    padding: 30px 20px;
  }
  .benefit-number {
    font-size: 40px;
  }
  .benefit-card-new h3 {
    font-size: 20px;
  }
  .benefit-card-new p {
    font-size: 15px;
  }

  .sector-card {
    width: 100%;
    max-width: 400px;
    height: auto !important;
  }
  .sector-card .card-inner-simple {
    padding: 20px 18px;
    height: auto !important;
  }
  .sector-card .card-content h4 {
    font-size: 20px;
  }
  .sector-card .service-sub {
    font-size: 14px;
    min-height: auto;
  }
  .row-1, .row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .values li {
    gap: 12px;
    margin: 20px 0;
    align-items: flex-start;
  }
  .values li::before {
    width: 70px;
    height: 70px;
  }
  .values li strong {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .values li .description {
    font-size: 14px;
  }

  .card-inner-simple {
    padding: 20px 18px;
    min-height: 200px;
  }
  .card-number {
    font-size: 20px;
  }
  .card-content h4 {
    font-size: 25px;
  }
  .service-list li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .service-list li strong {
    font-size: 18px;
  }
  .service-list li span {
    font-size: 16px;
  }
  .service-sub {
    font-size: 13px;
  }
  .services-intro {
    font-size: 16px;
    margin: 0 0 30px 0;
  }

  .hero-title .big-gradient {
    font-size: clamp(22px, 12vw, 60px)
  }
  .hero-title .subtitle {
    font-size: clamp(14px, 4.5vw, 18px)
  }
  .hero-photo {
    max-width: 480px;
  }
  .about-left h3.accent {
    font-size: 27px
  }
  .about-left h4.muted {
    font-size: 25px
  }
  .section {
    padding: 50px 0;
  }
  .giant {
    font-size: 36px
  }
  .brochure-circle {
    width: 85px;
    height: 85px
  }

  .pricing-card-inner {
    padding: 25px 20px;
  }
  .pricing-header h3 {
    font-size: 20px;
  }
  .price .amount {
    font-size: 34px;
  }
  .pricing-features li {
    font-size: 13px;
  }

  .hero-badges {
    gap: 10px 16px;
    margin-top: 16px;
  }
  .hero-badge {
    font-size: 11px;
  }
  .hero-badge:not(:last-child)::after {
    margin-left: 8px;
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .hero-title .big-gradient {
    font-size: clamp(18px, 12vw, 50px)
  }
  .hero-photo {
    max-width: 320px
  }
  .about-left h3.accent {
    font-size: 25px
  }
  .about-left h4.muted {
    font-size: 23px
  }
  .giant {
    font-size: 32px
  }
  .footer-brand {
    flex-direction: column;
    gap: 8px;
  }
  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .benefit-card-new {
    padding: 24px 16px;
  }
  .benefit-number {
    font-size: 34px;
  }
  .benefit-card-new h3 {
    font-size: 18px;
  }
  .benefit-card-new p {
    font-size: 14px;
  }
  .sector-card .card-inner-simple {
    padding: 16px 14px;
  }
  .sector-card .card-content h4 {
    font-size: 18px;
  }
  .sector-card .service-sub {
    font-size: 13px;
  }
}

@media (min-width: 901px) {
  .row-1, .row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .service-card-simple {
    width: calc(50% - 12px);
    max-width: 500px;
  }
  .sector-card {
    width: calc(33.333% - 16px);
    max-width: 380px;
    height: auto !important;
    display: flex;
    align-items: stretch;
  }
  .sector-card .card-inner-simple {
    height: 100% !important;
    display: flex;
    flex-direction: column;
  }
  .sector-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .sector-card .service-sub {
    flex: 0 0 auto;
  }
  .sector-link {
    margin-top: auto;
  }
  .row-1, .row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .sector-card {
    width: calc(50% - 12px);
    max-width: 340px;
    height: auto !important;
  }
  .sector-card .card-inner-simple {
    padding: 24px 20px;
    height: auto !important;
  }
  .sector-card .card-content h4 {
    font-size: 20px;
  }
  .sector-card .service-sub {
    font-size: 14px;
    min-height: auto;
  }
  .row-1, .row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
  }
}
/* ============================================
   SECCIÓN DIAGNÓSTICO
   ============================================ */
.diagnostico-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 100%);
  position: relative;
  text-align: center;
}

.diagnostico-content {
  max-width: 800px;
  margin: 0 auto;
}

.diagnostico-section h2 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.diagnostico-sub {
  font-size: clamp(18px, 2vw, 24px);
  color: #cfd6d8;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  font-family: "Poppins", system-ui, sans-serif;
}

.btn-diagnostico {
  display: inline-block;
  padding: 16px 48px;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
  border: none;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 47, 184, 0.3);
  cursor: pointer;
}

.btn-diagnostico:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 47, 184, 0.5);
}

/* Ajustes responsive */
@media (max-width: 900px) {
  .diagnostico-section {
    padding: 60px 0;
  }
  
  .diagnostico-section h2 {
    font-size: clamp(30px, 5vw, 40px);
  }
  
  .diagnostico-sub {
    font-size: clamp(16px, 2vw, 20px);
    padding: 0 20px;
  }
  
  .btn-diagnostico {
    padding: 14px 36px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .diagnostico-section {
    padding: 40px 0;
  }
  
  .diagnostico-section h2 {
    font-size: clamp(24px, 4vw, 32px);
  }
  
  .diagnostico-sub {
    font-size: 15px;
    padding: 0 16px;
  }
  
  .btn-diagnostico {
    padding: 12px 28px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================
   FORMULARIO DE CONTACTO - DOS COLUMNAS
   ============================================ */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--panel) 0%, #0f0f0f 100%);
}

.contact-form-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Columna Izquierda - Información */
.contact-info-column {
  flex: 0 0 35%;
  padding-top: 10px;
}

.contact-info-column h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.1;
}

.contact-info-sub {
  font-size: clamp(18px, 1.4vw, 24px);
  color: var(--accent-cyan);
  font-weight: 600;
  margin: 0 0 12px 0;
}

.contact-info-desc {
  font-size: 16px;
  color: #cfd6d8;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  font-size: 20px;
  min-width: 28px;
  color: var(--accent-cyan);
}

.contact-info-item strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.contact-info-link {
  color: #cfd6d8;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: var(--accent-cyan);
}

.contact-info-text {
  color: #cfd6d8;
  font-size: 15px;
}

.contact-info-text strong {
  color: var(--accent-cyan);
  display: inline;
}

/* Columna Derecha - Formulario */
.contact-form-column {
  flex: 1;
}

.contact-form-container {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(90deg, #ff00c3, #ffb347, #00ffff);
  border-radius: 26px;
  z-index: -1;
}

.form-hint {
  font-size: 13px;
  color: #9aa3a8;
  margin: 6px 0 0 0;
  font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-form-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info-column {
    flex: 1;
    width: 100%;
  }

  .contact-info-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-form-column {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-info-details {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 24px 18px;
  }

  .contact-info-column h2 {
    font-size: 28px;
  }

  .contact-form-section {
    padding: 50px 0;
  }
}

/* ============================================
   DROPDOWN SECTORES - CORREGIDO
   ============================================ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #cfd6d8;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--accent-cyan);
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--panel);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
  margin-top: 4px;
  /* 👇 NUEVO: permite que el mouse entre al menú */
  pointer-events: auto;
}

/* 👇 NUEVO: mantiene el menú abierto cuando el mouse está dentro */
.nav-dropdown-menu:hover {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #cfd6d8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-cyan);
  border-left-color: var(--accent-cyan);
}

/* 👇 NUEVO: zona de seguridad entre el toggle y el menú */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown.active .nav-dropdown-menu {
  display: block;
}

/* Responsive - móvil */
@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
    padding: 8px 0;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin: 4px 0;
    padding: 4px 0;
    display: none;
    pointer-events: auto;
  }

  /* En móvil no necesitamos el hover ni la zona de seguridad */
  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    padding: 8px 20px;
    font-size: 14px;
    text-align: center;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .nav-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .nav-dropdown-menu a:hover {
    border-left: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.active:hover .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu:hover {
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu:hover {
    display: block;
  }
}