/* ========================================
   GOOGLE FONTS
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   ROOT
======================================== */
:root {
  --primary: #8b5e3c;
  --primary-dark: #6f472b;

  --dark: #1f1f1f;
  --dark-soft: #2b2b2b;

  --light: #f8f5f2;
  --white: #ffffff;

  --text: #444444;
  --text-light: #777777;

  --border: #ececec;

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.12);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --transition: all 0.3s ease;
}

/* ========================================
   RESET
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========================================
   GLOBAL
======================================== */
section {
  padding: 6rem 0;
}

.container,
.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
}

.section-text {
  color: var(--text-light);
  font-size: 1rem;
}

.section-badge,
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.section-badge {
  background: rgba(139, 94, 60, 0.12);
  color: var(--primary);
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
  background: rgba(20, 20, 20, 0.82) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar .btn {
  border-radius: 999px;
  font-weight: 500;
  transition: var(--transition);
}

.navbar .btn:hover {
  transform: translateY(-2px);
}

/* ========================================
   HERO
======================================== */
.hero-section {
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-section .carousel {
  position: relative;
}

.hero-section .carousel-item {
  height: 100vh;
  min-height: 650px;
}

.hero-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .carousel-caption {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex !important;
  align-items: center;
  justify-content: flex-start;

  padding: 0 5%;
  text-align: left;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  font-weight: 600;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

/* ========================================
   ABOUT
======================================== */
.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.about-list {
  margin-top: 2rem;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ========================================
   SERVICES
======================================== */
#servicos {
  background: #f1ede8;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 1.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(139, 94, 60, 0.1);
  color: var(--primary);

  border-radius: 50%;
  font-size: 2rem;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ========================================
   GALLERY
======================================== */
.gallery-img,
.galeria-img {
  width: 100%;
  height: 320px;
  object-fit: cover;

  border-radius: var(--radius-md);

  transition: var(--transition);

  box-shadow: var(--shadow-sm);
}

.gallery-img:hover,
.galeria-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--dark) !important;
  padding: 4rem 0 !important;
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
}

.footer-contact p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  margin-right: 0.6rem;
  color: var(--primary);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {

  .hero-section .carousel-item {
    height: 85vh;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-section .carousel-caption {
    justify-content: center;
    text-align: center;
  }

  section {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {

  section {
    padding: 4rem 0;
  }

  .hero-section .carousel-item {
    height: 75vh;
    min-height: 550px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
    background: rgba(20, 20, 20, 0.95);
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .gallery-img,
  .galeria-img {
    height: 250px;
  }
}

@media (max-width: 576px) {

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-lg {
    width: 100%;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .gallery-img,
  .galeria-img {
    height: 220px;
  }
}