:root {
  --primary-orange: #FF9A0D;
  --dark-navy: #1B263B;
  --overlay-dark: rgba(0, 0, 0, 0.6); /* Intensidade do escurecimento */
}

body {
  font-family: 'Caviar Dreams', sans-serif;
  color: var(--dark-navy);
  overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- NAVBAR & LOGO --- */
.navbar {
  background-color: var(--bs-white) !important;
  padding: 15px 0;
}

.navbar-brand img {
  max-height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.1);
}

/* --- CARROSSEL --- */
.carousel-item {
  height: 650px;
  /* Ajuste da velocidade da animação (1.5 segundos) */
  transition: transform 1.5s ease-in-out !important;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

/* Efeito de Escurecimento (Overlay) */
.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, var(--overlay-dark) 100%);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  bottom: 20%;
}

/* --- BOTÕES & ELEMENTOS --- */
.btn-primary {
  background-color: var(--primary-orange) !important;
  border-color: var(--primary-orange) !important;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 154, 13, 0.3);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

footer {
  background-color: var(--dark-navy);
  color: white;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary-orange);
  bottom: 0;
  left: 25%;
}

/* Efeito de Hover nos Cards */
.card-hover {
    transition: all 0.4s ease-in-out;
    border: 2px solid transparent; /* Reserva o espaço para a borda não "pular" */
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-10px); /* Faz o card subir */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important; /* Sombra mais profunda */
    border-color: var(--primary-orange); /* Borda laranja no hover */
}

.card-hover:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Estilo para a lista de benefícios dentro do card */
.list-benefits {
    padding-left: 0;
    list-style: none;
    font-size: 0.95rem;
}

.list-benefits li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fa-rotate-45 {
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  display: inline-block; /* Transform does not work on inline elements */
}


