:root {
  --bg: #dfd8d8;
  --surface: #ffffff;
  --text: #1f1f1f;
  --muted: #5f5f5f;
  --primary: #d96a1b;
  --primary-dark: #b85612;
  --accent: #f3d3bb;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* HEADER */

/* HEADER CENTRALIZADO */
.center-header {
  text-align: center;
  padding-top: 20px;
  background: rgba(246, 243, 238, 0.95);
  border-bottom: 1px solid var(--border);
}

/* container interno */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* LOGO GRANDE */
.logo-top {
  height: 120px;
  width: auto;
  object-fit: contain;
}

/* MENU CENTRAL */
.nav-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 10px;
}

/* LINKS */
.nav-links a {
  font-weight: 600;
  color: var(--text);
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.site-header {
  z-index: 100;
  background: #dfd8d8;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 12px 0;
  background-color:#dfd8d8;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 120px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-weight: 600;
  color: var(--text);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-full {
  min-height: 88vh;
  background: url("img/quintal 2.jpg");
  position: relative;
}

.hero-full-aboutus {
  min-height: 88vh;
  background: url("img/quintal 2.jpg");
  position: relative;
}

.hero-overlay {
  min-height: 88vh;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 90%;
  color: white;
  padding: 80px 0;
}

.hero-full .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  background:#d96a1bb3;
  color: #ffffff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-full h1 {
  font-size: clamp(3rem, 6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 40ch;
  color: #ffffff;
}

.hero-full .lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-full .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero-full .btn {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
}

.hero-full .btn-primary {
  background: #d96a1b;
  color: white;
  border: none;
}

.hero-full .btn-primary:hover {
  background: #b85612;
}

.hero-full .btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #111111;
  border: none;
}

.hero-full .btn-secondary:hover {
  background: #ffffff;
}

@media (max-width: 768px) {
  .hero-full,
  .hero-overlay {
    min-height: 78vh;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-full h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .hero-full .lead {
    font-size: 1rem;
    line-height: 1.65;
  }
}
.eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  max-width: 100%;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 100%;
}

.lead2 {
  font-size: 1.08rem;
  color: var(--surface);
  max-width: 100%;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.card,
.image-card,
.stat-card,
.service-card,
.contact-card,
.project-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
/*
.card, .image-card, .stat-card, .service-card, .contact-card, .project-card {
    background: #f37508;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}*/

.contact-card {
  width: 100%;
  max-width: 600px;
}


.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.section {
  padding: 0px 0 0px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

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

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

.project-card {
  overflow: hidden;
}

.project-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.project-content,
.service-card,
.contact-card,
.form-card,
.stat-card {
  padding: 24px;
}

.project-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-dark);
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 12px;
}

.muted {
  color: var(--muted);
}

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

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-dark);
}

.info-card {
  padding: 28px;
  margin: 0px 0px 40px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  margin-right: 10px;
}

.cta-banner {
  margin: 40px 0px 0px;
  padding: 34px;
  background: linear-gradient(135deg, #f7dfcc, #f6f3ee);
}

.site-footer {
    padding: 10px 0 10px;
    color: #fff;
    background: var(--primary);
}

/* FORM */

form input,
form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #e7e2de; /* quase igual ao fundo */
  color: #111;
  font-size: 1rem;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(0,0,0,0.5);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #d96a1b;
  background: #ece7e3;
}

.form-card {
  width: 100%;
  max-width: 600px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

form input,
form textarea {
  border-radius: 12px;
  border: 1px solid #8b8181;
  padding: 14px;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #d96a1b;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.contact-layout.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social-links a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.small-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.page-hero {
  padding: 68px 0 34px;
}

/* Carroceu */
.custom-slider-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.custom-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #111;
}

.custom-slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-slide.active {
  display: block;
}

.custom-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15)
  );
}

.custom-slide-content {
  position: absolute;
  left: 8%;
  bottom: 12%;
  z-index: 2;
  max-width: 620px;
  color: white;
}

.custom-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #d96a1bb3;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.custom-slide-content h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: white;
}

.custom-slide-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.custom-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.custom-slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.custom-slider-btn.prev {
  left: 18px;
}

.custom-slider-btn.next {
  right: 18px;
}

.custom-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.custom-slider-dots .dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.25s ease;
}

.custom-slider-dots .dot.active {
  background: #d96a1b;
}

@media (max-width: 768px) {
  .custom-slider {
    height: 70vh;
  }

  .custom-slide-content {
    left: 20px;
    right: 20px;
    bottom: 60px;
    max-width: none;
  }

  .custom-slide-content h2 {
    font-size: 1.8rem;
  }

  .custom-slide-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .custom-slider-btn {
    width: 40px;
    height: 40px;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .grid-3,
  .grid-2,
  .stats,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .section-header {
    flex-direction: column;
    align-items: start;
  }

  .logo {
    height:120px;
  }

  h1 {
    max-width: 100%;
  }

  .image-card img {
    min-height: 320px;
  }
}

.ideals-section {
  padding: 70px 0;
}

.ideals-intro {
  margin-bottom: 34px;
}

.ideals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.ideal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ideal-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.ideal-text {
  padding: 24px;
}

.ideal-text h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.ideal-text p {
  margin: 0;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .ideals-grid {
    grid-template-columns: 1fr;
  }

  .ideal-image img {
    height: 220px;
  }
}

.contact-main-section {
  padding: 30px 0 90px;
}

.contact-stack {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.contact-form-wrap h2 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.contact-form-wrap form {
  display: grid;
  gap: 18px;
}

.contact-form-wrap label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #e8e1de;
  color: var(--text);
  font: inherit;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: rgba(31, 31, 31, 0.55);
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: #d96a1b;
  background: #ece6e2;
}

.contact-form-wrap textarea {
  min-height: 170px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}

.contact-form-wrap .small-note {
  margin-top: 18px;
  max-width: 760px;
}

.contact-info-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 28px;
}

.contact-info-wrap h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.contact-info-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.centered-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 26px;
}

.centered-links a {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-stack {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-form-wrap,
  .contact-info-wrap {
    max-width: 100%;
  }

  .contact-form-wrap h2,
  .contact-info-wrap h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

.contact-main-section {
  padding: 30px 0 90px;
}

.contact-stack {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.contact-form-wrap h2 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.contact-form-wrap form {
  display: grid;
  gap: 18px;
}

.contact-form-wrap label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #e8e1de;
  color: var(--text);
  font: inherit;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: rgba(31, 31, 31, 0.55);
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: #d96a1b;
  background: #ece6e2;
}

.contact-form-wrap textarea {
  min-height: 170px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}

.contact-form-wrap .small-note {
  margin-top: 18px;
  max-width: 760px;
}

.contact-info-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 28px;
}

.contact-info-wrap h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.contact-info-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.centered-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 26px;
}

.centered-links a {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-stack {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-form-wrap,
  .contact-info-wrap {
    max-width: 100%;
  }

  .contact-form-wrap h2,
  .contact-info-wrap h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

.features-section {
  padding: 40px 0;
  background: var(--bg);
}

.features-container {
  width: min(82%, 1100px);
  margin: 0 auto;
}

.features-header {
  border-bottom: 1px solid var(--primary);
  margin-bottom: 55px;
  padding-bottom: 10px;
}

.features-header h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 500;
  color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}

.features-main{
  background-image: image("img/coqueiro.jpg");
}

.features-main h3 {
  margin: 0 0 18px;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: #000;
  max-width: 540px;
}

.features-main p {
  margin: 0 0 26px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5f6368;
  max-width: 560px;
}

.features-btn {
  display: inline-block;
  padding: 14px 22px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.25s ease;
}

.features-btn:hover {
  background: #0b5ed7;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 40px;
}

.feature-item h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #111;
}

.feature-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #5f6368;
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .features-main h3 {
    font-size: 2.3rem;
    max-width: 100%;
  }

  .features-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.custom-cards-section {
  padding: 40px 0;
  background: var(--primary);
}

.custom-cards-container {
  width: min(95%);
  margin: 0 auto;
}

.custom-cards-header {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 12px;
  margin-bottom: 52px;
}

.custom-cards-header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
  color: #fff;
}

.custom-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.custom-card {
  position: relative;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.custom-card-overlay {
  position: absolute;
  inset: 0;

}

.custom-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.custom-card-content h3 {
    margin: 0 0 28px;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    max-width: 99%;
    color: white;
    background-color: #1111116e
}

.custom-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.custom-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #8b3dff;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.custom-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .custom-cards-grid {
    grid-template-columns: 1fr;
  }

  .custom-card {
    min-height: 300px;
  }

  .custom-card-content h3 {
    font-size: 1.8rem;
    max-width: 100%;
  }
}

.custom-cards-wrapper {
  position: relative;
}

.custom-cards-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;

  /* remove scrollbar feio */
  scrollbar-width: none;
}

.custom-cards-scroll::-webkit-scrollbar {
  display: none;
}

/* cards fixos lado a lado */
.custom-cards-scroll .custom-card {
  min-width: 300px;
  flex: 0 0 auto;
}

/* botões */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 20px;
  cursor: pointer;

  transition: 0.3s;
}

.scroll-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

.scroll-btn.prev {
  left: -10px;
}

.scroll-btn.next {
  right: -10px;
}

.contact-hero {
  min-height: calc(100vh - 90px);
  background: url("img/coqueiro.jpg") center center / cover no-repeat;
  position: relative;
}

.contact-hero-overlay {
  min-height: calc(100vh - 90px);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.28) 100%
  );
  display: flex;
  align-items: center;
  padding: 50px 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.contact-hero-content {
  color: white;
  max-width: 680px;
}

.contact-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--primary-dark);
    color: var(--surface);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-hero-content h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  color: #fff;
  max-width: 100%;
}

.contact-hero-content p {
  margin: 0 0 24px;
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.contact-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.contact-feature-list li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-weight: 500;
}

.contact-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: 0.25s ease;
}

.contact-quick-links a:hover {
  background: var(--primary);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  max-width: 430px;
  width: 100%;
  justify-self: end;
}

.contact-form-card h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 2rem;
  color: #4d4d4d;
}

.contact-form-card form {
  display: grid;
  gap: 14px;
}

.contact-form-card label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #444;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: #dce3dc;
  padding: 13px 14px;
  font: inherit;
  color: #222;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #7a7a7a;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: 2px solid rgba(217, 106, 27, 0.35);
  background: #e6ece6;
}

.contact-form-card textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-submit-btn {
  margin-top: 6px;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  background:var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-submit-btn:hover {
  background: var(--primary-dark)
}

.contact-form-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

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

  .contact-form-card {
    justify-self: stretch;
    max-width: 100%;
  }

  .contact-hero-content h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .contact-hero-overlay {
    padding: 36px 0;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .contact-hero-content h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
}

.top-bar {
  background: var(--primary);
  color: white;
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
}

.top-bar-text {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-text strong {
  font-weight: 700;
}

.top-bar-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.top-bar-call a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.top-bar-call a:hover {
  text-decoration: underline;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-right a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.footer-right a:hover {
  text-decoration: underline;
}

.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  margin-bottom: 20px;
}

.legal-page h3 {
  margin-top: 30px;
}

.legal-page p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.video-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: relative;
    position: absolute;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: end;
}

.video-content {
  color: white;
  max-width: 700px;
}

.video-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.video-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.video-gallery-section {
  padding: 70px 0;
}

.video-gallery-header {
  margin-bottom: 34px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-card-horizontal {
  grid-column: span 7;
}

.video-card-vertical {
  grid-column: span 5;
}

.video-frame {
  background: #111;
}

.video-card-horizontal .video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-card-vertical .video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.video-card-content {
  padding: 20px 22px 24px;
}

.video-card-content h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.video-card-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .video-card-horizontal,
  .video-card-vertical {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {

  .top-bar-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .top-bar-call {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }

}
.video-frame img,
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.video-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-frame {
  width: 100%;
  height: 420px;
  background: #111;
  overflow: hidden;
}

.video-frame video,
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-content {
  padding: 22px;
}

.video-card-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.video-card-content p {
  color: #666;
  line-height: 1.6;
}