/* =====================================================
   SISTEMA DE CORES - Altere estas variáveis para mudar as cores do site
   ===================================================== */
:root {
  /* Cores principais */
  --primary-color: #d4a574;
  --primary-hover: #c89761;
  --primary-light: #e8d4bd;
  
  /* Cores secundárias */
  --secondary-color: #8b7355;
  --secondary-light: #a68968;
  
  /* Cores de texto */
  --text-primary: #2c2c2c;
  --text-secondary: #666666;
  --text-light: #ffffff;
  
  /* Cores de fundo */
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #1a1a1a;
  
  /* Cores de destaque */
  --accent-gold: #d4a574;
  --accent-beige: #f5e6d3;
  
  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
  
  /* Transições */
  --transition-base: all 0.3s ease;
}

/* =====================================================
   ESTILOS GLOBAIS
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Figtree', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h2 {
  font-size: 3.5rem;
  font-weight: 300;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--secondary-light);
  opacity:.5;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.375rem;
  font-weight: normal;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 32px;
  font-weight: 600;
  transition: var(--transition-base);
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 28px;
  font-weight: 600;
  transition: var(--transition-base);
  text-transform: uppercase;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* =====================================================
   SECTIONS
   ===================================================== */
section {
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.section-text, .section-text p, .section-text ul li, .section-text ul {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section-text ul li, .section-text ul {
  line-height: 1.3;
}

/* =====================================================
   FEATURE LIST
   ===================================================== */
ul { /*.feature-list { */
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Estilos para cada item da lista */
ul li { /* .feature-list li { */
  position: relative;
  padding-left: 2rem; /* Cria espaço para o ícone */
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Adicionando o ícone antes de cada item da lista */
ul li::before { /*.feature-list li::before { */
  content: "\f26b"; /* Unicode do ícone 'bi-check-circle-fill' (versão Bootstrap Icons) */
  font-family: "bootstrap-icons"; /* Fonte dos ícones */
  position: absolute;
  left: 0;
  top: 50%; /* Alinhamento vertical */
  transform: translateY(-50%); /* Centraliza o ícone verticalmente */
  font-size: 1.5rem; /* Tamanho do ícone */
  color: var(--primary-color);
}

/*
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}
*/

/* =====================================================
   BENEFIT CARDS
   ===================================================== */
.benefit-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-card h5 {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* =====================================================
   SERVICE CARDS
   ===================================================== */
.service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  height: 250px;
  object-fit: cover;
}

.service-card .card-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card .card-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.service-card .card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-author {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

/* =====================================================
   ACCORDION (FAQ)
   ===================================================== */
.accordion-item {
  border: 1px solid rgba(0,0,0,0.125);
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--bg-white);
  color: var(--text-primary);
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--text-primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-secondary);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

/* =====================================================
   CONTACT
   ===================================================== */
.form-control {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  transition: var(--transition-base);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h6 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background-color: var(--bg-dark) !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (orientation: portrait) {
	section {
		padding-left: 1em;
		padding-right: 1em;
	}

	.btn {
		width: 100%;
	}
	h2, h3, p {
		text-align: center;
	}
}

   /*
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}
*/