:root {
  --bg: #030303;
  --bg-soft: #0b0b0b;
  --bg-panel: #121212;
  --gold: #dca127;
  --gold-light: #f2c75a;
  --gold-dark: #8f6417;
  --text: #f6f3ec;
  --muted: #bdb7aa;
  --line: rgba(242, 199, 90, 0.22);
  --line-strong: rgba(242, 199, 90, 0.44);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #070707;
  background: var(--gold-light);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(242, 199, 90, 0.18);
  background: rgba(3, 3, 3, 0.86);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(168px, 20vw, 265px);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown {
  position: relative;
}

.nav-links a {
  min-width: 92px;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(220, 161, 39, 0.1);
}

.submenu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 120;
  display: grid;
  min-width: 285px;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .submenu-panel,
.nav-dropdown:focus-within .submenu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu-panel a {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
  white-space: normal;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  margin-top: var(--header-height);
  overflow: hidden;
  background: #030303;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide:first-child img {
  object-position: center center;
}

.hero-slide:nth-child(2) img {
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.6) 44%, rgba(3, 3, 3, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.08) 58%, rgba(3, 3, 3, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 118px) 0 clamp(92px, 10vw, 132px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 5.4vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 5.8rem;
  font-weight: 800;
  max-width: 880px;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.72);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-text,
.section-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-actions,
.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 34px rgba(220, 161, 39, 0.22);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(220, 161, 39, 0.12);
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.slider-arrow,
.slider-dot {
  border: 1px solid var(--line-strong);
  background: rgba(3, 3, 3, 0.62);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slider-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 2rem;
  line-height: 1;
}

.slider-arrow:hover,
.slider-arrow:focus-visible,
.slider-dot:hover,
.slider-dot:focus-visible {
  border-color: var(--gold-light);
  background: rgba(220, 161, 39, 0.14);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 34px;
  height: 9px;
  border-radius: 99px;
  padding: 0;
}

.slider-dot.is-active {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.trust-strip {
  padding: 24px 0;
  border-block: 1px solid var(--line);
  background: #080808;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid div {
  min-height: 94px;
  padding: 20px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.02rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(38px, 7vw, 88px);
  align-items: start;
}

.section-copy {
  max-width: 720px;
}

.section-copy p {
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold-light);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.values-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.value-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.45);
}

.value-item span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-weight: 800;
}

.value-item p,
.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.wide-image-section {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #000000;
}

.wide-image-section img {
  width: 100%;
  height: auto;
  display: block;
}

.wide-image-section .wide-image-mobile {
  display: none;
}

.europe-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(115deg, rgba(3, 3, 3, 1) 0%, rgba(8, 8, 8, 0.94) 48%, rgba(34, 25, 9, 0.84) 100%);
}

.europe-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 199, 90, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(242, 199, 90, 0.05) 0 1px, transparent 1px 100%);
  background-size: 120px 120px;
  opacity: 0.32;
  pointer-events: none;
}

.europe-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.europe-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.route-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.46);
}

.route-card strong,
.route-card span {
  display: block;
}

.route-card strong {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.05rem;
}

.route-card span {
  color: var(--muted);
}

.route-card-featured {
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(242, 199, 90, 0.14), rgba(3, 3, 3, 0.48));
}

.route-card-featured strong {
  color: var(--gold-light);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-tags span {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(242, 199, 90, 0.24);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.32);
  font-size: 0.92rem;
  font-weight: 800;
}

.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #030303;
}

.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
}

.services-section::before {
  z-index: -2;
  background: url("assets/servicos-fundo-carros.jpg") center center / cover no-repeat;
}

.services-section::after {
  z-index: -1;
  background: rgba(0, 0, 0, 0.74);
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(242, 199, 90, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(220, 161, 39, 0.08);
}

.service-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-weight: 800;
}

.service-cta {
  justify-content: space-between;
  margin-top: 20px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.service-cta p {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-section {
  background:
    linear-gradient(115deg, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 55%, rgba(27, 20, 8, 0.88) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
}

.contact-details a {
  width: fit-content;
  color: var(--gold-light);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.two-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(242, 199, 90, 0.16);
}

textarea::placeholder {
  color: rgba(246, 243, 236, 0.48);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 76px 0 30px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(3, 3, 3, 1) 0%, rgba(10, 10, 10, 1) 54%, rgba(30, 22, 8, 0.92) 100%);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 168px;
  margin-bottom: 54px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 199, 90, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.32);
  box-shadow: var(--shadow);
}

.footer-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(5, minmax(145px, 1fr));
  gap: 30px;
  align-items: start;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 240px;
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 199, 90, 0.24);
  border-radius: var(--radius);
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.32);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-column,
.footer-nav {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 210px;
}

.footer-column h2,
.footer-nav h2 {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-size: 0.9rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-nav a,
.footer-bottom a {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold-light);
}

.footer-column p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-service-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-service-bar div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(242, 199, 90, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.footer-service-bar strong,
.footer-service-bar span {
  display: block;
}

.footer-service-bar strong {
  margin-bottom: 7px;
  color: var(--text);
  font-size: 1rem;
}

.footer-service-bar span {
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
}

.page-hero,
.quote-section {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
  background: #030303;
}

.page-hero {
  margin-top: var(--header-height);
}

.page-hero img,
.quote-section img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-transport-hero img {
  object-position: center center;
}

.page-hero-overlay,
.quote-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.42) 100%);
}

.page-hero-content,
.quote-content {
  padding: clamp(78px, 10vw, 130px) 0;
}

.page-hero-content h1 {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 6rem);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.76);
}

.page-hero-content p,
.quote-content p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.advantages-section {
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 1), rgba(3, 3, 3, 1));
}

.iberia-advantages-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #030303;
}

.iberia-advantages-bg::before,
.iberia-advantages-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.iberia-advantages-bg::before {
  z-index: -2;
  background: url("assets/slide-carros-europa.png") center center / cover no-repeat;
}

.iberia-advantages-bg::after {
  z-index: -1;
  background: rgba(0, 0, 0, 0.76);
}

.iberia-advantages-bg > .container {
  position: relative;
  z-index: 1;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage-card {
  min-height: 265px;
  padding: 24px;
  border: 1px solid rgba(242, 199, 90, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.advantage-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-weight: 800;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
}

.countries-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(115deg, rgba(3, 3, 3, 1) 0%, rgba(8, 8, 8, 0.98) 52%, rgba(30, 22, 8, 0.9) 100%);
}

.countries-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.countries-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.countries-media {
  display: grid;
  gap: 14px;
}

.countries-media img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.countries-panel span,
.countries-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(242, 199, 90, 0.26);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.34);
  font-size: 0.9rem;
  font-weight: 800;
}

.countries-panel a {
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.countries-panel a:hover,
.countries-panel a:focus-visible {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(220, 161, 39, 0.12);
}

.homepage-countries a {
  min-height: 42px;
  justify-content: center;
}

.homepage-routes-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 199, 90, 0.22), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(143, 100, 23, 0.28), transparent 32%),
    linear-gradient(135deg, #030303 0%, #11100d 42%, #201706 100%);
}

.homepage-routes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 199, 90, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%);
  background-size: 92px 92px;
  opacity: 0.32;
  pointer-events: none;
}

.homepage-routes-section > .container {
  position: relative;
  z-index: 1;
}

.homepage-routes-section .countries-panel {
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.quote-section {
  min-height: 560px;
}

.quote-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.64) 52%, rgba(0, 0, 0, 0.26) 100%),
    rgba(0, 0, 0, 0.28);
}

.quote-content h2 {
  max-width: 780px;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.72);
}

.iberia-hero img {
  object-position: center center;
}

.page-hero-content .iberia-main-title {
  max-width: 720px;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.08;
}

.iberia-route-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(115deg, rgba(3, 3, 3, 1) 0%, rgba(10, 10, 10, 0.98) 55%, rgba(34, 25, 9, 0.88) 100%);
}

.iberia-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.iberia-route-grid .route-card {
  min-height: 210px;
}

.iberia-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.iberia-highlight .section-copy {
  max-width: 760px;
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 8, 8, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    min-height: 48px;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .submenu-panel {
    position: static;
    min-width: 0;
    padding: 8px;
    border-color: rgba(242, 199, 90, 0.16);
    background: rgba(0, 0, 0, 0.28);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu-panel a {
    min-height: 42px;
    padding-left: 18px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.72) 56%, rgba(3, 3, 3, 0.22) 100%),
      linear-gradient(0deg, rgba(3, 3, 3, 0.76) 0%, rgba(3, 3, 3, 0.12) 58%, rgba(3, 3, 3, 0.36) 100%);
  }

  .split-layout,
  .europe-grid,
  .countries-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .services-grid,
  .advantages-grid,
  .iberia-route-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .advantage-card {
    min-height: 0;
  }

  .page-hero,
  .quote-section {
    min-height: 580px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta,
  .iberia-highlight,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-service-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    width: 170px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .page-hero,
  .quote-section {
    min-height: 560px;
  }

  .page-hero-content h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .hero-content {
    padding: 58px 0 94px;
  }

  .hero-slide:first-child img {
    object-position: 62% center;
  }

  .slider-controls {
    bottom: 18px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-actions,
  .service-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-cta {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column,
  .footer-nav {
    min-height: 0;
  }

  .wide-image-section .wide-image-desktop {
    display: none;
  }

  .wide-image-section .wide-image-mobile {
    display: block;
  }

  .trust-grid div,
  .service-card,
  .advantage-card,
  .value-item {
    padding: 18px;
  }

  .form-row.two-columns {
    grid-template-columns: 1fr;
  }
}
