:root {
  --primary-color: #d81481;
  --secondary-color: #3d3a3a;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #111111;
  --text-color: #333;
  --text-color-light: #666;
  --font-poppins: "Poppins", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-poppins);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.brand-color {
  color: var(--primary-color);
}
.text-highlight {
  color: var(--primary-color);
}
.main-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1000;
  background-color: rgba(17, 17, 17, 0.85);
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}
.header-inner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  height: 50px;
  width: auto;
  transition: var(--transition);
}
.desktop-nav {
  display: none;
}
@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }
}
.desktop-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: width 0.3s ease-out;
}
.nav-link:hover,
.nav-item-dropdown:hover .nav-link {
  color: var(--primary-color);
}
.nav-link:hover::after,
.nav-item-dropdown:hover .nav-link::after {
  width: 100%;
}
.nav-item-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}
.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #1f1f1f;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  min-width: 280px;
  padding: 10px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  pointer-events: none;
}
.dropdown-menu.show-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--white);
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.dropdown-item:hover {
  background-color: var(--primary-color);
  transform: translateX(5px);
}
.dropdown-item img {
  height: 35px;
  width: 35px;
  object-fit: contain;
  flex-shrink: 0;
}
.dropdown-item div {
  flex-grow: 1;
}
.dropdown-item h4 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}
.dropdown-item p {
  font-size: 0.8rem;
  color: #ccc;
  margin: 0;
  line-height: 1.3;
}
.dropdown-external-icon {
  margin-left: auto;
  color: #888;
  font-size: 0.8rem;
}
.dropdown-item:hover .dropdown-external-icon {
  color: var(--white);
}
.btn-contato {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: none;
}
.btn-contato:hover {
  background-color: #b90e70;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
@media (min-width: 992px) {
  .btn-contato {
    display: inline-block;
  }
}
.mobile-menu-toggle {
  display: none;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
}
@media (max-width: 991.98px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-nav-menu {
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: rgba(25, 25, 25, 0.98);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: 0.5rem;
}
.mobile-nav-menu.open {
  max-height: calc(100vh - 100px);
  padding: 1rem 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}
.mobile-nav-link {
  padding: 0.8rem 0;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mobile-dropdown-toggle .dropdown-arrow {
  transition: transform 0.3s ease;
}
.mobile-nav-item-dropdown.open-mobile .dropdown-arrow {
  transform: rotate(180deg);
}
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding-left: 1rem;
  border-left: 2px solid var(--primary-color);
  margin-top: 0.5rem;
  margin-left: 0.5rem;
}
.mobile-nav-item-dropdown.open-mobile .mobile-dropdown-menu {
  max-height: 500px;
}
.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 0.5rem;
  color: #ccc;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-dropdown-item:hover {
  color: var(--primary-color);
}
.mobile-dropdown-item i.fa-fw {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}
.btn-mobile-contact {
  background-color: var(--primary-color);
  color: var(--white) !important;
  text-align: center;
  margin-top: 1rem;
  border-radius: 25px;
  font-weight: 600;
  border-bottom: none !important;
}
.hero {
    position: relative; 
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-img,
.hero-overlay,
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    /* Camada 2: A sobreposição escura que você quer. AGORA POR CIMA DO VÍDEO */
    background-color: rgba(10, 10, 10, 0.7); /* Cor preta com 70% de opacidade */
    z-index: 2;
}
.hero-gradient {
    /* Camada 3: O gradiente radial colorido (opcional) */
    background: radial-gradient(circle, rgba(216, 20, 129, 0.15), transparent 70%);
    z-index: 3;
}

.hero-content {
    /* O conteúdo de texto fica na camada de cima, sobre tudo */
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

/* O resto dos estilos como .hero-title, .hero-subtitle, etc. não precisam mudar */

.hero-title {
    font-family: var(--font-montserrat);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: #b90e70;
}
.about {
  background-color: var(--light-gray);
  padding: 6rem 0;
  text-align: center;
}
.about-icon {
  margin-bottom: 2rem;
}
.about-title {
  color: var(--secondary-color);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-image-container {
  max-width: 900px;
  margin: 0 auto;
}
.about-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
}
.diferenciais-section,
.detailed-services-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}
.detailed-services-section {
  background-color: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  font-family: var(--font-montserrat);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title span.text-highlight {
  font-weight: 700;
}
.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-color-light);
  max-width: 600px;
  margin: 0 auto;
}
.swiper {
  padding-bottom: 50px !important;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
  background-color: rgba(255, 255, 255, 0.9);
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: bold;
}
.swiper-pagination-bullet {
  background-color: #ccc !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}
.swiper.swiper-initializing {
  opacity: 0;
}
.swiper.swiper-initialized-custom {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.diferencial-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 0 auto;
  max-width: 450px;
  transition: var(--transition);
}
.diferencial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.servicos-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
.service-detail-card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.card-image-wrapper {
  position: relative;
  height: 250px;
  flex-shrink: 0;
}
.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 10%, transparent 60%);
}
.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin: 0;
}
.diferencial-card .card-title {
  font-size: 1.8rem;
}
.card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.card-content {
  padding: 25px;
}
.service-detail-card .card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-content p {
  color: var(--text-color-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.card-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}
.card-title-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.title-icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(64, 192, 224, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.service-detail-card .card-title {
  position: static;
  font-size: 1.3rem;
  line-height: 1.3;
}
.card-list-columns {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px 15px;
}
.card-list-columns li {
  align-items: center;
  display: flex;
}
.card-list-columns li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 10px;
}
.card-button-wrapper {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
.btn-card {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.btn-card:hover {
  background-color: #b90e70;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(216, 20, 129, 0.3);
}
.faq {
  padding: 5rem 0;
  background: var(--light-gray);
}
.faq-title {
  text-align: center;
  font-family: var(--font-montserrat);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 4rem;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
}
.faq-question h3 {
  color: var(--secondary-color);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  margin: 0;
  padding-right: 1rem;
}
.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq-answer p {
  color: var(--text-color-light);
  margin: 0;
  border-top: 1px solid #e0e0e0;
  padding-top: 1.2rem;
}
.cta {
  padding: 5rem 0;
  background-color: var(--light-gray);
}
.cta-content {
  background-color: var(--secondary-color);
  border-radius: 25px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-hover);
}
.cta-text-content {
  flex: 1;
}
.cta-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--light-gray);
  font-family: var(--font-poppins);
}
.cta-subtitle {
  font-family: var(--font-montserrat);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-description {
  font-size: 1.1rem;
  font-weight: 300;
  color: #e0e0e0;
  margin: 0;
}
.cta-action {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.cta-logo img {
  height: 80px;
  width: auto;
}
.btn-cta {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(216, 20, 129, 0.3);
}
.main-footer {
  background-color: var(--dark-gray);
  padding: 6rem 1rem 2rem;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  color: #ccc;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  height: 50px;
}
.footer-heading {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-montserrat);
}
.footer-text p {
  margin-bottom: 0.5rem;
}
.footer-link-contact {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-link-contact:hover {
  color: var(--primary-color);
}
.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.social-link {
  transition: transform 0.3s ease;
}
.social-link:hover {
  transform: scale(1.1) translateY(-3px);
}
.social-icon {
  width: 32px;
  height: 32px;
}
.footer-divider {
  border-top: 1px solid #444;
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer-copyright {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}
.footer-copyright .footer-link-contact {
  color: #aaa;
  font-weight: 600;
}
.footer-copyright .footer-link-contact:hover {
  color: #ff0000;
}
@media (min-width: 768px) {
  .main-footer {
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
  }
  .footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
  }
  .footer-column.footer-logo-wrapper {
    align-items: flex-start;
  }
  .footer-column.footer-contact-info {
    align-items: center;
  }
  .footer-column.footer-social-media {
    align-items: flex-end;
  }
  .social-icons {
    justify-content: flex-end;
  }
}
@media (max-width: 991.98px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-action {
    flex-direction: column;
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .main-footer {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding-top: 4rem;
  }
}
