/* ═══════════════════════════════════════════
   SEVEN DRIVE — Premium Transport & Tourism
   Style Sheet v2.0
═══════════════════════════════════════════ */

:root {
  --azul:       #002B5B;
  --azul-mid:   #003D7A;
  --azul-light: #1A6FC4;
  --laranja:    #FF6B00;
  --laranja-l:  #FF8C38;
  --branco:     #FFFFFF;
  --cinza-1:    #F4F6FA;
  --cinza-2:    #E8ECF4;
  --cinza-texto:#6B7A99;
  --texto:      #0D1B2A;
  --radius:     14px;
  --shadow:     0 8px 40px rgba(0,43,91,.12);
  --shadow-lg:  0 20px 60px rgba(0,43,91,.18);
  --trans:      all .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--texto);
  background: var(--branco);
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 700;
  font-size: .95rem; letter-spacing: .3px; text-decoration: none;
  border: none; cursor: pointer; transition: var(--trans);
}
.btn-primary {
  background: linear-gradient(135deg, var(--laranja), var(--laranja-l));
  color: #fff; box-shadow: 0 8px 24px rgba(255,107,0,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,107,0,.45); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark {
  background: var(--azul); color: #fff;
  box-shadow: 0 8px 24px rgba(0,43,91,.25);
}
.btn-dark:hover { background: var(--azul-mid); transform: translateY(-2px); }

.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,107,0,.1); color: var(--laranja);
  border: 1px solid rgba(255,107,0,.2);
  padding: 6px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--azul); line-height: 1.15; margin-bottom: 16px;
}
.section-title span { color: var(--laranja); }
.section-sub {
  font-size: 1.05rem; color: var(--cinza-texto);
  max-width: 580px; line-height: 1.7;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(0,27,58,.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 56px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85); text-decoration: none;
  font-weight: 600; font-size: .9rem;
  padding: 8px 16px; border-radius: 8px;
  transition: var(--trans); letter-spacing: .2px;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff; background: rgba(255,255,255,.1);
}
.nav-links .nav-cta {
  background: var(--laranja); color: #fff !important;
  border-radius: 50px; padding: 10px 22px;
  box-shadow: 0 4px 16px rgba(255,107,0,.4);
}
.nav-links .nav-cta:hover { background: var(--laranja-l); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #001B3A 0%, #002B5B 45%, #003D7A 70%, #00509E 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,107,0,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(26,111,196,.15) 0%, transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,.15); color: var(--laranja-l);
  border: 1px solid rgba(255,107,0,.3);
  padding: 8px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { content:''; width:8px; height:8px; background:var(--laranja); border-radius:50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero h1 span { color: var(--laranja); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,.75);
  line-height: 1.8; margin-bottom: 36px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-size: 1.8rem; font-weight: 900; color: #fff;
}
.hero-stat-num span { color: var(--laranja); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 600; letter-spacing: .5px; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-img-wrap {
  position: relative; width: 100%; max-width: 500px;
}
.hero-img-wrap img {
  width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
  animation: float-logo 4s ease-in-out infinite;
}
@keyframes float-logo { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.hero-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--azul); padding: 24px 0;
}
.features-strip-inner {
  display: flex; gap: 40px; align-items: center;
  overflow: hidden;
}
.feature-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}
.feature-item svg { color: var(--laranja); flex-shrink: 0; }
.feature-sep { color: rgba(255,255,255,.2); font-size: 1.4rem; flex-shrink: 0; }

/* ── SERVICES ── */
.services { padding: 100px 0; background: var(--cinza-1); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px 30px; box-shadow: var(--shadow);
  transition: var(--trans); border: 1px solid var(--cinza-2);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--azul), var(--azul-light));
  transform: scaleX(0); transform-origin: left;
  transition: var(--trans);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.highlight { background: linear-gradient(135deg, var(--azul), var(--azul-mid)); }
.service-card.highlight .service-icon { background: rgba(255,255,255,.15); }
.service-card.highlight h3, .service-card.highlight p { color: #fff; }
.service-card.highlight p { color: rgba(255,255,255,.75); }
.service-card.highlight::before { display: none; }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(0,43,91,.06); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px; font-size: 2rem;
}
.service-card h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--azul);
  margin-bottom: 10px;
}
.service-card p { color: var(--cinza-texto); line-height: 1.7; font-size: .9rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--laranja); font-weight: 700; font-size: .85rem;
  text-decoration: none; margin-top: 20px; transition: var(--trans);
}
.service-link:hover { gap: 10px; }

/* ── WHY US ── */
.why-us { padding: 100px 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual {
  position: relative;
  background: linear-gradient(135deg, var(--azul), var(--azul-light));
  border-radius: 24px; padding: 60px 40px; overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
}
.why-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,107,0,.15); border-radius: 50%;
}
.why-stat-box {
  background: rgba(255,255,255,.1); border-radius: 12px;
  padding: 20px 24px; backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
}
.why-stat-box .num { font-size: 2.2rem; font-weight: 900; color: #fff; }
.why-stat-box .num span { color: var(--laranja); }
.why-stat-box .label { color: rgba(255,255,255,.65); font-size: .85rem; font-weight: 600; }
.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,107,0,.08); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem;
}
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--azul); margin-bottom: 4px; }
.why-item p { color: var(--cinza-texto); font-size: .875rem; line-height: 1.6; }

/* ── PORTUGAL STRIP ── */
.portugal-strip {
  background: linear-gradient(135deg, #004D20 0%, #006630 50%, #CC0000 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.portugal-strip::before {
  content: '🇵🇹';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 8rem; opacity: .1;
}
.portugal-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.portugal-text h2 {
  font-size: 2.2rem; font-weight: 900; color: #fff; margin-bottom: 10px;
}
.portugal-text p { color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.7; max-width: 500px; }
.portugal-destinations {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.dest-tag {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; backdrop-filter: blur(10px);
  white-space: nowrap;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: var(--cinza-1); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid var(--cinza-2);
}
.testi-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; }
.testi-text { color: var(--cinza-texto); font-size: .9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azul), var(--azul-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem;
}
.testi-name { font-weight: 700; color: var(--azul); font-size: .9rem; }
.testi-location { font-size: .75rem; color: var(--cinza-texto); }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(0,43,91,.06); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
}
.contact-item h4 { font-size: .85rem; color: var(--cinza-texto); font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 1rem; color: var(--azul); font-weight: 700; }
.contact-form {
  background: var(--cinza-1); border-radius: 20px; padding: 40px;
  border: 1px solid var(--cinza-2);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 700;
  color: var(--azul); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--cinza-2); border-radius: 10px;
  font-family: inherit; font-size: .9rem; color: var(--texto);
  background: #fff; transition: var(--trans); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul-light);
  box-shadow: 0 0 0 3px rgba(26,111,196,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
footer {
  background: #001122; padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-logo img { height: 60px; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.6); text-decoration: none;
  font-size: .85rem; transition: var(--trans);
}
.social-btn:hover { background: var(--laranja); color: #fff; }
.footer-col h4 {
  color: #fff; font-size: .85rem; font-weight: 700;
  letter-spacing: .5px; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5); text-decoration: none;
  font-size: .875rem; transition: var(--trans);
}
.footer-links a:hover { color: var(--laranja); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.3); font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--laranja); }

/* ── TURISMO PAGE ── */
.turismo-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #001B3A 0%, #002B5B 50%, #006B3C 100%);
  display: flex; align-items: center;
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.turismo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.portugal-flag-strip {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #006B3C 0%, #006B3C 38%, #CC0000 38%, #CC0000 62%, #FFD700 62%, #FFD700 100%);
  opacity: .6;
}
.turismo-hero-content { text-align: center; }
.turismo-hero h1 { font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 900; color: #fff; margin-bottom: 20px; }
.turismo-hero p { font-size: 1.15rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 36px; line-height: 1.8; }

/* Destinations */
.destinations { padding: 100px 0; background: var(--cinza-1); }
.destinations-header { text-align: center; margin-bottom: 60px; }
.destinations-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.dest-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--trans);
  position: relative; cursor: pointer;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-img {
  height: 220px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.dest-img.lisboa { background: linear-gradient(135deg, #E8A87C, #C17D4A); }
.dest-img.porto   { background: linear-gradient(135deg, #8B4513, #A0522D); }
.dest-img.algarve { background: linear-gradient(135deg, #2196F3, #0D47A1); }
.dest-img.sintra  { background: linear-gradient(135deg, #4CAF50, #1B5E20); }
.dest-img.douro   { background: linear-gradient(135deg, #795548, #4E342E); }
.dest-img.madeira { background: linear-gradient(135deg, #00BCD4, #006064); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
}
.dest-overlay h3 { color: #fff; font-size: 1.3rem; font-weight: 800; }
.dest-overlay p { color: rgba(255,255,255,.75); font-size: .8rem; margin-top: 4px; }
.dest-body { background: #fff; padding: 20px 24px; }
.dest-body p { color: var(--cinza-texto); font-size: .875rem; line-height: 1.65; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.dest-tag-sm {
  background: rgba(0,43,91,.07); color: var(--azul);
  padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600;
}

/* Gallery */
.gallery { padding: 100px 0; background: #fff; }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}
.gallery-item {
  border-radius: 14px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: var(--trans);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; font-size: 6rem; }
.gallery-item.g1 { background: linear-gradient(135deg,#E8A87C,#C17D4A); }
.gallery-item.g2 { background: linear-gradient(135deg,#4CAF50,#1B5E20); }
.gallery-item.g3 { background: linear-gradient(135deg,#2196F3,#0D47A1); }
.gallery-item.g4 { background: linear-gradient(135deg,#795548,#4E342E); }
.gallery-item.g5 { background: linear-gradient(135deg,#9C27B0,#4A148C); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item-overlay span { color: #fff; font-size: .875rem; font-weight: 700; }

/* Add Photos */
.add-photos { padding: 80px 0; background: var(--cinza-1); }
.add-photos-inner {
  background: #fff; border-radius: 24px; padding: 60px;
  box-shadow: var(--shadow); text-align: center;
}
.upload-zone {
  border: 2px dashed var(--cinza-2); border-radius: 16px;
  padding: 48px; margin: 32px auto; max-width: 500px;
  cursor: pointer; transition: var(--trans);
  background: var(--cinza-1);
}
.upload-zone:hover { border-color: var(--azul-light); background: rgba(26,111,196,.04); }
.upload-icon { font-size: 3rem; margin-bottom: 12px; }
.upload-zone p { color: var(--cinza-texto); font-size: .9rem; }
.upload-zone strong { color: var(--azul); }

/* Transport Services Turismo */
.transport-services { padding: 100px 0; background: var(--azul); }
.transport-services .section-title { color: #fff; }
.transport-services .section-sub { color: rgba(255,255,255,.7); }
.transport-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.transport-card {
  background: rgba(255,255,255,.06); border-radius: 20px;
  padding: 36px 28px; border: 1px solid rgba(255,255,255,.1);
  transition: var(--trans); text-align: center;
}
.transport-card:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); }
.transport-card .t-icon { font-size: 2.5rem; margin-bottom: 16px; }
.transport-card h3 { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.transport-card p { color: rgba(255,255,255,.65); font-size: .875rem; line-height: 1.65; }
.transport-card .price {
  display: inline-block; margin-top: 16px;
  background: var(--laranja); color: #fff;
  padding: 6px 20px; border-radius: 50px; font-size: .85rem; font-weight: 700;
}

/* ── SHARED SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 900; color: var(--azul); margin: 12px 0 16px; }
.section-header p { color: var(--cinza-texto); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.8; }
.section-badge {
  display: inline-block; background: rgba(0,43,91,.07); color: var(--azul);
  padding: 6px 18px; border-radius: 50px; font-size: .8rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
}

/* ── BTN SIZES ── */
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-outline-dark {
  background: transparent; color: var(--azul);
  border: 2px solid var(--azul);
}
.btn-outline-dark:hover { background: var(--azul); color: #fff; }

/* ── TURISMO HERO ── */
.turismo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(255,255,255,.2);
}
.turismo-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.turismo-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,107,60,.3) 0%, transparent 60%);
  pointer-events: none;
}
.turismo-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.turismo-hero-wave svg { width: 100%; height: 80px; }

/* ── DESTINOS ── */
.destinos-section { padding: 100px 0; background: var(--cinza-1); }
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.destino-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--trans);
}
.destino-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.destino-featured { grid-column: span 2; grid-row: span 2; }
.destino-img-wrap { position: relative; height: 200px; overflow: hidden; }
.destino-featured .destino-img-wrap { height: 100%; min-height: 280px; }
.destino-img { width: 100%; height: 100%; }
.destino-foto { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.destino-img-wrap:hover .destino-foto { transform: scale(1.06); }
.destino-lisboa  { background: linear-gradient(135deg, #E8A87C 0%, #C17D4A 100%); }
.destino-porto   { background: linear-gradient(135deg, #A0522D 0%, #6B2D1F 100%); }
.destino-algarve { background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%); }
.destino-sintra  { background: linear-gradient(135deg, #388E3C 0%, #1B5E20 100%); }
.destino-douro   { background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%); }
.destino-madeira { background: linear-gradient(135deg, #00ACC1 0%, #006064 100%); }
.destino-acores  { background: linear-gradient(135deg, #7B1FA2 0%, #4A148C 100%); }
.destino-alentejo{ background: linear-gradient(135deg, #F9A825 0%, #E65100 100%); }
.destino-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  display: flex; align-items: flex-start; justify-content: flex-end; padding: 14px;
}
.destino-flag { font-size: 1.8rem; }
.destino-body { padding: 20px 24px; }
.destino-region { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--laranja); margin-bottom: 6px; }
.destino-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--azul); margin-bottom: 8px; }
.destino-body p { font-size: .85rem; color: var(--cinza-texto); line-height: 1.65; margin-bottom: 14px; }
.destino-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.destino-tags span {
  background: rgba(0,43,91,.07); color: var(--azul);
  padding: 3px 10px; border-radius: 50px; font-size: .72rem; font-weight: 600;
}

/* ── GALERIA ── */
.galeria-section { padding: 100px 0; background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
  margin-bottom: 60px;
}
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; transition: var(--trans); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: 28px 16px 12px;
}
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600;
}
.gallery-placeholder svg { width: 40px; height: 40px; opacity: .6; }
.gp-1 { background: linear-gradient(135deg, #E8A87C, #C17D4A); }
.gp-2 { background: linear-gradient(135deg, #8B4513, #6B2D1F); }
.gp-3 { background: linear-gradient(135deg, #388E3C, #1B5E20); }
.gp-4 { background: linear-gradient(135deg, #1976D2, #0D47A1); }
.gp-5 { background: linear-gradient(135deg, #5D4037, #3E2723); }
.gp-6 { background: linear-gradient(135deg, #00ACC1, #006064); }

/* Upload zone overrides for turismo */
.upload-zone {
  border: 2px dashed var(--cinza-2); border-radius: 20px;
  padding: 48px 36px; text-align: center;
  cursor: pointer; transition: var(--trans);
  background: var(--cinza-1); max-width: 560px; margin: 0 auto;
}
.upload-zone:hover { border-color: var(--laranja); background: rgba(255,107,0,.04); }
.upload-zone .upload-icon { margin-bottom: 16px; color: var(--azul-light); }
.upload-zone .upload-icon svg { width: 48px; height: 48px; }
.upload-zone h3 { font-size: 1.2rem; font-weight: 800; color: var(--azul); margin-bottom: 8px; }
.upload-zone p { color: var(--cinza-texto); font-size: .9rem; margin-bottom: 20px; }
.upload-hint { display: block; margin-top: 14px; font-size: .78rem; color: var(--cinza-texto); }

/* ── TRANSPORTE SECTION (light) ── */
.transporte-section { padding: 100px 0; background: var(--cinza-1); }
.transporte-section .transport-grid { grid-template-columns: repeat(3,1fr); margin-top: 0; }
.transporte-section .transport-card {
  background: #fff; border: none;
  box-shadow: var(--shadow); text-align: left;
}
.transporte-section .transport-card:hover { background: #fff; transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.transport-icon { font-size: 2.5rem; margin-bottom: 16px; }
.transporte-section .transport-card h3 { color: var(--azul); font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.transporte-section .transport-card p { color: var(--cinza-texto); font-size: .875rem; line-height: 1.65; margin-bottom: 16px; }
.transport-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.transport-features li { font-size: .82rem; color: var(--cinza-texto); font-weight: 500; }
.transport-card-highlight {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-mid) 100%) !important;
  position: relative;
}
.transport-card-highlight h3, .transport-card-highlight p, .transport-card-highlight li { color: rgba(255,255,255,.9) !important; }
.transport-card-highlight:hover { background: linear-gradient(135deg, var(--azul) 0%, var(--azul-mid) 100%) !important; }
.transport-badge-top {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--laranja); color: #fff;
  padding: 4px 16px; border-radius: 50px; font-size: .72rem; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase; white-space: nowrap;
}

/* ── CTA SECTION ── */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--azul) 0%, var(--azul-mid) 100%); }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-section .btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--laranja); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(255,107,0,.4);
  transition: var(--trans); opacity: 0; pointer-events: none;
  cursor: pointer; z-index: 999;
}
.back-to-top svg { width: 22px; height: 22px; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); }

/* ── BACK TO TOP (legacy) ── */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--laranja); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; text-decoration: none;
  box-shadow: 0 8px 24px rgba(255,107,0,.4);
  transition: var(--trans); opacity: 0; pointer-events: none;
  z-index: 999;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-4px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 280px; margin: 0 auto; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portugal-strip-inner { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 72px; background: rgba(0,27,58,.97); backdrop-filter: blur(20px); padding: 32px 24px; gap: 8px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .add-photos-inner { padding: 32px 20px; }
  .destinos-grid { grid-template-columns: 1fr; }
  .destino-featured { grid-column: span 1; grid-row: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .transporte-section .transport-grid { grid-template-columns: 1fr; }
  .turismo-hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; }
}