/* ==========================================================================
   Grife Rio — paleta extraída do site original (WordPress/Betheme):
   dourado #dbac00 (cor de destaque/tema), azul #0089f7 (apoio),
   navy #161922 (seções escuras/ícones), neutros #444/#626262/#f7f7f7
   ========================================================================== */

:root {
  --gold: #dbac00;
  --gold-dark: #b18b00;
  --gold-light: #f7e8b0;
  --blue: #0089f7;
  --navy: #161922;
  --navy-soft: #1f2330;
  --text: #444444;
  --text-soft: #626262;
  --bg: #ffffff;
  --bg-soft: #f9f9f7;
  --border: #e8e6df;

  --font-display: "Oswald", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --container: 1160px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(22, 25, 34, 0.08);
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0 0 1em; }

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(219, 172, 0, 0.35);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Topbar
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: #cfd2db;
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 24px;
}
.topbar__slogan { opacity: .85; }
.topbar__contact {
  display: flex;
  gap: 22px;
  flex-shrink: 0;
}
.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.topbar__contact a:hover { color: var(--gold); }
.topbar__contact svg { width: .95em; height: .95em; }

@media (max-width: 760px) {
  .topbar__slogan { display: none; }
  .topbar__inner { justify-content: center; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 16px rgba(22,25,34,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.logo { flex-shrink: 0; }
.logo img { height: 46px; width: auto; }

.nav { flex: 1; }
.nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--gold-dark); }

.header__cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 900px) {
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: 100px 32px 32px;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 22px; }
  .nav__link { color: #fff; }
  body.nav-open { overflow: hidden; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22,25,34,0.88) 0%, rgba(22,25,34,0.55) 55%, rgba(22,25,34,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: #e7e8ec;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__dots {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero__dots button.is-active { background: var(--gold); border-color: var(--gold); }

/* ==========================================================================
   Sections shared
   ========================================================================== */
.section { padding: 90px 0; }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.text-gold-eyebrow { color: var(--gold); }
.section__title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 46px;
}
.section__title--light { color: #fff; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why { background: var(--bg-soft); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22,25,34,0.12);
}
.why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--navy);
  margin-bottom: 18px;
}
.why__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why__card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why__card p { color: var(--text-soft); font-size: .93rem; margin: 0; }

@media (max-width: 900px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reserve strip
   ========================================================================== */
.reserve-strip {
  background: var(--navy);
  padding: 40px 0;
}
.reserve-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.reserve-strip h2 {
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin: 0;
}

/* ==========================================================================
   Empresa
   ========================================================================== */
.empresa__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.empresa__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.empresa__subtitle {
  font-size: 1.15rem;
  margin-top: 30px;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-soft);
  font-size: .96rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-light);
}
.check-list li::after {
  content: "✓";
  position: absolute;
  left: 3.5px;
  top: 2px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-dark);
}

@media (max-width: 860px) {
  .empresa__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Frota
   ========================================================================== */
.frota { background: var(--bg-soft); }
.frota__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.frota__item {
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow);
  aspect-ratio: 3/2;
}
.frota__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.frota__item:hover img { transform: scale(1.08); }
.frota__item::after {
  content: "＋";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(22,25,34,0.35);
  opacity: 0;
  transition: opacity var(--transition);
}
.frota__item:hover::after { opacity: 1; }

@media (max-width: 760px) {
  .frota__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .frota__grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,11,16,0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   Depoimentos
   ========================================================================== */
.depoimentos {
  background: var(--navy);
  color: #cfd2db;
  text-align: center;
}
.testimonial-slider { position: relative; max-width: 720px; margin: 0 auto; }
.testimonial-slider__track {
  position: relative;
  min-height: 260px;
}
.testimonial {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.testimonial.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}
.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
}
.testimonial figcaption {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: .5px;
  font-weight: 500;
}
.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.testimonial-slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.testimonial-slider__dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ==========================================================================
   Contato
   ========================================================================== */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contato__text { color: var(--text-soft); }
.contato__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.contato__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
}
.contato__list svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.form__row { display: grid; gap: 6px; }
.form__row label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.form__row input,
.form__row textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__row input:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(219,172,0,0.18);
}
.form__note {
  margin: 0;
  font-size: .88rem;
  color: var(--gold-dark);
  min-height: 1.2em;
}

@media (max-width: 860px) {
  .contato__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy);
  color: #b7bac4;
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer__col a { transition: color var(--transition); }
.footer__col a:hover { color: var(--gold); }
.footer__col p { font-size: .92rem; color: #a4a7b3; }
.footer__brand-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer__logo {
  flex-shrink: 0;
  height: auto;
  width: 90px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
}
.footer__brand-row p { margin: 0; }

@media (max-width: 480px) {
  .footer__brand-row { flex-direction: column; }
  .footer__logo { width: 110px; }
}

.footer__copy {
  padding: 22px 0;
  font-size: .82rem;
  color: #888c99;
  text-align: center;
}
.footer__copy .container {
  padding-right: 110px;
}
.footer__copy a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}
.footer__copy a:hover { color: var(--gold-dark); }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ==========================================================================
   Floating buttons
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg { width: 20px; height: 20px; }

@media (max-width: 480px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .back-to-top { right: 16px; bottom: 76px; }
}
