/* Variáveis de cores e fontes */
:root {
  --primary-color: #d4a9a7;
  /* Rosa suave elegante */
  --primary-dark: #b48b8a;
  --primary-light: #f2d9d8;
  --secondary-color: #5b4040;
  /* Marrom escuro elegante */
  --accent-color: #f8bfbf;
  /* Rosa mais claro para destaques */
  --text-color: #333333;
  --light-text: #777777;
  --background-color: #ffffff;
  --light-bg: #f9f5f5;
  --dark-bg: #2a2a2a;
  --success-color: #4caf50;
  --border-color: #e0e0e0;
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Poppins', sans-serif;
  --script-font: 'Dancing Script', cursive;
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--background-color);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  text-align: center;
}

.loader img {
  width: 150px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* Promo banner */
.promo-banner {
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.4rem;
}

.promo-banner p {
  margin: 0;
}

.promo-banner a {
  color: var(--accent-color);
  font-weight: 600;
  margin-left: 1rem;
}

.promo-banner a:hover {
  text-decoration: underline;
}

.highlight {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Estilos de seção */
.section-padding {
  padding: 10rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .subtitle {
  font-family: var(--script-font);
  color: var(--primary-color);
  font-size: 2.4rem;
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.section-header p {
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.8rem;
}

/* ======= ESTILOS DA NAVBAR APRIMORADA ======= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent-color);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.navbar.scrolled {
  padding: 1rem 0;
  background-color: rgba(248, 191, 191, 0.95);
  /* Versão semi-transparente */
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  /* Mantém o logo acima do menu mobile */
}

.logo-image {
  height: 5rem;
  transition: all 0.3s ease;
}

.scrolled .logo-image {
  height: 4rem;
}

/* Nav menu styling */
.nav-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

.nav-menu li {
  margin-left: 2.5rem;
  position: relative;
}

.nav-menu .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.nav-menu .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link:focus {
  color: var(--primary-dark);
}

.nav-menu .nav-link:hover:before,
.nav-menu .nav-link:focus:before {
  width: 100%;
}

/* Call to action button */
.nav-cta a {
  background-color: var(--primary-dark);
  color: white;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(212, 169, 167, 0.3);
  transition: all 0.3s ease;
}

.nav-cta a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 169, 167, 0.4);
}

/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1001;
  /* Mantém o toggle acima do menu */
}

.mobile-nav-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ======= ESTILOS DO HERO APRIMORADO ======= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 0;
  overflow: hidden;
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f9d1d1 0%, #e6a8a8 50%, #d4a9a7 100%);
  overflow: hidden;
  z-index: -1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(10px);
}

.circle-1 {
  top: -10%;
  right: 10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 192, 203, 0.4) 70%);
  animation: float 15s ease-in-out infinite;
}

.circle-2 {
  bottom: -20%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.8) 0%, rgba(212, 169, 167, 0.3) 70%);
  animation: float 18s ease-in-out infinite reverse;
}

.circle-3 {
  top: 40%;
  right: -10%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(249, 217, 217, 0.8) 0%, rgba(230, 168, 168, 0.3) 70%);
  animation: float 20s ease-in-out infinite 2s;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0.3;
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
  padding: 3rem;
  border-radius: 10px;
  position: relative;
}

.hero-content h1 {
  font-family: var(--heading-font);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: #f9f9f9;
  -webkit-text-stroke: 0.5px rgba(226, 226, 226, 0.3);
}

.hero-content h1 span {
  display: block;
  font-size: 3.6rem;
  font-weight: 400;
  margin-top: 1rem;
  font-family: var(--script-font);
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f9f9f9;
}

.hero-content h1,
.hero-content p,
.hero-content span {
  text-shadow: 0 2px 4px rgba(38, 23, 23, 0.847);
}

.hero-content h1,
.hero-content p {
  color: #f9f9f9;
}

.hero-content h1 {
  -webkit-text-stroke: 0.5px rgba(226, 226, 226, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  color: white;
}

.trust-item {
  text-align: center;
}

.trust-item .count {
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-light);
}

.trust-item .label {
  font-size: 1.4rem;
  opacity: 0.9;
}

/* Botões */
.btn-primary,
.btn-secondary {
  padding: 1.5rem 3rem;
  border-radius: 5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 169, 167, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 169, 167, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.btn-tertiary {
  display: inline-block;
  background-color: transparent;
  color: var(--secondary-color);
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  text-align: center;
}

.btn-tertiary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border: none;
  border-radius: 5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.6rem;
  margin-top: 2rem;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 169, 167, 0.3);
}

/* Animação pulsante para botões */
.pulse-button {
  position: relative;
}

.pulse-button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5rem;
  background-color: var(--primary-color);
  z-index: -1;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Sobre */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: rgba(0, 0, 0, 0.05);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  top: 3rem;
  left: 3rem;
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: 50%;
  width: 12rem;
  height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999; 
  pointer-events: none; 
  font-size: 1.4rem; 
  text-align: center; 
  line-height: 1.2; 
}

.experience-badge .number {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
}

.about-content {
  padding-right: 2rem;
}

.about-content .highlight-text {
  font-family: var(--script-font);
  color: var(--primary-color);
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.about-content .highlight-text:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.credentials {
  margin-top: 3rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.credential-icon {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.credential-icon ion-icon {
  font-size: 2.5rem;
}

.credential-text h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.credential-text p {
  color: var(--light-text);
  font-size: 1.5rem;
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 1;
}

.service-card h3 {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  padding: 2rem 2rem 1rem;
  color: var(--secondary-color);
}

.service-card>p {
  padding: 0 2rem 2rem;
  color: var(--light-text);
}

.service-details {
  padding: 0 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-option {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
}

.service-option h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.price {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

.old-price {
  color: var(--light-text);
  text-decoration: line-through;
  font-size: 1.6rem;
  font-weight: normal;
  margin-right: 1rem;
}

.service-option ul {
  margin-bottom: 1.5rem;
}

.service-option ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.service-option ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.maintenance {
  font-size: 1.4rem;
  color: var(--light-text);
  font-style: italic;
}

.service-card .btn-tertiary {
  margin: 0 2rem 2rem;
  display: block;
}

/* Resultados */
.results {
  background-color: var(--light-bg);
}

.results-tabs {
  margin-bottom: 5rem;
}

.tabs-header {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--light-text);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.tab-btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active:after {
  width: 30px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.before-after-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.before-after-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.before-after-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-img {
  z-index: 1;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-img {
  z-index: 0;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: white;
  z-index: 2;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.slider-handle:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.before-after-caption {
  padding: 1.5rem;
  text-align: center;
}

.before-after-caption p {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.results-cta {
  text-align: center;
  margin-top: 5rem;
}

.results-cta p {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Benefícios */
.benefits {
  position: relative;
  background: linear-gradient(rgba(252, 240, 240, 0.8), rgba(203, 162, 162, 0.8));
}


.benefits-wrapper {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 5rem;
  align-items: center;
}

.benefits-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.benefits-content .section-header {
  text-align: left;
}

.benefits-content .section-header h2:after {
  left: 0;
  transform: none;
}

.benefits-list {
  margin-top: 4rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.benefit-icon {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

.benefit-icon ion-icon {
  font-size: 2.5rem;
}

.benefit-text h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.benefit-text p {
  color: var(--light-text);
  font-size: 1.5rem;
}

.benefits-image {
  position: relative;
  text-align: center;
}

.benefits-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 80%;
  margin: 0 auto;
}

.pulse-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

.benefits-image .btn-primary {
  margin-top: 3rem;
}

/* Depoimentos */
.testimonials {
  background-color: var(--light-bg);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.testimonial-item {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  margin-bottom: 2rem;
  color: #FFD700;
  font-size: 2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 1rem;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  opacity: 0.3;
}

.testimonial-text:before {
  top: -2rem;
  left: -1rem;
}

.testimonial-text:after {
  bottom: -4rem;
  right: -1rem;
  transform: rotate(180deg);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 3px solid var(--primary-light);
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.author-info p {
  color: var(--light-text);
  font-size: 1.4rem;
}

.google-reviews {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.google-logo {
  height: 3rem;
  margin-right: 2rem;
}

.google-rating {
  text-align: left;
}

.stars {
  color: #FFD700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.google-rating p {
  color: var(--light-text);
  font-size: 1.4rem;
}

/* Instagram Feed */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.instagram-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 200px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay ion-icon {
  font-size: 2.4rem;
  margin-right: 0.8rem;
}

.instagram-cta {
  text-align: center;
}

/* Contato */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.contact-card {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  background-color: var(--primary-light);
  color: var(--primary-color);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.contact-icon ion-icon {
  font-size: 3rem;
}

.contact-card h4 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.contact-card p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-links a {
  background-color: var(--primary-light);
  color: var(--primary-color);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.social-links ion-icon {
  font-size: 2rem;
}

/* Formulário */
.contact-form {
  background-color: white;
  padding: 4rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--secondary-color);
}

input,
textarea,
select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--body-font);
  font-size: 1.6rem;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(212, 169, 167, 0.2);
}

.services-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.checkbox-item input {
  width: auto;
  margin-right: 1rem;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--light-text);
  text-align: center;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 8rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-logo {
  text-align: center;
}

.footer-logo-image {
  height: 8rem;
  margin: 0 auto 2rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.created-by {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
}

.created-by a {
  color: var(--primary-light);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-links h4:after,
.footer-services h4:after,
.footer-contact h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-services ul li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li ion-icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
}

.footer-social a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}

.heart {
  color: var(--primary-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  width: auto;
  height: auto;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float ion-icon {
  font-size: 2.4rem;
  margin-right: 1rem;
}

.whatsapp-float span {
  font-weight: 600;
  font-size: 1.6rem;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  background-color: var(--primary-color);
  color: white;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(212, 169, 167, 0.3);
  z-index: 100;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.back-to-top ion-icon {
  font-size: 2.4rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  html {
    font-size: 60%;
  }

  .benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .benefits-image {
    order: -1;
  }

  .benefits-content {
    text-align: center;
  }

  .benefits-content .section-header {
    text-align: center;
  }

  .benefits-content .section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .benefit-icon {
    margin: 0 auto 1.5rem;
  }

  .benefits-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 992px) {

  .hero-content h1 {
    font-size: 4.5rem;
  }

  .hero-content h1 span {
    font-size: 3rem;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .about-content {
    padding-right: 0;
    order: -1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-menu .nav-link {
    display: block;
    font-size: 1.8rem;
    padding: 1rem 0;
    color: var(--secondary-color);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 3rem 3rem;
    transition: all 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 0 0 2rem;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    font-size: 1.8rem;
    padding: 1rem 0;
  }

  .nav-cta {
    margin-top: 2rem;
    width: 100%;
  }

  .nav-cta a {
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Adicionar overlay escuro quando o menu está aberto */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  /* Ajustes no hero para telas médias */
  .hero-content h1 {
    font-size: 4.5rem;
  }

  .hero-content h1 span {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .section-padding {
    padding: 8rem 0;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 12rem 0 5rem;
  }

  .hero-content h1 {
    font-size: 3.8rem;
  }

  .hero-content h1 span {
    font-size: 2.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 2rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-checkbox {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-links,
  .footer-services,
  .footer-contact {
    text-align: center;
  }

  .footer-links h4:after,
  .footer-services h4:after,
  .footer-contact h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
  }

  .back-to-top {
    bottom: 2rem;
    left: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-content {
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: 3.4rem;
  }

  .hero-content p {
    font-size: 1.6rem;
  }

  .logo-image {
    height: 4rem;
  }

  .scrolled .logo-image {
    height: 3.5rem;
  }
}

/* Add these styles to your style.css file */

/* Increase size for before-after containers on desktop */
@media screen and (min-width: 992px) {
  .before-after-container {
    height: 500px;
    /* Increased from 300px */
    max-width: 800px;
    /* Set a maximum width */
    margin: 0 auto;
    /* Center the container */
  }

  /* Adjust gallery layout for better desktop presentation */
  .before-after-gallery {
    grid-template-columns: 1fr;
    /* Change to single column for larger images */
    max-width: 800px;
    margin: 0 auto;
  }

  /* Increase the tab panel size */
  .tab-panel {
    max-width: 900px;
    margin: 0 auto;
  }

  /* Make the slider handle more prominent */
  .slider-handle {
    width: 6px;
    /* Slightly thicker */
  }

  .slider-handle:after {
    width: 50px;
    /* Larger handle */
    height: 50px;
    /* Larger handle */
  }

  /* Improve the caption */
  .before-after-caption {
    padding: 2rem;
  }

  .before-after-caption p {
    font-size: 1.8rem;
  }
}

/* Add some enhancements to make the slider more interactive */
.before-after-container:hover .slider-handle:after {
  box-shadow: 0 0 15px rgba(212, 169, 167, 0.6);
  transform: translate(-50%, -50%) scale(1.1);
  transition: all 0.3s ease;
}

/* Add before/after labels to make comparison clearer */
.before-after-container {
  position: relative;
}

.before-after-container:before,
.before-after-container:after {
  position: absolute;
  top: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 10;
  font-size: 1.4rem;
}

.before-after-container:before {
  content: "Antes";
  left: 20px;
}

.before-after-container:after {
  content: "Depois";
  right: 20px;
}

/* WhatsApp Float Button - Versão completamente redonda */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--accent-color);
  color: var(--light-text);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  /* Isso faz o botão ficar completamente redondo */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centraliza o ícone */
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: var(--transition);
  padding: 0;
  /* Remove o padding para manter a forma circular perfeita */
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float ion-icon {
  font-size: 3rem;
  /* Ícone maior */
  margin: 0;
  /* Remove margens para centralização perfeita */
}

/* Esconde o texto para ter apenas o ícone */
.whatsapp-float span {
  display: none;
}

/* Adicionar texto flutuante ao passar o mouse */
.whatsapp-float::before {
  content: "Fale conosco";
  position: absolute;
  top: -40px;
  right: 0;
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Seta para o tooltip */
.whatsapp-float::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 20px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
}