  :root {
      --bg-main: #050607;
      --bg-section: #101317;
      --green: #00c853;
      --green-soft: #21ff87;
      --text-main: #f5f5f5;
      --text-muted: #a0a4aa;
      --accent: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }


    body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(
    180deg,
    #a9f0a4,
    #8fe28a
  );
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;

  background: url("/img/fondo-billetes.PNG") center / cover repeat;

  filter: brightness(0.8) saturate(0.95) contrast(1.05);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.35)
  );
}

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 95%;
      max-width: 1200px;
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: transparent;
      border-bottom: none;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      min-height: 72px;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      padding: 0;         
      background: transparent;
      border-radius: 0;
      box-shadow: none;        
    }

    .logo-img {
      width: 80px;
      flex-shrink: 0;
      image-rendering: auto;
      filter: none;
      padding: 0;
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo-img img {
      width: 100%;
      height: auto;
      display: block;
      background: transparent;
      box-shadow: none;
      border: none;
      filter: drop-shadow(0 0 10px rgba(0,255,140,0.4));
      }

    .logo-text {
      font-weight: 700;
      font-size: 1.35rem;
      letter-spacing: 0.0em;
      text-transform: uppercase;
      line-height: 1.15;
    }

    nav {
  display: flex;
  align-items: center;
  gap: 2rem;

  font-size: 1.05rem;
  font-weight: 600;
}
    
.menu-wrapper {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  margin-left: 40px;
}

.menu-wrapper nav {
  min-height: 44px;
}

.menu-wrapper nav a {
  padding: 8px 18px;

  font-size: 1.15rem;
  min-width: 140px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;

  color: #ffffff;
  border-radius: 999px;

  transition: 
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.menu-wrapper nav a:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  transform: translateY(-1px);
}

    nav a {
      position: relative;
    }

    nav a:focus-visible {
      outline: none;
      box-shadow: 0 0 0 2px rgba(0,255,140,0.45);
      border-radius: 999px;
    }


    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--green), var(--green-soft));
      transition: width .2s ease-out;
    }

    nav a:hover::after {
      width: 100%;
    }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;

  padding: 0.25rem;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.lang-btn {
  min-width: 42px;
  padding: 0.35rem 0.85rem;

  border-radius: 999px;
  border: none;

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;

  color: #ffffff;
  background: transparent;

  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lang-btn.active {
  background: linear-gradient(135deg, #00e676, #1aff9c);
  color: #000;
  box-shadow: 0 0 12px rgba(0, 255, 140, 0.6);
}

.lang-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.lang-pill.active {
  background: linear-gradient(135deg, #00e676, #1aff9c);
  color: #000;
}


.hero {
  min-height: 90vh;
  padding-top: 5rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
}


    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4.2rem;
      align-items: center;
    }

    .hero-eyebrow {
      font-size: 0.8rem;
      color: var(--green-soft);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 0.5rem;
    }

    .hero-title {
      text-shadow: 0 4px 22px rgb(0,0,0,0.55);
      font-size: clamp(2.6rem, 4vw + 1rem, 3.8rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 1.2rem;
    }


    .hero-title span {
      color: var(--green-soft);
      font-weight: 700;
    }


    .hero-subtitle {
      text-shadow: 0 2px 14px rgb(0,0,0,0.45);
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 36rem;
      color: rgba(245,245,245,0.88);
      opacity: 0.92;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.6rem;
    }

    .btn {
      border-radius: 999px;
      padding: 0.7rem 1.4rem;
      font-size: 0.9rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: transform .12s ease-out, box-shadow .12s ease-out, background .12s ease-out;
    }

    .btn {
      transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      filter 0.18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.06);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #00e676, #1aff9c);
      box-shadow: 0 18px 45px rgba(0,230,118,0.45);
      font-size: 1rem;
      padding: 0.9rem 1.8rem;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 35px rgba(0,200,83,0.45);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.25);
      font-size: 0.95rem;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.05);
    }

    .btn:focus-visible {
      outline: none;
      box-shadow:
        0 0 0 3px rgba(0, 255, 140, 0.45),
        0 0 25px rgba(0, 255, 140, 0.35);
    }


 .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

  .hero-badge {
  padding: 0.35rem 0.95rem;
  font-size: 0.74rem;
  opacity: 0.85;
}

  .hero-badge span {
    color: var(--green-soft);
    font-weight: 600;
}


.hero-card > * {
  position: relative;
  z-index: 2;
}


.hero-card-image {
  display: flex;
  justify-content: center;
  margin: 1.6rem 0 1.4rem;
}

.hero-card-image img {
  width: min(460px, 92vw);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 45px rgba(0,0,0,0.45));
}

.hero-card-image::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(0,255,140,0.18),
    rgba(0,255,140,0.08),
    transparent 70%
  );
  filter: blur(40px);
  content: none;
}

.hero-card:hover {
    box-shadow:none !important;
    transform: none !important;
}

.hero-card-header {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;  
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.hero-card-text {
  text-align: center;
}

.hero-card-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-card-status {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 200, 83, 0.12);
    color: var(--green-soft);
    border: 1px solid rgba(0, 200, 83, 0.46);
}

.hero-logo-preview {
    margin-top: 0.4rem;       
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(circle at top,
            rgba(0, 255, 140, 0.08),
            transparent 55%);
}

.hero-logo-preview img {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.hero-meta {
    margin-top: 1.1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.hero-meta > div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

    section {
      padding: 2.8rem 0;
      scroll-margin-top: 90px;
    }

    .section-title {
      font-size: 1.5rem;
      margin-bottom: 0.4rem;
      line-height: 1.25;
      letter-spacing: -0.015em;
    }

    .section-subtitle {
      color: rgba(245,245,245,0.78);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      max-width: 42rem;
      line-height: 1.55;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      align-items: stretch;
    }

  .service-card {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 130px;  
  max-width: 420px;
  margin-inline: auto;
  padding: 1.6rem;

  background:
    linear-gradient(
      155deg,
      rgba(12, 20, 18, 0.94),
      rgba(6, 10, 9, 0.94)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  border: 1px solid rgba(0,255,140,0.28);

  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  line-height: 1.35;

  color: #ffffff;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    radial-gradient(
      circle at top left,
      rgba(0,255,140,0.25),
      transparent 65%
    );

  opacity: 0.6;
  pointer-events: none;
}

    .service-card {
     display: flex;
     align-items: center;
     justify-content: center;

     text-align: center;
     text-transform: uppercase;
     font-weight: 700;
     letter-spacing: 0.06em;
     font-size: 0.9rem;
    }

    .service-card {
     word-break: break-word;
    }

    .service-card {
     max-width: 420px;
     margin-inline: auto;
    }

  .service-card:hover {
  transform: translateY(-6px) scale(1.015);

  border-color: rgba(0,255,140,0.65);

  box-shadow:
    0 28px 60px rgba(0,0,0,0.85),
    0 0 35px rgba(0,255,140,0.35);
  }

.service-card:active {
  transform: translateY(-2px) scale(0.99);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.75),
    inset 0 0 10px rgba(0,0,0,0.6);
}

.service-card.highlight {
  border-color: rgba(0,255,140,0.75);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.8),
    0 0 40px rgba(0,255,140,0.45);
}

  @media (max-width: 768px) {
  .services-grid {
    gap: 1.4rem;
  }

  .service-card {
    min-height: 96px;
    font-size: 0.85rem;
    letter-spacing: 0.07em;
    padding: 1.6rem 1.2rem;
  }
}

    .service-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: radial-gradient(circle at top, var(--green-soft), var(--green));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #000;
      margin-bottom: 0.7rem;
    }

    .service-title {
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .service-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .service-link {
      font-size: 0.8rem;
      color: var(--green-soft);
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
      gap: 2rem;
      align-items: center;
    }

    .about-box {
      background: var(--bg-section);
      border-radius: 14px;
      padding: 1rem 1.2rem;
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .about-highlight {
      font-weight: 600;
      color: var(--green-soft);
    }

    .contact-strip {
      background: linear-gradient(120deg, #021c10, #04341b);
      border-radius: 16px;
      padding: 1.4rem 1.6rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
      align-items: center;
      margin-top: 1.5rem;
      border: 1px solid rgba(0,200,83,0.45);
      box-shadow: 0 14px 35px rgba(0,0,0,0.75);
    }

    .contact-strip-text {
      font-size: 0.95rem;
    }

    .contact-strip-text span {
      font-weight: 700;
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1.5rem 0 2.5rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .social-pill {
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.25);
      font-size: 0.8rem;
    }

   .hero-card-socials {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.hero-card-socials a {
    transform-origin: center center;  
    width: 72px;       
    height: 72px;    
    font-size: 1.15rem;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 22px;
    background: rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(0, 255, 140, 0.4);

    box-shadow: 0 0 18px rgba(0,255,140,0.45), inset 0 0 12px rgba(0,255,140,0.25);
    transition: transform 0.22s  cubic-bezier(.4,0,.2,1),
    box-shadow 0.22s ease;
}

.hero-card-socials a i {
    font-size: 3.4rem;   
    line-height: 1;
}

.hero-card-socials a:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 32px rgba(0, 255, 140, 0.6),
        inset 0 0 14px rgba(0, 255, 140, 0.35);
}

.hero-card-socials a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 140, 0.3);
    opacity: 0;
    pointer-events: none;
}

@keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(14px);
}
to {
  opacity: 1;
  transform: translateY(0);
   }
}

.hero-card-divider {
  width: 70%;
  height: 1px;
  border: none;
  margin: 0 auto 1.4rem;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  opacity: 0.8;
}

.hero-card-phone,
.hero-card-hours {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-main);
  margin: 0.2rem 0;
}

.hero-card-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1.4rem; 
}

.contact-info {
  padding: 2.4rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info b {
  display: inline-block;
  margin-bottom: 0.35rem;

  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #1aff9c;
}

.contact-info span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.contact-info p {
  margin-bottom: 1.2rem;
}

.contact-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.contact-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  filter: saturate(1.04) contrast(1.08) brightness(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: transform, opacity;
}

.contact-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 65px rgba(0, 255, 140, 0.18);
}

.contact-image img {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.contact-image img.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-card {
  width: 100%;
  height: 100%;
  min-height: 340px;
  padding: 1.8rem 2.2rem;
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(8, 10, 12, 0.92),
      rgba(18, 22, 26, 0.92)
    ),
    radial-gradient(
      circle at top right,
      rgba(0,255,140,0.18),
      transparent 55%
    );

  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);

  box-shadow:
    0 30px 65px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

.contact-info p:last-child {
  margin-bottom: 0;
}

#contacto {
  padding: 4.2rem 0 5rem;
}

#contacto .container {
 display: flex;
 flex-direction: column;
 align-items: center;
}

#contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left center,
    rgba(0,255,140,0.08),
    transparent 60%
  );
  pointer-events: none;
}

.contact-card {
  margin-left: auto;
  margin-right: auto;
}

#contacto .section-title {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  text-align: center;
}

#contacto .section-subtitle {
  font-size: 1.15rem;
  max-width: 680px;
  opacity: 0.95;
}

.contact-label {
  color: #32ff8d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.35rem;
}

#form-submit {
  display: inline-flex;
  align-items: center;  
  justify-content: center;
  text-align: center;
}

.ceo-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: 20px;
  max-width: 900px;
}

.ceo-image img {
  width: 700px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.ceo-content h3 {
  margin: 0;
  font-size: 1.4rem;
}

.ceo-role {
  color: #32ff8d;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .ceo-card {
    flex-direction: column;
    text-align: center;
  }

  .ceo-image img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .btn,
  .lang-btn {
    min-height: 44px;
  }
}

@media (max-width: 880px) {

  .hero-card-image img {
    width: 260px;
  }

  .hero-title{
    font-size: 2.3rem;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  }    
 

 .hero-subtitle {
   margin-left: auto;
   margin-right: auto;
}

 .hero-cta {
  justify-content: center;
}

.hero-card{
  margin-top: 2rem;
}  

 .hero-badge {
  justify-content: center;
}


 .hero-grid,
 .about-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-image img {
    max-width: 420px;
    opacity: 0.92;
  }

  .contact-info {
    padding: 1.6rem;
  }
  
  section {
    padding: 3.2rem 0;
  }

  .section-title {
    margin-bottom: 0.6rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .btn {
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
  }

  .hero-cta {
    gap: 1rem;
  }

  .contact-image {
    margin-bottom: 1.8rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  input,
  textarea,
  select {
    font-size: 0.95rem;
    padding: 0.65rem;
  }

  label {
    display: inline-block;
    margin-bottom: 0.25rem;
  }

  .contact-image img {
    border-radius: 18px;
  }
  
  .header-inner {
    justify-content: space-between;
}

.hero-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
 }

 .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(0, 200, 83, 0.65);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.8),
    0 0 0 1px rgba(0,255,140,0.15);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--green-soft);
  box-shadow: 0 0 0 2px rgba(0,255,140,0.35);
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(0,255,140,0.45);
}

input:active,
textarea:active,
select:active {
  transform: scale(0.995);
}

input,
textarea,
select {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

:focus-visible {
  outline: 2px solid var(--green-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

.hero-card-image img {
  animation: none !important;
}

header {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: none;
  border: none;
  box-shadow: none;

  padding: 0;
  min-height: auto;
}

.hero-card-image {
  margin-top: 1.8rem;
  margin-bottom: 1.6rem;
}

.hero {
  min-height: 90vh;
  padding: 6rem 0 4rem;
  display: flex;
  align-items: center;
}

.robot-check {
  margin: 1.2rem 0;
}

.robot-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #e5e5e5;
  font-size: 0.95rem;
}

header {
  min-height: 72px;
}

.contact-avatar::before {
  width: 500px;
  height: 500px;
}

.logo-img {
  width: 60px;
}

.logo-text {
  font-size: 1rem;
  line-height: 1.1;
}

}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px solid #333;
  background: #050607;
  color: #fff;
}

.form-grid textarea {
  min-height: 120px;
}

.form-footer {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.form-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-grid label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid > div {
    grid-column: span 1 !important;
  }

  form-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.form-submit-wrapper {
  margin-top: .6rem;
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
}

.form-submit-wrapper .btn {
  min-width: 280px;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  letter-spacing: 0.02em;
}

.form-footer {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: center;
}

.robot-check {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .form-footer {
    grid-template-columns: 1fr;
  }
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-submit-wrapper .btn {
  min-width: 260px;
  max-width: 320px;
  border-radius: 999px;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  box-shadow: 0 14px 30px rgba(0,255,140,0.35);
}

#agendar .about-box {
  max-width: 960px;
  margin: 0 auto;
}

#form-date,
#form-time {
  border-color: rgba(0,255,140,0.45);
}

#form-date:focus,
#form-time:focus {
  box-shadow: 0 0 0 2px rgba(0,255,140,0.35);
}

.date-time-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 900px) {
  .date-time-group {
    grid-template-columns: 1fr;
  }
}

.btn-ceo {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #00e676, #1aff9c);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ceo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

button,
a {
  cursor: pointer;
}

@media (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

.external-cta {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(0, 255, 140, 0.18),
      transparent 55%
    ),
    linear-gradient(
      145deg,
      rgba(6, 10, 9, 0.95),
      rgba(12, 22, 18, 0.95)
    );

  border-radius: 26px;
  padding: 3.2rem 2.8rem;
  text-align: center;

  border: 1px solid rgba(0,255,140,0.28);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

.external-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.external-text {
  max-width: 680px;
  margin: 0 auto 2.2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(245,245,245,0.9);
}

.external-btn {
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;

  box-shadow:
    0 8px 18px rgba(0,255,140,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.12);

  filter: saturate(0.9);
}

.external-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px rgba(0,255,140,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.18);
}

.external-note {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 1.4rem;
}

@media (max-width: 768px) {
  .external-cta {
    padding: 2.4rem 1.6rem;
  }

  .external-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .service-card {
    height: 110px;
    font-size: 0.85rem;
    letter-spacing: 0.07em;
  }
}

.service-renewable:hover {
  box-shadow:
    0 30px 65px rgba(0,0,0,0.85),
    0 0 35px rgba(0,255,140,0.35);
}

.service-card.service-renewable::before {
  opacity: 0.15;
}

.service-card.service-renewable:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 35px 75px rgba(0,0,0,0.85),
    0 0 40px rgba(0,255,140,0.45);
}

.service-card.service-renewable {
  position: relative;
  color: transparent;
  text-shadow: none;
}

.service-card.service-renewable::after {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../img/renewable-power.png") center / 80% no-repeat;

  opacity: 0.95;
  pointer-events: none;
}

.contact-info .contact-label {
  color: #1aff9c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-map {
  width: 100%;
  height: auto;
  min-height: unset;
  display: flex;
  position: relative;

  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(0,255,140,0.25);
  box-shadow:
    0 30px 65px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

.contact-map::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 280px;
  flex: 1;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .contact-card {
    padding: 1.5rem 1.4rem;
  }

  .contact-map {
    min-height: 220px;
  }
}

.contact-grid {
  align-items: stretch;
}

.contact-card,
.contact-map {
  min-height: 360px;
}

.promo-strip {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}

.promo-strip img {
  width: 100%;
  max-width: 1400px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.75);
}

.promo-agendar {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}

.promo-agendar img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.75);
}

/*Eliminar a futuro*/
#form-service option {
  display: none;
}

#form-service option[value="Income tax personal y negocio"],
#form-service option[value="Personal & business income tax"] {
  display: block;
}

#form-service::before {
  content: "⚠️ Por el momento solo taxes";
  display: block;
  margin-bottom: 0.6rem;

  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;

  color: #32ff8d;
}

#servicios .service-card {
  display: none;
}

#servicios #service-tax {
  display: flex;
}

#servicios .service-renewable {
  display: flex;
}

#agendar,
.promo-agendar {
  display: none !important;
}

#nav-agendar {
  display: none !important;
}
