*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green:    #13a538;
    --blue:     #005f83;
    --brown:    #1c3829;
    --brown2:   #753a11;
    --forest:   #4F564F;
    --forest2:  #717E6C;
    --dark-green:#2d492a;
    --gray:     #606060;
    --gray-lt:  #a2a2a2;
    --bg:       #ffffff;
    --footer-bg:#e9ebec;

    --rc: 'Roboto Condensed', sans-serif;
    --ns: 'Noto Sans', sans-serif;
    --nj: 'Noto Sans JP', sans-serif;
    --an: 'Archivo Narrow', sans-serif;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body {
    font-family: var(--rc);
    color: var(--gray);
    background: var(--bg);
    overflow-x: hidden;
    min-width: 100%;
  }

  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }

  .ta-center {
    text-align: center;
  }
  .ta-center-mobileOnly {
    text-align: left;
  }

  /* --- Project title -- */
  .project-title {
    background-color: #f6f5f0;
    margin-top: 106px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  }
  nav .logo img { 
    height: 86px;
    width: auto;
    transition: height 0.3s ease;
    pointer-events: none;
  }
  nav.scrolled .logo img {
    height: 36px;
  }
  nav ul { list-style: none; display: flex; align-items: center; gap: 0; }
  nav ul li a {
    font-family: var(--rc);
    font-size: 15px;
    font-weight: 400;
    color: #606060;
    border-right: 1px solid #afafaf;
    padding: 0 20px;
    display: block;
    transition: color 0.2s;
  }
  nav ul li:last-child a { border-right: none; }
  nav ul li a:hover { color: var(--blue); }

  /* ── HERO BANNER ── */
  .hero {
    position: relative;
    width: 100%;
  }
  .hero-img { width: 100%; display: block; }
  .hero-img.desktop { display: block; pointer-events: none; }
  .hero-img.mobile  { display: none; pointer-events: none; }

  .hero-overlay {
    position: absolute;
    top: 56px; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    pointer-events: none;
  }
  .hero-project-logo {
    width: min(320px, 52%);
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
    pointer-events: none;
    margin: 0 auto;
  }
  .hero-actions {
    display: flex;
    gap: 36px;
    pointer-events: all;
  }
  .hero-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .hero-action:hover { transform: translateY(-2px); }
  /* icon swap identical to original .icon-item pattern */
  .hero-action .icon-wrap { position: relative; width: 80px; height: 55px; }
  .hero-action .icon-wrap img { pointer-events: none; }
  .hero-action .icon-wrap img {
    position: absolute; top: 0; left: 0;
    width: 80px; height: 55px;
    object-fit: contain;
    transition: opacity 0.3s ease;
  }
  .hero-action .icon-wrap .img-normal { opacity: 1; }
  .hero-action .icon-wrap .img-hover  { opacity: 0; }
  .hero-action:hover .icon-wrap .img-normal { opacity: 0; }
  .hero-action:hover .icon-wrap .img-hover  { opacity: 1; }
  .hero-action span {
    font-family: var(--rc);
    font-size: 12px;
    font-weight: 400;
    color: #1c3829;
    /* text-shadow: 0 1px 4px rgba(0,0,0,0.6); */
    letter-spacing: 0.5px;
  }

  /* ── DESCRIPTION ── */
  .description {
    background: #fff;
    padding: 56px 100px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    align-items: center;
  }
  .desc-title {
    font-family: var(--rc);
    font-weight: 300;
    color: var(--gray);
    font-size: 1.9em;
    letter-spacing: 1px;
    margin-bottom: 0;
  }
  .desc-title-2{
    font-family: var(--rc);
    font-weight: 700;
    color: #4D554E;
    font-size: 2em;
    letter-spacing: -1px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
    max-width: 560px;
  }
  .desc-title-3{
    font-family: var(--rc);
    font-weight: 700;
    color: #717E6B;
    font-size: 2em;
    letter-spacing: -1px;
    text-transform: uppercase;
    width: fit-content;
    /* margin-bottom: 20px; */
  }
  .project-desc-subtitle {
    font-family: var(--rc);
    font-weight: 700;
    color: #717E6A;
    font-size: 1.8em;
    letter-spacing: -1px;
    border-top: 1px solid var(--gray-lt);
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 0px;
  }
  .desc-subtitle {
    font-family: var(--rc);
    font-weight: 700;
    color: #717E6A;
    font-size: 1.8em;
    letter-spacing: -1px;
    border-top: 1px solid var(--gray-lt);
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
  }
  .desc-body {
    font-family: var(--rc);
    font-weight: 400;
    color: var(--gray);
    font-size: 1.4em;
    text-align: justify;
    line-height: 1.2;
  }
  .desc-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border-left: 3px solid var(--gray-lt); */
    padding-left: 32px;
  }
  .desc-accent-num {
    font-family: var(--nj);
    font-weight: 900;
    font-size: 8vh;
    color: var(--brown);
    letter-spacing: -3px;
    line-height: 1;
  }
  .desc-accent-label {
    font-family: var(--rc);
    font-weight: 300;
    font-size: 1.3em;
    color: var(--gray);
    margin-top: 4px;
  }

  /* ── STATS ── */
  .stats {
    background: #ffffff;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  .stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .stat-icon { width: 90px; height: 90px; flex-shrink: 0; }
  .stat-icon img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
  .stat-big {
    font-family: var(--nj);
    font-weight: 900;
    color: var(--brown);
    /* font-size: 8vh; */
    font-size: 5vh;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 0;
  }
  .stat-big-1 {
    font-family: var(--nj);
    font-weight: 900;
    color: var(--brown);
    /* font-size: 8vh; */
    font-size: 5vh;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 0;
  }
  
  .stat-small {
    font-family: var(--rc);
    font-weight: 400;
    color: var(--brown);
    font-size: 4vh;
    line-height: 1.2;
    margin-bottom: 0;
  }
  .stat-small-1 {
    font-family: var(--rc);
    font-weight: 400;
    color: var(--brown);
    font-size: 4vh;
    line-height: 1.2;
    margin-bottom: 0;
  }
  .stat-small-2 {
    font-family: var(--rc);
    font-weight: 400;
    color: var(--brown);
    font-size: 4vh;
    line-height: 1.2;
    margin-bottom: 0;
  }

  /* ── VIDEO ── */
  .video {
    padding: 0px 0px;
    display: block;
    align-items: center;
  }

  .video {
    width: 100%;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* ── CARACTERÍSTICAS ── */
  .caracteristicas {
    background: #fff;
    padding: 64px 60px;
  }
  .car-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
  }
  .car-title-icon { width: 50px; height: 80px; object-fit: contain; filter: grayscale(0.6); pointer-events: none; }
  .car-title-text {
    font-family: var(--an);
    font-weight: 700;
    color: #242B31;
    font-size: 2.4em;
    letter-spacing: -1px;
    line-height: 1.1;
  }
  .car-title-sub {
    font-family: var(--rc);
    font-weight: normal;
    color: #242B31;
    font-size: 1.9em;
    letter-spacing: -1px;
  }
  .car-full-img { width: 100%; display: block; margin-bottom: 40px; }
  .car-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    max-width: 860px;
    margin: 0 auto 48px;
  }
  .car-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .car-icon { width: 75px; height: 75px; flex-shrink: 0; }
  .car-icon img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
  .car-item span {
    font-family: var(--ns);
    font-weight: 400;
    font-size: 1.15em;
    color: var(--gray);
    line-height: 1.4;
  }
  .car-ctas {
    /* display: flex; */
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background-color: #F2F3F4;
    display: flex;
    flex-direction: column;
    padding: 35px 60px;
    border-radius: 35px;
    text-align: center;
    max-width: 1110px;
    margin: 0 auto;
  }
  .car-ctas a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--rc);
    font-size: 1.1em;
    font-weight: 400;
    color: #fff;
    background: var(--forest);
    border-radius: 10px;
    padding: 10px 20px;
    transition: background 0.2s;
  }
  .car-ctas a:hover { background: var(--forest2); }
  .car-ctas a img { height: 25px; width: auto; }

  /* ── GALERÍA / MAPA ── */
  .galeria {
    position: relative;
    min-height: 320px;
  }
  .galeria-carousel {
    position: relative;
    overflow: hidden;
  }
  .galeria-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
  }
  .galeria-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .galeria-slide img,
  .mapa img {
    width: 100%;
    display: block;
    border-radius: 20px;
    padding: 0 10px 0 10px;
    pointer-events: none;
  }
  .galeria-controls {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    width: auto;
  }
  .galeria-button {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    /* background: rgba(255,255,255,0.94); */
    background: rgba(255,255,255,0.5);
    color: var(--brown);
    /* box-shadow: 0 8px 20px rgba(0,0,0,0.16); */
    box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .galeria-button:hover {
    transform: translateY(-1px);
    background: #fff;
  }
  .galeria-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .galeria-mapa-container {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
  }
  .galeria, .mapa {
    flex: 1;
  }
  .mapa {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .mapa-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
  }
  .mapa img {
    display: block;
    width: 100%;
    transition: transform 0.35s ease-out;
    will-change: transform;
    transform-origin: center;
    transform: translateY(0) scale(1.08);
  }

  /* ── FORM SECTION ── */
  .form-section {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .form-left { position: relative; overflow: hidden; }
  .form-left img.advisor-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
  }
  .form-right {
    /* padding: 52px 48px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    margin-top: 40px;
  }
  .form-right h3 {
    font-family: var(--rc);
    font-weight: 700;
    color: #4D554E;
    font-size: 1.5em;
    letter-spacing: -1px;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 24px;
  }
  /* contact card matching .contactoContainer */
  .contact-card {
    /* background: #fff;
    max-width: 380px;
    width: 100%;
    border-radius: 16px;
    padding: 20px 16px 28px;
    box-shadow: 0 5px 16px -7px rgba(0,0,0,0.75);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; */
    background: #fff;
    max-width: 380px;
    width: 100%;
    border-radius: 16px;
    padding: 20px 26px 8px;
    box-shadow: 0 5px 16px -7px rgba(0, 0, 0, 0.75);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .contact-card .advisor-thumb {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    pointer-events: none;
  }
  .contact-card form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-card input,
  .contact-card select,
  .contact-card textarea {
    font-family: var(--rc);
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 10px;
    outline: none;
    color: #333;
    transition: border-color 0.2s;
  }
  .contact-card input { height: 44px; }
  .contact-card select { height: 44px; }
  .contact-card textarea { min-height: 90px; resize: vertical; }
  .contact-card input:focus,
  .contact-card select:focus,
  .contact-card textarea:focus { border-color: var(--blue); }
  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--ns);
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    width: 100%;
  }
  .form-check input[type="checkbox"] {
    width: 13px; height: 13px;
    flex-shrink: 0; margin-top: 2px;
    accent-color: var(--blue); cursor: pointer;
  }
  .contact-card button[type="submit"] {
    /* font-family: var(--rc);
    font-size: 1.15em;
    width: 100%;
    height: 50px;
    background: #005F82;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px; */

    font-family: var(--rc);
    font-size: 1em;
    width: 100%;
    height: 50px;
    background: #005F82;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    padding: 0 8px;
  }
  .contact-card button[type="submit"]:hover { background: #0078A3; }

  /* expand arrow */
  .arrow-down { width: 40px; display: block; margin: 0 auto 8px; }

  /* ── FOOTER ── */
  footer {
    /* background: var(--footer-bg);
    color: var(--gray);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 32px;
    padding: 52px 60px; */
    /* background: var(--footer-bg); */

    background-color: #e9ebec;
    background-image: url(images/footerbg.jpg);
    background-position-y: bottom;
    background-repeat: repeat-x;
    background-size: auto;

    /* background: var(--footer-bg); */
    color: var(--gray);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 52px 60px 0px 60px;
  }
  .footer-logo img { width: 105%; max-width: 210px; margin-bottom: 16px; margin: 0 auto; pointer-events: none; }
  .footer-tagline {
    font-family: var(--rc);
    font-weight: 700;
    color: var(--green);
    font-size: 1.8em;
    letter-spacing: -1px;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .footer-sub {
    font-family: var(--rc);
    font-size: 1.3em;
    color: var(--gray);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .footer-phone {
    font-family: var(--rc);
    font-weight: 700;
    color: var(--green);
    font-size: 1.8em;
    letter-spacing: -1px;
    display: block;
  }
  .footer-web {
    font-family: var(--rc);
    font-weight: 400;
    color: var(--gray);
    font-size: 1.2em;
    display: block;
  }
  .footer-advisor img { width: 16em; display: block; margin: 0 auto; pointer-events: none; }
  .footer-links-col {}
  .footer-links-title {
    font-family: var(--rc);
    font-weight: 700;
    color: var(--green);
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  .footer-links-col ul { list-style: none; }
  .footer-links-col ul li { margin-bottom: 6px; }
  .footer-links-col ul li a {
    font-family: var(--rc);
    font-weight: 400;
    color: var(--gray);
    font-size: 1.2em;
    letter-spacing: -1px;
    transition: color 0.2s;
  }
  .footer-links-col ul li a:hover { color: var(--green); }
  .footer-copy {
    background: #d4d6d7;
    text-align: center;
    padding: 14px;
    font-family: var(--rc);
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 1px;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── VIDEO MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 999;
    align-items: center;
    justify-content: center;
  }
  .modal-overlay.active { display: flex; }
  .modal-box { position: relative; width: min(880px, 92vw); background: #000; }
  .modal-box iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
  .modal-close {
    position: absolute;
    top: -38px; right: 0;
    background: none; border: none;
    color: #fff; font-size: 22px;
    cursor: pointer; opacity: 0.8;
    font-family: var(--rc);
  }
  .modal-close:hover { opacity: 1; }

  /* ── WHATSAPP FIXED ── */
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: max(20px, env(safe-area-inset-right));
    left: auto;
    max-width: calc(100vw - 40px);
    background: #25d366;
    border-radius: 40px;
    padding: 13px 16px;
    z-index: 1010;
    cursor: pointer;
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,.19);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--rc);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
  }
  .whatsapp-btn:hover { transform: scale(1.05); }
  .whatsapp-btn svg { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }


  /* ── ACORDEÓN ── */
  .form-accordion {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease;
  }
  .form-accordion.open {
    max-height: 800px;   /* suficientemente grande */
    opacity: 1;
  }
  .form-accordion form {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 8px;
  }
  .contactoContainerInfo {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
  }
  .toggle-arrow {
    /* position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
    line-height: 0;
    transition: filter 0.2s; */
    position: relative;
    bottom: 20px;
    /* transform: translate(-50%, 50%); */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px;
    z-index: 20;
    line-height: 0;
    transition: filter 0.2s;
    margin: 0 auto;
  }
  .toggle-arrow:hover { filter: brightness(0.7); }
  .toggle-arrow img {
    width: 40px;
    display: block;
    transition: transform 0.35s ease;
  }
  /* Cuando el formulario está abierto, rota la flecha 180° */
  .toggle-arrow.open img {
    transform: rotate(180deg);
  }
  .field-group {
    display: flex;
    flex-direction: column;
    padding: 6px 0;
  }
  .field-group label {
    font-family: var(--rc);
    font-size: 14px;
    color: #555;
    margin-bottom: 3px;
  }
  .field-group input, .field-group select, .field-group textarea {
    font-family: var(--rc);
    font-size: 14px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 12px;
    height: 43px;
    outline: none;
    color: #333;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }
  .field-group-checkbox{
    display: flex;
    flex-direction: row;
    padding: 6px 0;
  }

  /* ── Validación de formulario ── */
  .input-error { border-color: #b00020 !important; outline-color: #b00020 !important; }
  .field-error { display: block; color: #b00020; font-size: 0.78rem; margin-top: 4px; }
  #cf-politicas.input-error + label { color: #b00020; }
  .btn-submit:disabled { opacity: 0.75; cursor: not-allowed; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 10px 16px; }
    nav ul li a { font-size: 13px; padding: 0 12px; }
    nav .logo img { height: 28px; pointer-events: none; }

    .ta-center-mobileOnly {
      text-align: center;
    }

    /* --- Project title -- */
    .project-title {
        background-color: #f6f5f0;
        margin-top: 46px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-evenly;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 12px;
    }

    .hero-img.desktop { display: none; }
    .hero-img.mobile  { display: block; }
    .hero-project-logo { width: min(300px, 100%); }
    .hero-actions { gap: 20px; }
    .hero-action .icon-wrap { width: 55px; height: 40px; }
    .hero-action .icon-wrap img { width: 55px; height: 40px; }

    .description {
      grid-template-columns: 1fr;
      padding: 40px 20px;
      gap: 84px;
    }
    .desc-accent { 
      border-left: none; 
      /* border-top: 3px solid var(--gray-lt);  */
      padding-left: 0; 
      padding-top: 20px; 
    }

    .stats { 
      /* padding: 40px 20px; gap: 28px; flex-direction: column; align-items: flex-start;  */
      padding: 80px 20px 20px 20px;
      gap: 28px;
      flex-direction: row;
      align-items: flex-start;
    }
    .stat-item {
      display: flex;
      gap: 14px;
      flex-direction: column;
      flex-wrap: nowrap;
      align-content: center;
      justify-content: center;
      align-items: center;
    }
    .stat-big { font-size: 6vh; }
    .stat-big-1 { font-size: 6vh; }
    .stat-small { font-size: 4vh; }
    .stat-small-2 {
      font-family: var(--rc);
      font-weight: 300;
      color: var(--brown);
      font-size: 3.7vh;
      line-height: 1.2;
      margin-bottom: 0;
    }
      /* ── VIDEO ── */
    .video {
      padding: 0px 0px;
      display: block;
      align-items: center;
    }

    .video {
      width: 100%;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 aspect ratio */
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .caracteristicas { padding: 44px 20px; }
    .car-grid { grid-template-columns: 1fr; gap: 16px; }
    .car-title-row { flex-direction: column; text-align: center; gap: 0px; }

    .form-section { grid-template-columns: 1fr; }
    .form-left { max-height: 240px; }
    .form-right { padding: 32px 16px; }

    footer {
      grid-template-columns: 1fr;
      padding: 40px 20px;
      gap: 28px;
    }
    .footer-advisor { display: none; }

    .car-ctas { flex-direction: column; align-items: center; }
    .car-ctas a { width: 100%; max-width: 300px; justify-content: center; margin-bottom: 20px;}

    .galeria-mapa-container {
      flex-direction: column;
    }
    .galeria-controls {
      position: absolute;
      left: 50%;
      bottom: 4px;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
      pointer-events: none;
      width: auto;
    }
    .galeria-carousel {
      position: relative;
      overflow: hidden;
      min-height: 390px;
    }
    .galeria {
      position: relative;
      min-height: 390px;
    }

  }

  @media (max-width: 480px) {
    nav ul { display: none; }
    .desc-big { font-size: 5vh; }
  }