/* FARO Águas - Modern CSS - 2026 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0055a5;
  --blue-dark: #003d7a;
  --blue-light: #e8f2fc;
  --orange: #e86c00;
  --orange-dark: #c45a00;
  --gray-dark: #222;
  --gray: #555;
  --gray-light: #f5f7fa;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,.1);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TOP BAR ── */
.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: .85rem;
  padding: .4rem 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); opacity: .9; }
.topbar a:hover { opacity: 1; }

/* ── HEADER ── */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ── LOGO ── */
.logo { display: flex; align-items: center; }
.logo img { height: 52px; width: auto; }

nav ul { list-style: none; display: flex; gap: .25rem; }
nav a {
  color: var(--white);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  font-size: .95rem;
  transition: background .2s;
}
nav a:hover, nav a.active { background: rgba(255,255,255,.18); }

.btn-cta-header {
  background: var(--orange);
  color: var(--white) !important;
  padding: .55rem 1.1rem !important;
  border-radius: 50px !important;
  font-weight: 600;
  white-space: nowrap;
}
.btn-cta-header:hover { background: var(--orange-dark) !important; }

/* hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #0077cc 100%);
  color: var(--white);
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto .8rem;
  line-height: 1.2;
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: .92;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ── SECTIONS ── */
section { padding: 4rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: .5rem;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.divider {
  width: 50px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: .6rem auto 1.5rem;
}

/* ── FEATURES — 3 colunas → 2 linhas de 3 ── */
.features { background: var(--gray-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  display: block;
  margin-bottom: .8rem;
}
.feature-card h3 { color: var(--blue-dark); margin-bottom: .4rem; font-size: 1.05rem; }
.feature-card p { color: var(--gray); font-size: .9rem; }

/* ── SERVICES — 3 colunas → 2 linhas de 3 ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--blue-light);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
  font-weight: 500;
  font-size: .95rem;
}
.service-item span { font-size: 1.4rem; }

/* ── ICONS AS IMAGE FILES ── */
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}
.icon-sm { width: .9em;   height: .9em; }
.icon-lg { width: 1.6em;  height: 1.6em; }
.icon-xl { width: 2.8rem; height: 2.8rem; }
/* Auto-white filter on dark/colored backgrounds */
.topbar .icon,
.btn-cta-header .icon,
.btn-primary .icon,
.btn-outline .icon,
.cta-banner .icon,
.phone-link .icon,
footer .icon { filter: brightness(0) invert(1); }
.feature-icon { display: block; margin: 0 auto .8rem; }

/* ── FLEET ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.fleet-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f0f5fa;
  transition: transform .2s;
}
.fleet-card:hover { transform: translateY(-4px); }
.fleet-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #f0f5fa;
  padding: .75rem;
  box-sizing: border-box;
}
.fleet-card-info { padding: 1.2rem; background: var(--white); }
.fleet-card-info h3 { color: var(--blue-dark); font-size: 1.05rem; margin-bottom: .4rem; }
.fleet-card-info p { color: var(--gray); font-size: .9rem; }

/* Frota / foto com altura natural (sem corte) */
.fleet-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fleet-img img,
.about-img.fleet-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.cta-banner h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: .5rem; }
.cta-banner p { opacity: .9; margin-bottom: 1.5rem; font-size: 1.05rem; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  background: rgba(0,0,0,.15);
  padding: .5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  transition: background .2s;
}
.phone-link:hover { background: rgba(0,0,0,.25); }
.badge-24h {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
  margin-left: .5rem;
  vertical-align: middle;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--blue);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; }
.page-hero p { opacity: .88; max-width: 560px; margin: .6rem auto 0; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { color: var(--blue-dark); font-size: 1.5rem; margin-bottom: 1rem; }
.about-text p { color: var(--gray); margin-bottom: 1rem; line-height: 1.7; }
.about-text strong { color: var(--blue-dark); }
.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}

/* ── VALUES — 3 colunas ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius);
  background: var(--blue-light);
}
.value-card .icon { font-size: 2.5rem; display: block; margin-bottom: .8rem; }
.value-card h3 { color: var(--blue-dark); margin-bottom: .4rem; }
.value-card p { color: var(--gray); font-size: .9rem; }

/* ── CLIENTS — 4 colunas → 2 linhas de 4 ── */
.clients-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.client-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.client-card:hover { transform: translateY(-4px); }
.client-card .icon { font-size: 2.8rem; display: block; margin-bottom: .8rem; }
.client-card h3 { color: var(--blue-dark); font-size: 1rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { color: var(--blue-dark); margin-bottom: 1.2rem; font-size: 1.4rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.4rem;
}
.contact-detail .icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail h4 { color: var(--blue-dark); margin-bottom: .1rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .5px; }
.contact-detail p, .contact-detail a { color: var(--gray); font-size: 1rem; }
.contact-detail a:hover { color: var(--blue); }

/* form */
.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { color: var(--blue-dark); margin-bottom: 1.5rem; font-size: 1.3rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: .3rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #dde3ea;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--gray-dark);
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,85,165,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: .9rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: .5rem;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* whatsapp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: #25d366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5); }

/* ── THANK YOU ── */
.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.thank-you-card {
  max-width: 560px;
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.thank-you-icon { font-size: 4rem; margin-bottom: 1rem; display: block; }
.thank-you h1 { color: var(--blue-dark); margin-bottom: .7rem; font-size: 1.8rem; }
.thank-you p { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: var(--gray-dark);
  color: #ccc;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand strong { color: var(--white); font-size: 1.2rem; display: block; margin-bottom: .4rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; color: #aaa; }
footer h4 { color: var(--white); margin-bottom: .8rem; font-size: .95rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .4rem; }
footer ul a { color: #aaa; font-size: .88rem; transition: color .2s; }
footer ul a:hover { color: var(--white); }
.footer-phone { color: var(--orange); font-size: 1.1rem; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: #888;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--white); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--blue-dark);
  color: var(--white);
  padding: 1.4rem 1.5rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.trust-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: .3rem; }
.trust-item span { font-size: .8rem; opacity: .85; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font);
}
.faq-q::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--orange); flex-shrink: 0; }
.faq-q.open::after { content: '−'; }
.faq-a { padding: 0 0 1rem; color: var(--gray); line-height: 1.7; display: none; }
.faq-a.open { display: block; }

/* ── ÁREA DE ATENDIMENTO ── */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.area-tag {
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid #c5daf5;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid  { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid    { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    padding: 1rem;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav a { display: block; padding: .7rem 1rem; border-radius: var(--radius); }
  .btn-cta-header { display: none; }

  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }

  .footer-grid  { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: 1fr; }
  .hero-buttons  { flex-direction: column; align-items: center; }
}
