:root {
  --specialist-primary: #FF7A00;
  --specialist-primary-dark: #D96D00;
  --specialist-primary-light: #FFA733;
  --specialist-secondary: #FFD8A2;
  --specialist-text-dark: #1A1A1A;
  --specialist-text-light: #666666;
  --specialist-white: #FFFFFF;
  --specialist-background: #F8F9FA;
  --specialist-shadow: rgba(0, 0, 0, 0.08);
  --specialist-radius: 15px;
  --checkout-success: #10B981;
  --checkout-success-dark: #059669;
  --checkout-urgent: #dc3545;
  --checkout-urgent-light: #ff6b6b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: transparent;
  color: var(--specialist-text-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 90px;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.7; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Therapist trust */
.therapist-trust-unique-section-2025 {
  background-color: #f8f9fa;
  padding: 20px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

.therapist-trust-unique-container-2025 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.therapist-trust-unique-content-2025 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.therapist-unique-logo-2025 {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.therapist-trust-unique-text-2025 {
  max-width: 700px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.therapist-trust-unique-text-2025 strong {
  display: block;
  margin-bottom: 5px;
  color: #FF7A00;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Specialist */
.specialist-certifications-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

.specialist-certifications-section::before,
.checkout-pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 215, 162, 0.05) 100%);
  z-index: 0;
}

.specialist-container,
.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.specialist-urgency-banner {
  margin-bottom: 35px;
  padding: 25px 35px;
  border-radius: var(--specialist-radius);
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  box-shadow: 0 10px 40px rgba(220, 53, 69, 0.3);
  overflow: hidden;
  animation: pulse 2s infinite;
}

.specialist-urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.specialist-urgency-content i {
  font-size: 1.4rem;
  animation: sparkle 1.5s infinite;
}

.specialist-congratulations {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  padding: 50px 40px;
  border: 2px solid rgba(255, 122, 0, 0.1);
  border-radius: var(--specialist-radius);
  background: #fff;
  box-shadow: 0 15px 50px var(--specialist-shadow);
  text-align: center;
}

.specialist-congrats-icon {
  margin-bottom: 25px;
  font-size: 5rem;
  filter: drop-shadow(0 5px 15px rgba(255, 122, 0, 0.3));
}

.specialist-congrats-title {
  margin: 0 0 20px;
  color: var(--specialist-primary-dark);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.specialist-congrats-subtitle {
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--specialist-text-dark);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.specialist-exclusive-banner {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 700px;
  margin: 30px auto;
  padding: 20px 30px;
  border: 2px solid var(--specialist-primary);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 215, 162, 0.1) 100%);
}

.specialist-exclusive-banner i {
  color: var(--specialist-primary);
  font-size: 2rem;
}

.specialist-exclusive-banner p {
  margin: 0;
  color: var(--specialist-primary-dark);
  font-size: 1.1rem;
}

.specialist-benefits,
.specialist-materials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.specialist-materials {
  margin: 20px 0 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 2px solid var(--specialist-primary-light);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 215, 162, 0.1) 100%);
  color: var(--specialist-primary-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

.benefit-item:hover,
.included-item:hover,
.feature-item-x7k9m:hover {
  transform: translateY(-3px);
}

.benefit-item i,
.material-item i {
  color: var(--specialist-primary);
}

.material-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 8px;
  background: rgba(255, 122, 0, 0.05);
  color: var(--specialist-text-dark);
  font-weight: 600;
}

.specialist-recognition {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.recognition-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border: 2px solid #dc3545;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
  color: #dc3545;
  font-size: 1.1rem;
  font-weight: 700;
}

.specialist-program-explanation {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 40px;
  border: 2px solid rgba(255, 122, 0, 0.1);
  border-radius: var(--specialist-radius);
  background: #fff;
  box-shadow: 0 15px 50px var(--specialist-shadow);
}

.specialist-program-explanation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--specialist-primary) 0%, var(--specialist-primary-light) 100%);
}

.specialist-explanation-title {
  margin: 0 0 20px;
  color: var(--specialist-primary-dark);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
}

.specialist-explanation-subtitle {
  margin-bottom: 30px;
  text-align: center;
}

.specialist-exclusive-text {
  display: inline-block;
  margin: 0;
  padding: 15px 25px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.specialist-explanation-content {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  text-align: left;
}

.specialist-explanation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--specialist-primary) 0%, var(--specialist-primary-light) 100%);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

.specialist-explanation-icon i {
  color: #fff;
  font-size: 2rem;
}

.specialist-explanation-text {
  flex: 1;
}

.specialist-explanation-text p {
  margin: 0 0 20px;
  color: var(--specialist-text-dark);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
}

.specialist-explanation-text strong {
  color: var(--specialist-primary-dark);
}

.specialist-highlight,
.specialist-highlighted-text,
.medos-cert-unique-highlight {
  color: var(--specialist-primary);
  font-weight: 800;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 122, 0, 0.2) 60%);
  padding: 0 4px;
}

.specialist-pioneer-benefits {
  margin: 20px 0;
  padding: 20px;
  border-left: 5px solid var(--specialist-primary);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 215, 162, 0.05) 100%);
}

.specialist-pioneer-benefits h3 {
  margin: 0 0 10px;
  color: var(--specialist-primary-dark);
}

.specialist-alert-text {
  padding: 15px;
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-radius: 10px;
  background: rgba(255, 0, 0, 0.05);
  color: #d32f2f;
  font-weight: 600;
}

.specialist-smart-decision {
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 122, 0, 0.1);
}

.specialist-section-header {
  margin-bottom: 20px;
  text-align: center;
}

.specialist-section-title {
  display: inline-block;
  margin: 0 0 15px;
  color: var(--specialist-primary-dark);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
}

.specialist-section-divider {
  width: 100px;
  height: 5px;
  margin: 0 auto 15px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--specialist-primary) 0%, var(--specialist-primary-light) 100%);
}

.specialist-section-subtitle {
  margin: 0 0 40px;
  color: var(--specialist-text-light);
  font-size: 1.2rem;
  font-weight: 600;
}

.specialist-certifications-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 20px;
  color: var(--specialist-text-dark);
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
}

.specialist-intro-box {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 215, 162, 0.1) 100%);
}

.specialist-intro-box h3 {
  margin: 0 0 15px;
  color: var(--specialist-primary-dark);
}

.specialist-intro-note {
  margin-top: 15px;
  font-weight: 700;
}

.specialist-certifications-grid {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.specialist-certification-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--specialist-radius);
  background: #fff;
  box-shadow: 0 10px 40px var(--specialist-shadow);
  transition: all 0.4s ease;
}

.specialist-main-card {
  border: 3px solid var(--specialist-primary);
  transform: scale(1.05);
}

.specialist-certification-card:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.3);
}

.specialist-certification-number,
.checkout-certification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--specialist-primary) 0%, var(--specialist-primary-light) 100%);
  color: #fff;
}

.specialist-certification-number {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 45px;
  height: 45px;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
  font-size: 1.2rem;
  font-weight: 800;
}

.specialist-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 5px 15px;
  border-radius: 20px;
  background: #dc3545;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  animation: blink 1.5s infinite;
}

.specialist-price-tag {
  position: absolute;
  top: 70px;
  left: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 15px;
  border: 2px solid var(--specialist-primary);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.price-original {
  color: #999;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: line-through;
}

.price-discount {
  margin-top: 2px;
  color: var(--specialist-primary);
  font-size: 1.3rem;
  font-weight: 800;
}

.specialist-certificate-display {
  width: 100%;
  overflow: hidden;
}

.specialist-certification-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.specialist-certificate-display:hover .specialist-certification-image {
  transform: scale(1.05);
}

.specialist-certification-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 30px;
}

.specialist-certification-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
  padding-bottom: 15px;
  color: var(--specialist-primary-dark);
  font-size: 1.4rem;
  font-weight: 800;
}

.specialist-certification-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--specialist-primary) 0%, var(--specialist-primary-light) 100%);
}

.specialist-certification-title i {
  color: var(--specialist-primary);
  font-size: 1.3rem;
}

.specialist-certification-description {
  flex-grow: 1;
  margin: 0 0 20px;
  color: var(--specialist-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.specialist-certification-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 20px;
  border: 2px solid rgba(255, 122, 0, 0.2);
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 215, 162, 0.1) 100%);
  color: var(--specialist-primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.specialist-certification-tag i {
  color: var(--specialist-primary);
}

.specialist-included-content {
  margin: 40px 0;
  padding: 40px;
  border: 2px solid rgba(255, 122, 0, 0.1);
  border-radius: var(--specialist-radius);
  background: #fff;
  box-shadow: 0 15px 50px var(--specialist-shadow);
}

.specialist-included-title {
  margin: 0 0 30px;
  color: var(--specialist-primary-dark);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
}

.specialist-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.included-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 2px solid rgba(255, 122, 0, 0.1);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 215, 162, 0.05) 100%);
  text-align: center;
  transition: all 0.3s ease;
}

.included-item:hover {
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.2);
}

.included-item i {
  margin-bottom: 15px;
  color: var(--specialist-primary);
  font-size: 2.5rem;
}

.included-item strong {
  margin-bottom: 8px;
  color: var(--specialist-primary-dark);
  font-size: 1.1rem;
}

.included-item span {
  color: var(--specialist-text-light);
  font-size: 0.9rem;
}

.specialist-final-urgency {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 215, 162, 0.05) 100%);
  text-align: center;
}

.specialist-final-urgency h3 {
  margin: 0 0 15px;
  color: var(--specialist-primary-dark);
}

.specialist-final-urgency p {
  margin: 0 0 15px;
  font-size: 1.1rem;
}

.specialist-final-urgency ul {
  max-width: 600px;
  margin: 20px auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.specialist-final-urgency li {
  margin-bottom: 10px;
}

.specialist-final-price {
  margin-top: 20px !important;
  color: var(--specialist-primary);
  font-size: 1.15rem !important;
  font-weight: 700;
}

/* Reviews */
.reviews-section {
  background: #f8f9fa;
  padding: 40px 20px;
}

.reviews-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-summary,
.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.reviews-rating {
  font-size: 1.4rem;
}

.reviews-stars,
.review-stars {
  display: flex;
  gap: 2px;
}

.reviews-stars img,
.review-stars img {
  width: 17px;
  height: 17px;
}

.reviews-count {
  color: #4b5563;
  font-size: 0.95rem;
}

.reviews-google-logo {
  width: 110px;
  height: auto;
  margin-top: 8px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  padding: 18px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #f3f4f6;
}

.review-header strong {
  display: block;
  font-size: 0.92rem;
}

.review-header span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
  font-size: 0.78rem;
}

.review-header span img {
  width: 14px;
  height: 14px;
}

.review-card p {
  margin: 12px 0 0;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Cert system */
.medos-cert-unique-section {
  padding: 40px 0 60px;
  background: #fff;
  color: #1f2937;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.medos-cert-unique-section * {
  box-sizing: border-box;
}

.medos-cert-unique-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.medos-cert-unique-urgency {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF7A00 0%, #FFA733 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.medos-cert-unique-congrats {
  margin-bottom: 40px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 122, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.medos-cert-unique-icon {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 4rem;
}

.medos-cert-unique-title {
  margin: 0 0 15px;
  color: #D96D00;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.medos-cert-unique-subtitle {
  max-width: 700px;
  margin: 0 auto 25px;
  color: #1f2937;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}

.medos-cert-unique-exclusive {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 650px;
  margin: 25px auto;
  padding: 18px 25px;
  border: 2px solid #FFA733;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(255, 215, 162, 0.08) 100%);
}

.medos-cert-unique-exclusive i {
  color: #FF7A00;
  font-size: 1.8rem;
}

.medos-cert-unique-exclusive p {
  margin: 0;
  color: #D96D00;
  font-size: 1.05rem;
  text-align: left;
}

.medos-cert-unique-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

.medos-cert-unique-content {
  flex: 1.2;
}

.medos-cert-unique-img-wrap {
  flex: 1;
  max-width: 500px;
}

.medos-cert-unique-benefits {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.medos-cert-unique-benefit {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 15px;
  border: 1px solid rgba(255, 122, 0, 0.1);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 215, 162, 0.05) 100%);
  transition: transform 0.2s;
}

.medos-cert-unique-benefit:hover {
  transform: translateX(5px);
}

.medos-cert-unique-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A00 0%, #FFA733 100%);
  color: #fff;
  font-weight: 700;
}

.medos-cert-unique-text {
  margin: 0 0 1.5rem;
  color: #1f2937;
  font-size: 1.05rem;
  line-height: 1.7;
}

.medos-cert-unique-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.medos-cert-unique-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.medos-cert-unique-btn-primary {
  background: linear-gradient(135deg, #FF7A00 0%, #FFA733 100%);
  color: #fff;
}

.medos-cert-unique-btn-secondary {
  border: 2px solid #FF7A00;
  background: transparent;
  color: #FF7A00;
}

.medos-cert-unique-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.medos-cert-unique-btn-secondary:hover {
  background: #FF7A00;
  color: #fff;
}

.medos-cert-unique-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(255, 122, 0, 0.15);
  object-fit: cover;
}

/* MEC bonus */
.mec-bonus-section {
  padding: 58px 20px;
  background: #f8f9fa;
}

.mec-bonus-container {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 42px;
  max-width: 1100px;
  margin: 0 auto;
}

.mec-bonus-copy h1 {
  margin: 0 0 18px;
  color: #D96D00;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.15;
}

.mec-bonus-copy p {
  color: #1f2937;
  font-size: 1.08rem;
}

.mec-fee {
  padding: 14px 16px;
  border-left: 4px solid #FF7A00;
  border-radius: 0 8px 8px 0;
  background: #fff3e6;
  font-weight: 600;
}

.mec-certificate {
  width: 314px;
  height: auto;
  justify-self: center;
  border-radius: 10px;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.12);
}

/* Hotmart */
.hotmart-trust-section {
  background-color: #f8f9fa;
  padding: 20px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.hotmart-trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotmart-trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hotmart-logo {
  height: 100px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.hotmart-trust-text {
  max-width: 600px;
  color: #555;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}

.hotmart-trust-text strong {
  color: #2c5aa0;
  font-weight: 600;
}

/* Bonus */
.bonus-section-x7k9m {
  display: flex;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 40px 20px;
  background: #F9FAFB;
  font-family: 'Montserrat', sans-serif;
}

.bonus-section-x7k9m * {
  box-sizing: border-box;
}

.bonus-container-x7k9m {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.bonus-header-x7k9m {
  position: relative;
  margin-bottom: 25px;
  padding: 30px 25px;
  border-top: 4px solid #FF7A00;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.bonus-icon-x7k9m {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(255, 122, 0, 0.3));
}

.bonus-header-x7k9m h2 {
  margin: 0 0 10px;
  color: #D96D00;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.bonus-header-x7k9m p {
  margin: 0;
  color: #6B7280;
  font-size: 1.1rem;
  font-weight: 600;
}

.bonus-card-x7k9m {
  position: relative;
  overflow: hidden;
  border: 2px solid #FF7A00;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.bonus-card-x7k9m:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(255, 122, 0, 0.25);
}

.bonus-badges-x7k9m {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
}

.badge-bonus-x7k9m {
  padding: 8px 16px;
  border-radius: 25px;
  background: #FF7A00;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.badge-price-x7k9m {
  padding: 8px 12px;
  border: 2px solid #10B981;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.old-price-x7k9m {
  display: block;
  color: #6B7280;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: line-through;
}

.new-price-x7k9m {
  display: block;
  margin-top: 2px;
  color: #10B981;
  font-size: 0.9rem;
  font-weight: 800;
}

.image-container-x7k9m {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 167, 51, 0.05) 100%);
}

.bonus-image-x7k9m {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.image-overlay-x7k9m {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.bonus-card-x7k9m:hover .bonus-image-x7k9m {
  transform: scale(1.05);
}

.bonus-content-x7k9m {
  padding: 30px;
}

.content-header-x7k9m {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #FF7A00;
}

.content-header-x7k9m h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #D96D00;
  font-size: 1.5rem;
  font-weight: 800;
}

.content-header-x7k9m h3 i {
  color: #FF7A00;
  font-size: 1.3rem;
}

.subtitle-x7k9m {
  margin: 0 0 10px;
  color: #D96D00;
  font-size: 1.1rem;
  font-weight: 700;
}

.description-x7k9m {
  margin: 0;
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.6;
}

.features-grid-x7k9m {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.feature-item-x7k9m {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 8px;
  background: rgba(255, 122, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item-x7k9m i {
  flex-shrink: 0;
  width: 20px;
  color: #FF7A00;
  font-size: 1rem;
  text-align: center;
}

.feature-item-x7k9m span {
  color: #1A1A1A;
  font-size: 0.9rem;
  font-weight: 600;
}

.benefits-section-x7k9m {
  padding: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 4px solid #10B981;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.05);
}

.benefits-section-x7k9m h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  color: #10B981;
  font-size: 1.1rem;
  font-weight: 700;
}

.benefits-list-x7k9m {
  display: grid;
  gap: 10px;
}

.benefit-item-x7k9m {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-item-x7k9m i {
  flex-shrink: 0;
  width: 18px;
  margin-top: 2px;
  color: #10B981;
  font-size: 1rem;
}

.benefit-item-x7k9m span {
  color: #1A1A1A;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* App */
.app-section {
  padding: 4rem 0;
  background-color: #fff;
  color: #1f2937;
  font-family: sans-serif;
  line-height: 1.5;
}

.app-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.app-section .container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.app-section .flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.app-section .col {
  flex: 1;
}

.app-section .heading-main {
  margin-bottom: 1rem;
  color: #1f2937;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.app-section .heading-sub {
  margin-bottom: 1.5rem;
  color: #FF7A00;
  font-size: 1.5rem;
  font-weight: 700;
}

.app-section .text-regular {
  margin-bottom: 1.5rem;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}

.app-section .text-highlight {
  color: #FF7A00;
  font-weight: 600;
}

.app-section .badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  background-color: #FF7A00;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.app-section .store-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.app-section .store-btn {
  display: block;
  max-width: 200px;
  transition: transform 0.3s ease, opacity 0.3s;
}

.app-section .store-btn:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.app-section .store-img {
  width: 180px;
  height: auto;
  min-width: 180px;
  object-fit: contain;
}

.app-section .feature-list {
  margin: 2rem 0;
  list-style: none;
}

.app-section .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.app-section .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: rgba(255, 122, 0, 0.1);
  color: #FF7A00;
}

.app-section .phone-mockup {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* TU certification */
.tu-certification-section {
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  background-color: #f8f9fa;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  overflow: hidden;
}

.tu-certification-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tu-certification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.tu-certification-text {
  flex: 1;
  min-width: 0;
}

.tu-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 15px;
  border-radius: 4px;
  background-color: #1E3159;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
}

.tu-title {
  margin: 0 0 8px;
  color: #222;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
}

.tu-subtitle {
  margin: 0 0 20px;
  color: #1E3159;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.tu-description,
.tu-special-offer {
  color: #444;
  line-height: 1.5;
}

.tu-description {
  margin-bottom: 20px;
  font-size: 1rem;
}

.tu-highlight {
  color: #1E3159;
  font-weight: 700;
}

.tu-special-offer {
  margin-bottom: 20px;
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
}

.tu-original-price {
  color: #777;
  font-weight: 400;
  text-decoration: line-through;
}

.tu-discount-price {
  color: #1E3159;
  font-size: 1.25rem;
  font-weight: 900;
}

.tu-limited-offer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 15px;
  border-left: 4px solid #ff7a00;
  border-radius: 0 4px 4px 0;
  background-color: #fff3e6;
  color: #222;
  font-size: 0.9rem;
  font-weight: 600;
}

.tu-limited-offer i {
  color: #ff7a00;
  font-size: 1.2rem;
}

.tu-certification-visual {
  display: flex;
  flex: 0 0 400px;
  align-items: center;
  justify-content: center;
}

.tu-logo {
  width: 200px;
  height: auto;
}

/* Checkout */
.checkout-pricing-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: #fff;
  color: var(--specialist-text-dark);
  font-family: 'Montserrat', sans-serif;
}

.checkout-pricing-section * {
  box-sizing: border-box;
}

.checkout-alert-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px 30px;
  border: 2px solid rgba(220, 53, 69, 0.2);
  border-radius: 15px;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  box-shadow: 0 15px 50px rgba(220, 53, 69, 0.4);
  color: #fff;
  animation: pulse 2s infinite;
}

.checkout-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.checkout-alert-icon i {
  font-size: 1.5rem;
  animation: blink 1.5s infinite;
}

.checkout-alert-content h3 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.checkout-alert-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.checkout-alert-content strong,
.checkout-urgent {
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 800;
}

.checkout-flex {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 35px;
}

.checkout-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  padding: 40px;
  border: 2px solid rgba(255, 122, 0, 0.1);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 15px 50px var(--specialist-shadow);
}

.checkout-price-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--specialist-primary) 0%, var(--specialist-primary-light) 100%);
  color: #fff;
  text-align: center;
}

.checkout-price-tag,
.checkout-badge {
  display: inline-block;
  border-radius: 25px;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: blink 2s infinite;
}

.checkout-price-tag {
  margin-bottom: 20px;
  padding: 8px 20px;
  font-size: 0.9rem;
}

.checkout-price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.checkout-price-big {
  margin: 10px 0;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.checkout-price-small {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.checkout-price-cross {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  text-decoration: line-through;
}

.checkout-vs-text {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.checkout-discount-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.checkout-rating {
  margin: 0 0 25px;
  color: var(--specialist-primary);
  font-weight: 700;
  text-align: center;
}

.checkout-rating i {
  color: #F59E0B;
}

.checkout-btn-green {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 20px 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.checkout-btn-green::before,
#ansiedade-footer-bar .btn-especialista::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.checkout-btn-green:hover::before,
#ansiedade-footer-bar .btn-especialista:hover::before {
  left: 100%;
}

.checkout-btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
  color: #fff;
}

.checkout-btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.checkout-btn-content i {
  font-size: 1.4rem;
}

.checkout-btn-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.checkout-btn-primary {
  font-size: 1.2rem;
  font-weight: 900;
}

.checkout-btn-secondary {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.checkout-trust-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--specialist-text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.checkout-trust-item i {
  color: #10B981;
  font-size: 1.1rem;
}

.checkout-secure-image {
  margin-top: 20px;
  text-align: center;
}

.checkout-secure-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.checkout-bonus-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 25px;
  border: 2px solid rgba(255, 122, 0, 0.2);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 215, 162, 0.05) 100%);
}

.checkout-bonus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--specialist-primary) 0%, var(--specialist-primary-light) 100%);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
  color: #fff;
  font-size: 1.5rem;
}

.checkout-bonus-content h4 {
  margin: 0 0 8px;
  color: var(--specialist-primary-dark);
  font-size: 1.3rem;
  font-weight: 800;
}

.checkout-bonus-content p {
  margin: 0;
  color: var(--specialist-text-light);
  line-height: 1.6;
}

.checkout-bonus-content strong,
.checkout-bonus-highlight {
  color: var(--specialist-primary);
}

.checkout-bonus-highlight {
  margin-top: 12px !important;
  font-weight: 700;
}

.checkout-bonus-highlight i,
.checkout-bonus-medal i {
  margin-right: 8px;
}

.checkout-bonus-medal {
  margin-top: 8px !important;
  font-size: 0.95rem;
  line-height: 1.4 !important;
}

.checkout-bonus-medal i {
  color: var(--specialist-primary);
}

.checkout-header {
  margin-bottom: 35px;
  text-align: center;
}

.checkout-heading-xl {
  margin: 0 0 10px;
  color: var(--specialist-primary-dark);
  font-size: 2rem;
  font-weight: 900;
}

.checkout-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--specialist-primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.checkout-badge {
  margin-top: 15px;
  padding: 8px 20px;
  font-size: 0.8rem;
}

.checkout-main-certification {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 25px;
  border: 3px solid var(--specialist-primary);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 215, 162, 0.05) 100%);
  text-align: center;
}

.checkout-main-certification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--specialist-primary) 0%, var(--specialist-primary-light) 100%);
}

.checkout-certification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
  font-size: 2rem;
}

.checkout-certification-title {
  margin: 0 0 10px;
  color: var(--specialist-primary-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.checkout-certification-details {
  color: var(--specialist-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.checkout-certification-details p {
  margin: 0.2rem 0;
}

.checkout-highlight {
  color: var(--specialist-primary);
  font-weight: 700;
}

.checkout-divider {
  margin: 30px 0;
  border: 0;
  border-top: 2px solid rgba(255, 122, 0, 0.1);
}

.checkout-materials-box,
.checkout-special-features {
  padding: 25px;
  border: 2px solid rgba(255, 122, 0, 0.2);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 215, 162, 0.05) 100%);
  text-align: center;
}

.checkout-materials-box h4,
.checkout-special-features h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 20px;
  font-weight: 800;
}

.checkout-materials-box h4 {
  color: var(--specialist-primary-dark);
  font-size: 1.3rem;
}

.checkout-materials-box h4 i,
.checkout-material-item i {
  color: var(--specialist-primary);
}

.checkout-materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  font-size: 1rem;
}

.checkout-material-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--specialist-text-dark);
  font-weight: 600;
}

.checkout-special-features {
  margin-top: 25px;
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
  text-align: left;
}

.checkout-special-features h5 {
  justify-content: flex-start;
  color: #059669;
  font-size: 1.1rem;
}

.checkout-feature-list {
  display: grid;
  gap: 8px;
}

.checkout-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--specialist-text-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.checkout-feature-item i,
.checkout-special-features h5 i {
  color: #10B981;
}

/* Mapas */
.mapas-section-m5w8p {
  margin: 0;
  padding: 30px 20px;
  background: #F9FAFB;
  font-family: 'Montserrat', sans-serif;
}

.mapas-section-m5w8p * {
  box-sizing: border-box;
}

.mapas-container-m5w8p {
  max-width: 800px;
  margin: 0 auto;
}

.mapas-header-m5w8p {
  margin-bottom: 25px;
  text-align: center;
}

.mapas-header-m5w8p h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
  color: #1A1A1A;
  font-size: 1.8rem;
  font-weight: 800;
}

.mapas-header-m5w8p h2 i {
  color: #FF7A00;
}

.mapas-header-m5w8p p {
  margin: 0;
  color: #6B7280;
  font-size: 1rem;
}

.mapa-card-m5w8p {
  overflow: hidden;
  border: 2px solid #FF7A00;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.5s ease-out;
}

.iframe-container-m5w8p {
  position: relative;
  width: 100%;
  height: 400px;
  background: #F9FAFB;
}

.mapa-iframe-m5w8p {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.loading-overlay-m5w8p {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #F9FAFB;
  color: #6B7280;
  transition: opacity 0.3s, visibility 0.3s;
}

.loading-overlay-m5w8p.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-overlay-m5w8p i {
  color: #FF7A00;
  font-size: 1.5rem;
}

.mapa-info-m5w8p {
  padding: 20px;
}

.info-tags-m5w8p {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.info-tags-m5w8p span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 20px;
  background: rgba(255, 122, 0, 0.1);
  color: #1A1A1A;
  font-size: 0.8rem;
  font-weight: 600;
}

.info-tags-m5w8p i,
.mapa-info-m5w8p strong {
  color: #FF7A00;
}

.mapa-info-m5w8p p {
  margin: 0;
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

/* Curriculum */
.curriculum-wrapper {
  padding: 2rem 0;
  background: #fff;
  color: #1A1A1A;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}

.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.hero-title {
  margin: 0 0 0.5rem;
  color: #FF7A00;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FF7A00 0%, #D96D00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin: 0;
  color: #666;
  font-size: 1.2rem;
}

.methodology,
.progress-container {
  max-width: 1200px;
  margin: 2rem auto;
  border: 1px solid rgba(255, 122, 0, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.methodology {
  padding: 2.5rem 1.5rem;
}

.methodology-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: #FF7A00;
  font-size: 1.3rem;
}

.tripod-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tripod-item {
  padding: 2rem;
  border: 1px solid rgba(255, 122, 0, 0.15);
  border-radius: 15px;
  background: linear-gradient(135deg, #FFF5E8 0%, #FFFFFF 100%);
  text-align: center;
  transition: all 0.3s ease;
}

.tripod-item:hover,
.part-card:hover,
.stat-item:hover {
  transform: translateY(-5px);
}

.tripod-item:hover {
  border-color: #FFA733;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
}

.tripod-icon {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.tripod-title {
  margin: 0 0 0.5rem;
  color: #1A1A1A;
  font-size: 1.1rem;
  font-weight: 600;
}

.tripod-desc {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.update-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 122, 0, 0.1);
  border-radius: 15px;
  background: linear-gradient(135deg, #E8F5FF 0%, #FFF5E8 100%);
}

.update-info p {
  margin: 0;
}

.update-icon {
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.curriculum-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.part-card {
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid transparent;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  transition: all 0.3s ease;
}

.part-card:nth-child(1) { animation-delay: 0.1s; }
.part-card:nth-child(2) { animation-delay: 0.2s; }
.part-card:nth-child(3) { animation-delay: 0.3s; }

.part-card.active {
  border-color: rgba(255, 122, 0, 0.2);
  box-shadow: 0 10px 40px rgba(255, 122, 0, 0.15);
}

.part-header {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: linear-gradient(135deg, #FF7A00 0%, #FFA733 100%);
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.part-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) skewX(-30deg);
  transition: left 0.5s ease;
}

.part-header:hover::after {
  left: 100%;
}

.part-header-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.part-info {
  flex: 1;
}

.part-number {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.part-title {
  margin: 0 0 0.3rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.part-modules-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.expand-icon,
.module-expand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.expand-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.expand-icon svg,
.module-expand-icon svg {
  fill: #D96D00;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.expand-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.part-card.active .expand-icon {
  background: #fff;
  transform: scale(1.1);
}

.part-card.active .expand-icon svg,
.module-card.active .module-expand-icon svg {
  transform: rotate(180deg);
}

.part-content,
.lessons-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.part-card.active .part-content {
  max-height: 8000px;
}

.part-description {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 122, 0, 0.1);
  background: linear-gradient(135deg, #FFF5E8 0%, #FFFFFF 100%);
}

.competencies-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: #FF7A00;
  font-size: 1.1rem;
  font-weight: 600;
}

.competencies-list {
  margin: 0;
  padding-left: 1.5rem;
  list-style: none;
}

.competencies-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.competencies-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF7A00;
  font-size: 1.1rem;
  font-weight: 700;
}

.modules-container {
  padding: 1.5rem;
}

.module-card {
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background: #F8F9FA;
  transition: all 0.3s ease;
}

.module-card.active {
  border-color: rgba(255, 122, 0, 0.2);
  background: #fff;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.1);
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.module-card:hover .module-header,
.module-card.active .module-header {
  background: linear-gradient(135deg, #FFD8A2 0%, #FFF5E8 100%);
}

.module-title {
  flex: 1;
  padding-right: 1rem;
  color: #1A1A1A;
  font-size: 1.05rem;
  font-weight: 600;
}

.module-expand-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 122, 0, 0.1);
}

.module-expand-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #FF7A00;
}

.module-card.active .module-expand-icon {
  background: #FF7A00;
}

.module-card.active .module-expand-icon svg {
  fill: #fff;
}

.lessons-container {
  background: #fff;
}

.module-card.active .lessons-container {
  max-height: 3000px;
}

.lessons-list {
  margin: 0;
  padding: 1.5rem;
  list-style: none;
}

.lesson-item {
  margin-bottom: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #F8F9FA;
  transition: all 0.3s ease;
}

.lesson-item:hover {
  transform: translateX(5px);
  border-color: rgba(255, 122, 0, 0.2);
  background: linear-gradient(135deg, #FFD8A2 0%, #FFF5E8 100%);
  box-shadow: 0 3px 10px rgba(255, 122, 0, 0.1);
}

.lesson-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.lesson-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A00 0%, #FFA733 100%);
  box-shadow: 0 2px 5px rgba(255, 122, 0, 0.2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.lesson-title {
  flex: 1;
  color: #1A1A1A;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.lesson-skills {
  margin-bottom: 0.8rem;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
}

.lesson-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.material-tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF7A00 0%, #FFA733 100%);
  box-shadow: 0 1px 3px rgba(255, 122, 0, 0.3);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
}

.material-icon {
  font-size: 0.8rem;
}

.progress-container {
  margin-top: 3rem;
  padding: 3rem 1rem;
  text-align: center;
}

.progress-title {
  margin: 0 0 2rem;
  color: #1A1A1A;
  font-size: 1.5rem;
  font-weight: 600;
}

.progress-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-number {
  margin-bottom: 0.5rem;
  color: #FF7A00;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #FF7A00 0%, #D96D00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

/* FAQ */
.faq-section-q9r2x {
  margin: 0;
  padding: 40px 20px;
  background: #F9FAFB;
  font-family: 'Montserrat', sans-serif;
}

.faq-section-q9r2x * {
  box-sizing: border-box;
}

.faq-container-q9r2x {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header-q9r2x {
  margin-bottom: 40px;
  text-align: center;
}

.faq-header-q9r2x h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #1A1A1A;
  font-size: 2.2rem;
  font-weight: 800;
}

.faq-header-q9r2x h2 i {
  color: #FF7A00;
}

.faq-header-q9r2x p {
  margin: 0;
  color: #6B7280;
  font-size: 1.1rem;
}

.faq-list-q9r2x {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item-q9r2x {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.faq-item-q9r2x:hover {
  transform: translateY(-2px);
  border-color: #FF7A00;
}

.faq-question-q9r2x {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, #FF7A00 0%, #D96D00 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-q9r2x span {
  flex: 1;
}

.faq-question-q9r2x i:first-child {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.faq-arrow-q9r2x {
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item-q9r2x.active .faq-arrow-q9r2x {
  transform: rotate(180deg);
}

.faq-answer-q9r2x {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item-q9r2x.active .faq-answer-q9r2x {
  max-height: 1200px;
  padding: 25px;
}

.faq-answer-q9r2x p {
  margin: 0 0 15px;
  color: #1A1A1A;
  line-height: 1.6;
}

.faq-answer-q9r2x p:last-child {
  margin-bottom: 0;
}

.faq-answer-q9r2x strong {
  color: #D96D00;
}

.benefits-list-q9r2x {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.benefits-list-q9r2x li {
  margin-bottom: 8px;
  padding-left: 5px;
  color: #1A1A1A;
  font-weight: 500;
}

.highlight-q9r2x {
  margin: 15px 0;
  padding: 10px 15px;
  border-left: 4px solid #FF7A00;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 167, 51, 0.1) 100%);
  color: #D96D00;
  font-style: italic;
  font-weight: 600;
}

.price-comparison-q9r2x {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.price-normal-q9r2x,
.price-today-q9r2x {
  flex: 1;
  max-width: 200px;
  padding: 15px 20px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
  text-align: center;
}

.price-today-q9r2x {
  border-color: #10B981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.price-label-q9r2x {
  display: block;
  margin-bottom: 5px;
  color: #6B7280;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-value-q9r2x {
  display: block;
  color: #1A1A1A;
  font-size: 1.5rem;
  font-weight: 800;
}

.price-today-q9r2x .price-value-q9r2x {
  color: #10B981;
}

.faq-cta-q9r2x {
  margin-top: 40px;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF7A00 0%, #D96D00 100%);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
  color: #fff;
  text-align: center;
}

.faq-cta-q9r2x p {
  margin: 0 0 15px;
  font-size: 1.1rem;
}

.cta-button-q9r2x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  background: #fff;
  color: #FF7A00;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-q9r2x:hover {
  transform: translateY(-2px);
  background: #F9FAFB;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer bar */
#ansiedade-footer-bar,
.footer-sticky-bar-ansiedade {
  position: fixed !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100% !important;
  padding: 15px 20px;
  border-top: 3px solid #FF7A00;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transform: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#ansiedade-footer-bar .destaque {
  color: #FF7A00;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
}

#ansiedade-footer-bar .emoji-ansiedade {
  font-size: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

#ansiedade-footer-bar .btn-especialista {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-left: 20px;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #FF7A00 0%, #FFA733 100%);
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}

#ansiedade-footer-bar .btn-especialista:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFA733 0%, #FFB84D 100%);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
  color: #fff;
}

#ansiedade-footer-bar .urgencia-tag {
  margin-right: 10px;
  padding: 4px 10px;
  border-radius: 15px;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: blink 2s ease-in-out infinite;
}

/* Responsive */
@media (min-width: 768px) {
  .checkout-flex-md-row {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (min-width: 769px) {
  .features-grid-x7k9m {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .feature-item-x7k9m {
    flex-direction: column;
    gap: 8px;
    padding: 15px 12px;
    text-align: center;
  }

  .feature-item-x7k9m i {
    width: auto;
    font-size: 1.2rem;
  }

  .feature-item-x7k9m span {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .specialist-congrats-title,
  .specialist-section-title {
    font-size: 2.2rem;
  }

  .specialist-explanation-content {
    flex-direction: column;
    text-align: center;
  }

  .specialist-explanation-icon {
    align-self: center;
    margin-bottom: 20px;
  }

  .specialist-main-card {
    transform: scale(1);
  }

  .specialist-certification-card:hover {
    transform: translateY(-5px);
  }

  .reviews-container {
    grid-template-columns: 1fr;
  }

  .reviews-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tu-certification-content,
  .mec-bonus-container {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .tu-certification-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
  }

  .tu-title {
    font-size: 2rem;
  }

  .tu-subtitle {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 95px;
  }

  .therapist-trust-unique-section-2025,
  .hotmart-trust-section {
    padding: 15px 0;
  }

  .therapist-trust-unique-content-2025,
  .hotmart-trust-content {
    flex-direction: column;
    gap: 15px;
  }

  .therapist-unique-logo-2025 {
    height: 60px;
  }

  .therapist-trust-unique-text-2025 {
    font-size: 0.9rem;
    text-align: center;
  }

  .hotmart-logo {
    height: 44px;
  }

  .hotmart-trust-text {
    font-size: 0.9rem;
  }

  .specialist-certifications-section,
  .checkout-pricing-section {
    padding: 60px 0 80px;
  }

  .specialist-urgency-banner {
    padding: 20px 25px;
  }

  .specialist-urgency-content {
    gap: 15px;
    font-size: 1rem;
  }

  .specialist-congratulations,
  .specialist-program-explanation,
  .specialist-included-content {
    padding: 30px 20px;
  }

  .specialist-congrats-icon {
    font-size: 3.5rem;
  }

  .specialist-congrats-title {
    font-size: 1.8rem;
  }

  .specialist-congrats-subtitle {
    font-size: 1.2rem;
  }

  .specialist-exclusive-banner,
  .checkout-alert-card,
  .checkout-bonus-card {
    flex-direction: column;
    text-align: center;
  }

  .benefit-item,
  .material-item {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .specialist-explanation-title {
    font-size: 1.5rem;
  }

  .recognition-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .specialist-included-grid {
    grid-template-columns: 1fr;
  }

  .medos-cert-unique-section {
    padding: 30px 0 40px;
  }

  .medos-cert-unique-urgency {
    padding: 15px;
    font-size: 0.95rem;
  }

  .medos-cert-unique-congrats {
    padding: 30px 20px;
  }

  .medos-cert-unique-icon {
    font-size: 3rem;
  }

  .medos-cert-unique-title {
    font-size: 1.8rem;
  }

  .medos-cert-unique-subtitle {
    font-size: 1.1rem;
  }

  .medos-cert-unique-grid {
    flex-direction: column;
  }

  .medos-cert-unique-img-wrap {
    order: -1;
    max-width: 100%;
  }

  .medos-cert-unique-actions {
    flex-direction: column;
  }

  .medos-cert-unique-btn {
    width: 100%;
    text-align: center;
  }

  .bonus-section-x7k9m {
    min-height: auto;
    padding: 30px 15px;
  }

  .bonus-header-x7k9m h2 {
    font-size: 1.6rem;
  }

  .bonus-content-x7k9m {
    padding: 25px 20px;
  }

  .content-header-x7k9m h3 {
    flex-direction: column;
    gap: 8px;
    font-size: 1.3rem;
    text-align: center;
  }

  .features-grid-x7k9m {
    grid-template-columns: 1fr;
  }

  .image-container-x7k9m {
    height: 250px;
  }

  .app-section .flex {
    flex-direction: column-reverse;
  }

  .app-section .heading-main {
    font-size: 1.75rem;
  }

  .app-section .heading-sub {
    font-size: 1.25rem;
  }

  .app-section .phone-mockup {
    max-width: 80%;
    margin-bottom: 2rem;
  }

  .app-section .store-buttons {
    justify-content: center;
  }

  .app-section .store-img {
    width: 140px;
    min-width: 120px;
  }

  .tu-certification-section {
    padding: 25px 0;
  }

  .tu-title {
    font-size: 1.8rem;
  }

  .tu-subtitle {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  .tu-description,
  .tu-special-offer {
    font-size: 0.95rem;
  }

  .tu-discount-price {
    font-size: 1.15rem;
  }

  .checkout-card {
    padding: 30px 20px;
  }

  .checkout-price-big {
    font-size: 2.5rem;
  }

  .checkout-price-cross {
    font-size: 1.5rem;
  }

  .checkout-btn-content,
  .checkout-trust-section {
    flex-direction: column;
  }

  .checkout-heading-xl {
    font-size: 1.6rem;
  }

  .checkout-materials-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .checkout-material-item {
    justify-content: flex-start;
  }

  .mapas-section-m5w8p {
    padding: 20px 15px;
  }

  .mapas-header-m5w8p h2 {
    flex-direction: column;
    gap: 5px;
    font-size: 1.5rem;
  }

  .iframe-container-m5w8p {
    height: 300px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .methodology {
    margin: 1rem 0.5rem;
    padding: 2rem 1.5rem;
  }

  .tripod-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .part-header {
    padding: 1.5rem;
  }

  .part-title {
    font-size: 1.1rem;
  }

  .expand-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .module-header {
    padding: 1.2rem;
  }

  .module-title {
    font-size: 0.95rem;
  }

  .lesson-item {
    padding: 0.8rem 1rem;
  }

  .lesson-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  .lesson-title {
    font-size: 0.85rem;
  }

  .curriculum-container {
    padding: 0 0.5rem;
  }

  .progress-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .faq-section-q9r2x {
    padding: 30px 15px;
  }

  .faq-header-q9r2x h2 {
    flex-direction: column;
    gap: 8px;
    font-size: 1.8rem;
  }

  .faq-question-q9r2x {
    gap: 10px;
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .price-comparison-q9r2x {
    flex-direction: column;
    align-items: center;
  }

  .price-normal-q9r2x,
  .price-today-q9r2x {
    max-width: 300px;
  }

  .faq-cta-q9r2x {
    padding: 25px 20px;
  }

  .cta-button-q9r2x {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  #ansiedade-footer-bar {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.2;
  }

  #ansiedade-footer-bar .destaque {
    display: inline-block;
    font-size: 13px;
  }

  #ansiedade-footer-bar .emoji-ansiedade {
    font-size: 16px;
  }

  #ansiedade-footer-bar .btn-especialista {
    width: 100%;
    max-width: 260px;
    margin-top: 4px;
    margin-left: 0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0;
  }

  #ansiedade-footer-bar .urgencia-tag {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 2px;
    padding: 2px 6px;
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .reviews-track {
    grid-template-columns: 1fr;
  }

  .mec-bonus-copy h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .therapist-trust-unique-section-2025,
  .hotmart-trust-section {
    padding: 12px 0;
  }

  .therapist-trust-unique-container-2025,
  .hotmart-trust-container {
    padding: 0 15px;
  }

  .therapist-trust-unique-text-2025,
  .hotmart-trust-text {
    font-size: 0.85rem;
  }

  .therapist-unique-logo-2025 {
    height: 50px;
  }

  .hotmart-logo {
    height: 32px;
  }

  .specialist-urgency-content {
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .specialist-congrats-title {
    font-size: 1.5rem;
  }

  .specialist-congrats-subtitle,
  .specialist-explanation-text p {
    font-size: 1rem;
  }

  .benefit-item,
  .material-item {
    justify-content: center;
    width: calc(50% - 10px);
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .specialist-explanation-title {
    font-size: 1.3rem;
  }

  .specialist-section-title {
    font-size: 1.8rem;
  }

  .specialist-certification-title {
    font-size: 1.2rem;
  }

  .specialist-certification-description {
    font-size: 0.95rem;
  }

  .specialist-price-tag {
    top: 60px;
    left: 15px;
    padding: 6px 12px;
  }

  .price-original {
    font-size: 0.8rem;
  }

  .price-discount {
    font-size: 1.1rem;
  }

  .medos-cert-unique-title {
    font-size: 1.5rem;
  }

  .medos-cert-unique-subtitle {
    font-size: 1rem;
  }

  .tu-title {
    font-size: 1.5rem;
  }

  .tu-subtitle {
    font-size: 1.1rem;
  }

  .tu-logo {
    width: 120px;
  }

  .checkout-pricing-section {
    padding: 40px 0 60px;
  }

  .checkout-container {
    padding: 0 15px;
  }

  .checkout-card {
    padding: 25px 15px;
  }

  .checkout-price-big {
    font-size: 2rem;
  }

  .checkout-heading-xl {
    font-size: 1.4rem;
  }

  .checkout-btn-primary {
    font-size: 1rem;
  }

  .checkout-btn-secondary {
    font-size: 0.8rem;
  }

  .bonus-badges-x7k9m {
    padding: 12px;
  }

  .badge-bonus-x7k9m {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .badge-price-x7k9m {
    padding: 6px 10px;
  }

  .new-price-x7k9m {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  body {
    padding-bottom: 85px;
  }

  #ansiedade-footer-bar {
    gap: 3px;
    padding: 6px 8px;
    font-size: 10px;
  }

  #ansiedade-footer-bar .destaque {
    font-size: 11px;
  }

  #ansiedade-footer-bar .btn-especialista {
    max-width: 200px;
    margin-top: 2px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
  }
}

/* === mobile fixes (2026-07) === */
@media (max-width: 768px) {
  /* Pills: texto quebra DENTRO da pill, mantendo visual (borda/fundo/raio) */
  .benefit-item,
  .material-item {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    text-align: center;
  }

  /* Alvo de toque >= 44px no CTA da barra fixa */
  #ansiedade-footer-bar .btn-especialista {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  /* Legibilidade: fontes < 11px sobem para >= 12px */
  #ansiedade-footer-bar .urgencia-tag {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  #ansiedade-footer-bar {
    font-size: 12px;
  }

  #ansiedade-footer-bar .btn-especialista {
    font-size: 12px;
  }
}

/* === mobile fixes (2026-07) — telas muito estreitas: pill um pouco mais larga
   para palavras longas ("Reconhecido") caberem inteiras === */
@media (max-width: 360px) {
  .benefit-item,
  .material-item {
    width: calc(50% - 6px);
    padding: 6px 6px;
  }

  .specialist-benefits,
  .specialist-materials {
    gap: 10px;
  }
}
