:root {
  --orange: #EF8126;
  --orange-dark: #d86f20;
  --gray-dark: #363636;
  --light-bg: #FAFAFA;
  --white: #FFFFFF;
  --shadow-soft: 0 20px 50px rgba(226, 136, 19, 0.08);
  --shadow-card: 0 10px 30px rgba(226, 68, 28, 0.568);
  --radius: 14px;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  background: var(--light-bg);
  color: var(--gray-dark);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  margin: 0;
}

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

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

}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #EF8126;
  box-shadow: 0 4px 18px rgba(153, 8, 8, 0.829);
  z-index: 1000;
  
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo img {
  width: 120px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  padding: 8px;
  border-radius: 10px;
}

.header,
.header a,
.header span,
.header nav a,
.header .logo span {
  color: #FFFFFF;
}

.nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  
}

.nav__close {
  display: none;
}

.nav a {
  font-weight: 600;
  transition: color 0.2s ease;
  color: #FFFFFF;
}

.nav a:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 80vh;
  padding: 140px 0 120px;
  background: url('assets/images/galeria/foto1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.6), rgba(239,129,38,0.65));
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fdfdfd;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
}

.hero__text {
  max-width: 700px;
}

.hero__eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ff7300;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px;
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
}

.hero__sub {
  margin: 0 0 26px;
  font-size: 17px;
  color: #f7f7f7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero__highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__highlights span {
  background: rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 600;
}

.hero__floating-card {
  position: absolute;
  right: 24px;
  bottom: -36px;
  background: var(--white);
  color: var(--gray-dark);
  padding: 16px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 240px;
  border: 1px solid #f1f1f1;
}

.hero__image {
  align-self: center;
  max-width: 920px;
  margin-left: auto;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.section {
  padding: 100px 0;
  background: var(--light-bg);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.01em;
}

.section__sub {
  margin: 0;
  color: #5a5a5a;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid #f2f2f2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.card__icon img {
  width: 40px;
  height: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(239,129,38,0.28);
}

.btn-primary:hover { background: var(--orange-dark); }

.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover { background: rgba(255,255,255,0.26); }

.btn-ghost {
  background: transparent;
  color: var(--gray-dark);
  border: 1px solid #dcdcdc;
}

.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn-link {
  color: var(--orange);
  font-weight: 700;
  padding: 0;
}

.btn-large { padding: 16px 22px; font-size: 18px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.steps {
  background: var(--white);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid #f0f0f0;
  box-shadow: var(--shadow-card);
}

.step__icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.benefits__visual {
  margin: -10px auto 20px;
  max-width: 760px;
}

.benefits__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.card--inline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.testimonials {
  background: var(--white);
}

.testimonials__visual {
  max-width: 720px;
  margin: 0 auto 20px;
}

.testimonials__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.testimonial {
  min-width: 300px;
  max-width: 320px;
  flex: 0 0 auto;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #f4a45a);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.testimonial__stars {
  color: #ffb400;
  margin: 4px 0;
}

.carousel__controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.carousel__btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.2s ease;
}

.carousel__btn:hover {
  background: #f5f5f5;
}

.carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #eaeaea;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel__dot.is-active {
  background: var(--orange);
  border-color: var(--orange);
}

.coverage__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.coverage__bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: grid;
  gap: 10px;
}

.coverage__bullets li {
  padding-left: 16px;
  position: relative;
}

.coverage__bullets li::before {
  content: "•";
  color: var(--orange);
  position: absolute;
  left: 0;
}

.coverage__map iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact {
  background: var(--white);
}

.contact__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.contact__info p {
  margin: 6px 0;
}

.contact__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.contact__card {
  background: linear-gradient(135deg, #fff6ed, #ffffff);
  border: 1px solid #ffe1c4;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.contact__card ul {
  padding-left: 18px;
  margin: 12px 0;
}

.cta-final {
  background: linear-gradient(120deg, #fff, #fff3e8);
  text-align: center;
}

.cta-final__content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-final__badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cta-final__badges span {
  background: #fff;
  border: 1px solid #ffd5ae;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.footer {
  background: #101010;
  color: #dcdcdc;
  padding: 38px 0 26px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  align-items: start;
}

.footer__brand img {
  width: 110px;
  height: 110px;
  margin-bottom: 10px;
  object-fit: contain;
}

.footer__links a {
  display: block;
  color: #e6e6e6;
  margin-bottom: 8px;
  line-height: 2.5;
}

.footer__contact a {
  color: #e6e6e6;
  display: block;
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  color: #9c9c9c;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #1c1c1c;
}

.float-btn {
  position: fixed;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 30px rgba(0,0,0,0.18);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn img { width: 26px; height: 26px; }

.float-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 36px rgba(0,0,0,0.22);
}

.float-btn--whatsapp {
  bottom: 90px;
  background: #25d366;
}

.float-btn--whatsapp img {
  width: 55%;
  height: 75%;
  object-fit: contain;
}

.float-btn--instagram {
  bottom: 22px;
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.nav ul li a {
  color: #ffffff;           /* cor normal (muda se quiser) */
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav ul li a:hover {
  color: #000000;           /* fica PRETO ao passar o mouse */
}