/* Estilos gerais */
:root {
  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --text-color: #333333;
  --background-color: #ffffff;
  --accent-color: #ff8906;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--light-gray);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #fff;
  transform: scale(1.1);
}

/* Header */
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  max-height: 50px;
}

.header .navbar {
  padding: 0;
}

.header .navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.header .navbar li {
  position: relative;
}

.header .navbar a,
.header .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  white-space: nowrap;
  transition: 0.3s;
}

.header .navbar a i,
.header .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.header .navbar a:hover,
.header .navbar .active,
.header .navbar .active:focus,
.header .navbar li:hover > a {
  color: var(--primary-color);
}

.header .navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.header .navbar .dropdown ul li {
  min-width: 200px;
}

.header .navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}

.header .navbar .dropdown ul a i {
  font-size: 12px;
}

.header .navbar .dropdown ul a:hover,
.header .navbar .dropdown ul .active:hover,
.header .navbar .dropdown ul li:hover > a {
  color: var(--primary-color);
}

.header .navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.header .navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.header .navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .header .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .header .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--text-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

/* Hero Section */
.hero {
  width: 100%;
  height: 80vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

.hero .hero-carousel {
  width: 100%;
  height: 100%;
}

.hero .hero-item {
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero .hero-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero .hero-content {
  position: relative;
  padding: 20px;
  margin-top: 120px;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.hero p {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 22px;
}

.hero .btn-primary {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin-top: 30px;
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.hero .btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (min-width: 1024px) {
  .hero p {
    width: 60%;
    margin: 15px auto 0 auto;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 18px;
  }
}

/* Sections General */
section {
  padding: 80px 0;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--text-color);
  position: relative;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto 20px auto;
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--dark-gray);
}

/* Sobre Section */
.sobre .sobre-img {
  position: relative;
  margin-bottom: 30px;
}

.sobre .sobre-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.sobre .sobre-content h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--text-color);
}

.sobre .sobre-content p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.sobre .sobre-box {
  padding: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  transition: all ease-in-out 0.3s;
  height: 100%;
  background: #fff;
  border-radius: 8px;
}

.sobre .sobre-box i {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.sobre .sobre-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sobre .sobre-box:hover {
  transform: translateY(-10px);
}

/* Serviços Section */
.servicos .categoria-filtros {
  margin-bottom: 20px;
}

.servicos .categoria-filtros button {
  margin: 0 5px 10px 5px;
  border-radius: 50px;
  padding: 8px 15px;
  transition: all 0.3s;
}

.servicos .categoria-filtros button:hover,
.servicos .categoria-filtros button.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.servicos .servico-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.servicos .servico-card:hover {
  transform: translateY(-10px);
}

.servicos .servico-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.servicos .servico-card .card-body {
  padding: 20px;
}

.servicos .servico-card .card-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.servicos .categoria-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.servicos .servico-preco {
  margin: 15px 0;
}

.servicos .preco {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.servicos .preco-original {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--dark-gray);
  margin-right: 10px;
}

.servicos .preco-promocional {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.servicos .card-footer {
  background-color: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
}

/* Equipe Section */
.equipe .equipe-membro {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.equipe .equipe-membro:hover {
  transform: translateY(-10px);
}

.equipe .membro-img {
  position: relative;
  overflow: hidden;
}

.equipe .membro-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.equipe .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.equipe .social a {
  transition: color 0.3s;
  color: #fff;
  background: rgba(255, 107, 107, 0.8);
  margin: 0 5px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.equipe .social a:hover {
  background: var(--primary-color);
}

.equipe .social i {
  font-size: 18px;
  line-height: 0;
}

.equipe .membro-info {
  padding: 25px 15px;
  text-align: center;
}

.equipe .membro-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--text-color);
}

.equipe .membro-info span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.equipe .membro-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--dark-gray);
}

.equipe .equipe-membro:hover .social {
  opacity: 1;
  bottom: 15px;
}

/* Depoimentos Section */
.depoimentos .depoimento-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 20px 15px;
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.depoimentos .depoimento-item:hover {
  transform: translateY(-10px);
}

.depoimentos .depoimento-content {
  position: relative;
}

.depoimentos .depoimento-content p {
  font-style: italic;
  margin: 15px 0;
  padding: 10px 0;
  position: relative;
  color: var(--dark-gray);
}

.depoimentos .depoimento-content p::before {
  content: "\201C";
  font-size: 60px;
  position: absolute;
  left: -15px;
  top: -30px;
  opacity: 0.1;
  color: var(--primary-color);
}

.depoimentos .depoimento-content p::after {
  content: "\201D";
  font-size: 60px;
  position: absolute;
  right: -15px;
  bottom: -30px;
  opacity: 0.1;
  color: var(--primary-color);
}

.depoimentos .rating {
  margin-bottom: 10px;
}

.depoimentos .rating i {
  color: var(--warning-color);
}

.depoimentos .depoimento-autor {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.depoimentos .depoimento-autor img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.depoimentos .depoimento-autor h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.depoimentos .depoimento-autor small {
  font-size: 13px;
  color: var(--dark-gray);
}

/* Galeria Section */
.galeria .galeria-item {
  margin-bottom: 30px;
}

.galeria .galeria-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
}

.galeria .galeria-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.galeria .galeria-wrap img {
  transition: all ease-in-out 0.3s;
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.galeria .galeria-wrap .galeria-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.galeria .galeria-wrap .galeria-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.galeria .galeria-wrap .galeria-info p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 0;
}

.galeria .galeria-wrap .galeria-links {
  text-align: center;
  z-index: 4;
}

.galeria .galeria-wrap .galeria-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.galeria .galeria-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.galeria .galeria-wrap:hover img {
  transform: scale(1.1);
}

.galeria .galeria-wrap:hover .galeria-info {
  opacity: 1;
}

/* Contato Section */
.contato .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contato .info i {
  font-size: 20px;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: #fef6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contato .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.contato .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--dark-gray);
}

.contato .info .endereco,
.contato .info .email,
.contato .info .telefone,
.contato .info .horario {
  margin-bottom: 20px;
}

.contato .info .email:hover i,
.contato .info .endereco:hover i,
.contato .info .telefone:hover i,
.contato .info .horario:hover i {
  background: var(--primary-color);
  color: #fff;
}

.contato .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contato .php-email-form .form-group {
  padding-bottom: 8px;
}

.contato .php-email-form input,
.contato .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contato .php-email-form input:focus,
.contato .php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.contato .php-email-form textarea {
  padding: 10px 12px;
}

.contato .php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contato .php-email-form button[type="submit"]:hover {
  background: var(--accent-color);
}

.contato .redes-sociais {
  display: flex;
  justify-content: center;
}

.contato .redes-sociais a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.contato .redes-sociais a:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.contato .mapa-container {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  padding: 15px;
  background: #fff;
}

.contato .mapa {
  width: 100%;
  height: 300px;
}

.contato .mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}

/* Footer */
.footer {
  background: #f8f9fa;
  padding: 0 0 30px 0;
  color: var(--text-color);
  font-size: 14px;
}

.footer .footer-top {
  background: #f1f1f1;
  padding: 60px 0 30px 0;
}

.footer .footer-info {
  margin-bottom: 30px;
}

.footer .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

.footer .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--dark-gray);
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.footer h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 5px;
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: var(--dark-gray);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer .footer-newsletter {
  margin-bottom: 30px;
}

.footer .footer-newsletter h4 {
  margin-bottom: 20px;
}

.footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter form input[type="submit"]:hover {
  background: var(--accent-color);
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: var(--dark-gray);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .header .navbar {
    padding: 0;
  }
  
  .header .navbar ul {
    margin: 0;
    padding: 0;
    display: block;
  }
  
  .header .navbar li {
    margin-bottom: 10px;
  }
  
  .header .navbar .dropdown ul {
    position: static;
    display: none;
    margin: 10px 0 0 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: none;
  }
  
  .header .navbar .dropdown > .dropdown-active {
    display: block;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero .hero-item {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }
  
  .sobre .sobre-content h3 {
    font-size: 22px;
  }
  
  .contato .info {
    margin-bottom: 30px;
  }
  
  .footer .footer-info,
  .footer .footer-links,
  .footer .footer-newsletter {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .hero {
    height: 60vh;
  }
  
  .hero .hero-item {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .nav-tabs .nav-link {
    color: #000 !important; /* força a cor preta */
}
  
  .servicos .categoria-filtros button {
    margin: 0 3px 10px 3px;
    padding: 6px 12px;
    font-size: 14px;
  }
  
  .contato .php-email-form {
    padding: 20px;
  }
}
