.elementor-3950 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-3950 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 *//* ========================================
   FONT IMPORT
======================================== */
@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');

/* ========================================
   LANDING PAGE V2 - DR. RAFAEL LAZAROTTO
   Design Moderno e Elegante - Alta Conversão
   Cores: #8A1D2F (Principal), #ffffff, #E5E5E5
   Mobile First Design
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

:root {
  --color-primary: #8A1D2F;
  --color-primary-dark: #6B1524;
  --color-primary-light: #A8243B;
  --color-white: #ffffff;
  --color-gray-light: #E5E5E5;
  --color-gray-medium: #9E9E9E;
  --color-gray-dark: #333333;
  --color-text: #2C2C2C;
  --color-text-light: #555555;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ========================================
   HERO SECTION V2
======================================== */
.hero-section-v2 {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 2rem 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-v2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-v2-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.hero-v2-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-v2-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-v2-logo {
  max-width: 200px !important;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-v2-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: center;
}

.hero-v2-title {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-v2-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 500;
}

.hero-v2-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-v2-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.0625rem;
  font-weight: 800;
  padding: 1.125rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 450px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-v2-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: #f8f8f8;
}

.hero-v2-cta-button:active {
  transform: translateY(-1px);
}

.hero-v2-cta-icon {
  width: 24px;
  height: 24px;
}

.hero-v2-cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 450px;
  font-weight: 500;
}

.hero-v2-image-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.hero-v2-image-decoration {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  z-index: 0;
}

.hero-v2-image {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-section-v2 {
    padding: 4rem 2.5rem;
  }

  .hero-v2-content {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .hero-v2-logo-wrapper {
    justify-content: flex-start;
  }

  .hero-v2-text-content {
    flex: 1;
    text-align: left;
  }

  .hero-v2-title {
    font-size: 3rem;
  }

  .hero-v2-subtitle {
    font-size: 1.1875rem;
  }

  .hero-v2-cta-wrapper {
    align-items: flex-start;
  }

  .hero-v2-image-container {
    flex-shrink: 0;
    max-width: 500px;
    margin: 0;
  }
}

/* ========================================
   SERVICES SECTION V2
======================================== */
.services-section-v2 {
  position: relative;
  background: var(--color-white);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.services-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(138, 29, 47, 0.025) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}

.services-v2-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 1;
}

.services-v2-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-v2-title {
  color: var(--color-primary);
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.services-v2-intro {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

.services-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-v2-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.service-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(138, 29, 47, 0.15);
  border-color: rgba(138, 29, 47, 0.15);
}

.service-v2-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-v2-icon {
  width: 34px;
  height: 34px;
  color: var(--color-white);
  stroke-width: 2;
}

.service-v2-title {
  color: var(--color-primary);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-v2-description {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.service-v2-benefit {
  display: inline-block;
  background: rgba(138, 29, 47, 0.08);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
}

.service-v2-benefit-text {
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .services-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .services-v2-title {
    font-size: 2.5rem;
  }
}

/* ========================================
   BENEFITS SECTION V2
======================================== */
.benefits-section-v2 {
  position: relative;
  background: linear-gradient(180deg, #f9f9f9 0%, var(--color-white) 100%);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.benefits-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(138, 29, 47, 0.02) 25%, transparent 25%);
  background-size: 70px 70px;
  pointer-events: none;
}

.benefits-v2-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

.benefits-v2-title {
  color: var(--color-primary);
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.benefits-v2-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefits-v2-paragraph {
  color: var(--color-text);
  font-size: 1.0625rem;
  line-height: 1.75;
  text-align: center;
  font-weight: 500;
}

.benefits-v2-list-wrapper {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefits-v2-subtitle {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  text-align: center;
}

.benefits-v2-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-v2-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-v2-icon-wrapper {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-v2-icon {
  width: 18px;
  height: 18px;
  color: var(--color-white);
  stroke-width: 3;
}

.benefit-v2-text {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
  padding-top: 0.25rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .benefits-v2-title {
    font-size: 2.5rem;
  }

  .benefits-v2-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ========================================
   FOR WHO SECTION V2
======================================== */
.forwho-section-v2 {
  position: relative;
  background: var(--color-primary);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.forwho-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.forwho-v2-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.forwho-v2-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.forwho-v2-icon-header {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.forwho-v2-header-icon {
  width: 36px;
  height: 36px;
  color: var(--color-white);
  stroke-width: 2;
}

.forwho-v2-title {
  color: var(--color-white);
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.forwho-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.forwho-v2-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.forwho-v2-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.forwho-v2-card-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forwho-v2-card-text {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.6;
  padding-top: 0.5rem;
  font-weight: 500;
}

.forwho-v2-closing {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.forwho-v2-closing-text {
  color: var(--color-primary);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .forwho-v2-title {
    font-size: 2.5rem;
  }

  .forwho-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ========================================
   ABOUT DOCTOR SECTION V2
======================================== */
.about-doctor-section-v2 {
  position: relative;
  background: var(--color-white);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.about-doctor-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(138, 29, 47, 0.025) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}

.about-doctor-v2-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 1;
}

.about-doctor-v2-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-doctor-v2-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.about-doctor-v2-image-decoration {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 100%;
  height: 100%;
  background: rgba(138, 29, 47, 0.1);
  border-radius: 30px;
  z-index: 0;
}

.about-doctor-v2-image {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.about-doctor-v2-text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-doctor-v2-title {
  color: var(--color-primary);
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-doctor-v2-description {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-doctor-v2-paragraph {
  color: var(--color-text);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 500;
}

.about-doctor-v2-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, #f9f9f9 0%, var(--color-gray-light) 100%);
  padding: 2rem 1.5rem;
  border-radius: 20px;
}

.about-doctor-v2-highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-doctor-v2-highlight-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.about-doctor-v2-highlight-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
}

.about-doctor-v2-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 800;
  padding: 1.125rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 25px rgba(138, 29, 47, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-doctor-v2-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(138, 29, 47, 0.4);
}

.about-doctor-v2-cta-icon {
  width: 22px;
  height: 22px;
}

@media (min-width: 1024px) {
  .about-doctor-v2-content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 5rem;
  }

  .about-doctor-v2-text-content {
    flex: 1;
  }

  .about-doctor-v2-title {
    font-size: 2.5rem;
  }

  .about-doctor-v2-image-wrapper {
    flex-shrink: 0;
    max-width: 500px;
    margin: 0;
  }
}

/* ========================================
   HOW IT WORKS SECTION V2
======================================== */
.howitworks-section-v2 {
  position: relative;
  background: linear-gradient(180deg, var(--color-gray-light) 0%, #f5f5f5 100%);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.howitworks-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(138, 29, 47, 0.02) 1px, transparent 1px),
                    linear-gradient(0deg, rgba(138, 29, 47, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.howitworks-v2-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.howitworks-v2-title {
  color: var(--color-primary);
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

.howitworks-v2-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.howitworks-v2-step {
  position: relative;
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.howitworks-v2-step-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.howitworks-v2-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  font-size: 1.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.howitworks-v2-step-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(138, 29, 47, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howitworks-v2-step-icon {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
  stroke-width: 2;
}

.howitworks-v2-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.howitworks-v2-step-title {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.howitworks-v2-step-description {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

.howitworks-v2-step-connector {
  display: none;
}

.howitworks-v2-cta-wrapper {
  display: flex;
  justify-content: center;
}

.howitworks-v2-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 800;
  padding: 1.125rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 25px rgba(138, 29, 47, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.howitworks-v2-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(138, 29, 47, 0.4);
}

.howitworks-v2-cta-icon {
  width: 22px;
  height: 22px;
}

@media (min-width: 768px) {
  .howitworks-v2-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .howitworks-v2-steps-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .howitworks-v2-step {
    flex: 1;
  }

  .howitworks-v2-step-connector {
    display: block;
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
  }

  .howitworks-v2-step:last-child .howitworks-v2-step-connector {
    display: none;
  }
}

/* ========================================
   DIFFERENTIALS SECTION V2
======================================== */
.differentials-section-v2 {
  position: relative;
  background: var(--color-white);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.differentials-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(138, 29, 47, 0.025) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}

.differentials-v2-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.differentials-v2-title {
  color: var(--color-primary);
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

.differentials-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.differential-v2-card {
  background: linear-gradient(135deg, #fafafa 0%, var(--color-white) 100%);
  padding: 2.25rem 2rem;
  border-radius: 20px;
  border: 2px solid var(--color-gray-light);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.differential-v2-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(138, 29, 47, 0.12);
}

.differential-v2-icon-wrapper {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.differential-v2-icon {
  width: 32px;
  height: 32px;
  color: var(--color-white);
  stroke-width: 2;
}

.differential-v2-title {
  color: var(--color-primary);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
}

.differential-v2-description {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (min-width: 768px) {
  .differentials-v2-title {
    font-size: 2.5rem;
  }

  .differentials-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .differentials-v2-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   TESTIMONIALS SECTION V2
======================================== */
.testimonials-section-v2 {
  position: relative;
  background: linear-gradient(180deg, var(--color-gray-light) 0%, #f5f5f5 100%);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.testimonials-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(138, 29, 47, 0.025) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}

.testimonials-v2-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.testimonials-v2-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-v2-title {
  color: var(--color-primary);
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.testimonials-v2-subtitle {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.testimonials-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-v2-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.testimonial-v2-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(138, 29, 47, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-v2-quote {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  fill: var(--color-primary);
}

.testimonial-v2-stars {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}

.testimonial-v2-star {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  fill: var(--color-primary);
}

.testimonial-v2-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-v2-text {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
}

.testimonial-v2-author {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
}

@media (min-width: 768px) {
  .testimonials-v2-title {
    font-size: 2.5rem;
  }

  .testimonials-v2-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* ========================================
   FAQ SECTION V2
======================================== */
.faq-section-v2 {
  position: relative;
  background: var(--color-white);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.faq-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(138, 29, 47, 0.02) 25%, transparent 25%);
  background-size: 70px 70px;
  pointer-events: none;
}

.faq-v2-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.faq-v2-title {
  color: var(--color-primary);
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.faq-v2-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-v2-item {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--color-gray-light);
  transition: all 0.3s ease;
}

.faq-v2-item:hover {
  border-color: rgba(138, 29, 47, 0.3);
  box-shadow: 0 6px 20px rgba(138, 29, 47, 0.08);
}

.faq-v2-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-v2-trigger:hover {
  background: rgba(138, 29, 47, 0.02);
}

.faq-v2-question {
  color: var(--color-primary);
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: left;
  flex: 1;
  line-height: 1.4;
}

.faq-v2-icon-wrapper {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-v2-icon {
  width: 20px;
  height: 20px;
  color: var(--color-white);
  stroke-width: 2.5;
}

.faq-v2-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-v2-content-open {
  max-height: 600px;
}

.faq-v2-answer {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.75;
  padding: 0 2rem 1.75rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .faq-v2-title {
    font-size: 2.5rem;
  }

  .faq-v2-question {
    font-size: 1.1875rem;
  }
}

/* ========================================
   FINAL CTA SECTION V2
======================================== */
.finalcta-section-v2 {
  position: relative;
  min-height: 650px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 5rem 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.finalcta-v2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://paginadecontatolp.com.br/wp-content/uploads/2026/03/2W1A1809.jpg-scaled.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.finalcta-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.finalcta-v2-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.finalcta-v2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.finalcta-v2-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finalcta-v2-icon {
  width: 40px;
  height: 40px;
  color: var(--color-white);
  stroke-width: 2;
}

.finalcta-v2-title {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.finalcta-v2-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 500;
}

.finalcta-v2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 800;
  padding: 1.25rem 3rem;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}

.finalcta-v2-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.4);
  background: #f8f8f8;
}

.finalcta-v2-button-icon {
  width: 26px;
  height: 26px;
}

.finalcta-v2-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 550px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .finalcta-v2-title {
    font-size: 2.75rem;
  }
}

/* ========================================
   FOOTER SECTION V2
======================================== */
.footer-section-v2 {
  position: relative;
  background: #1a1a1a;
  padding: 4rem 1.5rem 2rem;
  overflow: hidden;
}

.footer-v2-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(138, 29, 47, 0.15) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}

.footer-v2-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.footer-v2-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-v2-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-v2-logo {
  max-width: 220px !important;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-v2-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

.footer-v2-info,
.footer-v2-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-v2-info-title,
.footer-v2-hours-title {
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-v2-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-v2-info-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.footer-v2-info-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  stroke-width: 2;
}

.footer-v2-info-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 500;
}

.footer-v2-hours-content {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.footer-v2-hours-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  stroke-width: 2;
}

.footer-v2-hours-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

.footer-v2-hours-detail {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.footer-v2-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(138, 29, 47, 0.3);
}

.footer-v2-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .footer-v2-content {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 3rem;
  }
}

/* ========================================
   GENERAL LANDING PAGE CONTAINER
======================================== */
.landing-page-container {
  width: 100%;
  overflow-x: hidden;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a024d0 *//* garante que não vai surgir barra horizontal */
html, body { overflow-x: hidden; }

.btn-whatsapp{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.btn-whatsapp:before,
.btn-whatsapp:after{
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  inset: -20px;              /* no lugar de left/right/top/bottom */
  animation: animate 1.5s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.pulsaDelay:after{ animation-delay: 0.5s; }

@keyframes animate{
  0%{ transform: scale(0.5); opacity: 0; }
  50%{ opacity: 1; }
  100%{ transform: scale(1.2); opacity: 0; }
}/* End custom CSS */