.elementor-406 .elementor-element.elementor-element-d7b2e2e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body:not(.rtl) .elementor-406 .elementor-element.elementor-element-fcabccc{right:89px;}body.rtl .elementor-406 .elementor-element.elementor-element-fcabccc{left:89px;}.elementor-406 .elementor-element.elementor-element-fcabccc{bottom:57px;}@media(max-width:767px){.elementor-406 .elementor-element.elementor-element-fcabccc{width:var( --container-widget-width, 39px );max-width:39px;--container-widget-width:39px;--container-widget-flex-grow:0;bottom:193px;}body:not(.rtl) .elementor-406 .elementor-element.elementor-element-fcabccc{right:1576px;}body.rtl .elementor-406 .elementor-element.elementor-element-fcabccc{left:1576px;}}@media(min-width:768px){.elementor-406 .elementor-element.elementor-element-d7b2e2e{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-24234cb *//* ===== RESET E VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #003A40;
    --secondary: #101820;
    --light: #D9D9D6;
    --white: #ffffff;
    --primary-light: #005f68;
    --primary-dark: #002328;
    
    --font-heading: 'Times', sans-serif;
    --font-body: 'Helixa', serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, button {
    font-family: var(--font-heading);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 58, 64, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 58, 64, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-close{
position: absolute;
top: 18px;
right: 18px;
width: 42px;
height: 42px;
border: none;
background: transparent;
font-size: 26px;
line-height: 1;
cursor: pointer;
color: var(--secondary);
display: none; /* só no mobile */
}

.nav-cta {
    background: #26ad3a;
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button {
    background: #26ad3a;
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 999; /* abaixo do menu, acima do conteúdo */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== TIPOGRAFIA ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary);
    line-height: 1.2;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ===== SEÇÃO: HERO ===== */
.hero {
    background-image: url('https://institutofellipecruz.com/wp-content/uploads/2025/12/capa-fellipe-scaled.png');
    background-size: cover;
    background-position: top center;  /* mais à direita para sobrar espaço pro texto */
    background-repeat: no-repeat;   
    color: var(--white);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background: #26ad3a;
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 58, 64, 0.4);
    color: var(--white);
}

.social-proof {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image img {
    width: 60%;          /* diminui o tamanho dentro da coluna */
    max-width: 420px;    /* limite máximo opcional */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;      /* garante que não grude em nenhum lado */
}

/* ===== SEÇÃO: CONTADOR ===== */
.estatisticas-section {
    background-color: var(--primary-dark);
    padding: 20px 20px;
}

.estatisticas-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Individual Stat Item */
.stat-item {
    text-align: center;
    padding: 20px;
}

/* Stat Number */
.stat-number {
    font-family: var(--font-body);
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1;
}

/* Stat Label */
.stat-label {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
}

/* Animation on scroll */
.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.estatisticas-section.animated .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.estatisticas-section.animated .stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.estatisticas-section.animated .stat-item:nth-child(2) {
    transition-delay: 0.2s;
}

.estatisticas-section.animated .stat-item:nth-child(3) {
    transition-delay: 0.3s;
}

.estatisticas-section.animated .stat-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* ===== SEÇÃO: IDENTIFICAÇÃO ===== */
.identification {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--white) 0%, rgba(0, 58, 64, 0.03) 100%);
}

.content-text {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.sign-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0, 58, 64, 0.08);
    transition: all 0.3s ease;
}

.sign-card:hover {
    background: rgba(0, 58, 64, 0.05);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 58, 64, 0.12);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== SEÇÃO: SAÚDE MENTAL ===== */
.cenario-section {
    background-color: var(--light);
    padding: 80px 20px;
}

.cenario-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.cenario-container .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.text-block3 {
    margin-top: 50px;
    margin-bottom: -60px;
    text-align: center; /* centraliza tudo dentro */
}

.text-block3 p {  
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--secondary);
    margin: 0;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.item-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 58, 64, 0.2);
}

.item-number span {
    font-family: var(--font-body);
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
}

.item-content {
    flex: 1;
    padding-top: 0px;
}

.item-content h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.item-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary);
    margin: 0;
}

/* ===== SEÇÃO: INSTITUTO ===== */
.instituto-section {
    background-color: var(--white);
    padding: 100px 20px;
}

.instituto-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 60px;
    align-items: center;
}

.image-column img {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 58, 64, 0.15);
    object-fit: cover;
    object-fit: cover;
    object-position: 80% 10%; /* try 20px 10px */ 
    transform: scale(1.1);
}

.text-column h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.text-block {
    margin-bottom: 30px;
}

.text-block p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--secondary);
    margin: 0;
}

.text-block.highlight {
    background-color: var(--light);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-top: 35px;
}

.text-block.highlight p {
    font-weight: 500;
}

/* ===== SEÇÃO: MENTE ===== */
.mente-section {
    background-color: var(--light);
    padding: 40px 20px;
}

.mente-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.mente-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.mente-section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 400;
}

.mente-header-underline {
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto 20px;
}

.mente-header-description {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-block2 {
    margin-top: 30px;
    margin-bottom: -90px;
}

.text-block2 p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--secondary);
    margin: 0;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    flex-wrap: wrap;       /* permite quebrar em linhas */
    justify-content: center; /* centraliza cada linha */
    gap: 30px;
}

/* Individual Card */
.card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 58, 64, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    flex: 0 1 380px;  /* ocupa ~320px e quebra quando não couber */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 58, 64, 0.15);
    border-color: var(--primary);
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

/* Card Title */
.card h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Card Description */
.card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary);
    margin: 0;
}


/* ===== SEÇÃO: MANIFESTO ===== */
.manifesto-section {
    background-color: var(--light);
    padding: 40px 20px;
}

.manifesto-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Final Statement */
.final-statement {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 70px 60px;
    border-radius: 25px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 20px 60px rgba(0, 58, 64, 0.3);
}

.statement-content h2 {
    font-size: 2.3rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.3;
}

.values-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    flex-wrap: wrap;
}

.values-list span {
    font-weight: 400;
}

.tagline {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SEÇÃO: TRANSFORMAÇÃO ===== */
.transformacao-section {
    padding: 100px 20px;
    background-color: var(--white); /* Fundo preto semi-transparente */
    background-size: cover;
    background-position: top center;  /* mais à direita para sobrar espaço pro texto */
    background-repeat: no-repeat;   
    position: relative;
    overflow: hidden;
}

.transformacao-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Content Wrapper */
.transformacao-content-wrapper {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Title Column */
.transformacao-title-column h2 {
    font-size: 2.0rem;
    color: var(--card-bg);
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.4;
}

.transformacao-title-column .transformacao-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary);
    font-family: var(--font-body);
}

/* Image Column */
.transformacao-title-column img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 58, 64, 0.15);
    margin: 20px auto;
    transform: rotateY(180deg);
}


/* Cards Column */
.transformacao-cards-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Transform Card */
.transformacao-transform-card {
    background-color: var(--primary-light);
    border-radius: 25px;
    padding: 25px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.transformacao-transform-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Card Icon */
.transformacao-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--white);
}

.transformacao-transformacao-card-icon svg {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: block;  /* tira qualquer espaçamento de inline */
}

.transformacao-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* centraliza verticalmente o texto */
}

/* Card Content */
.transformacao-card-content p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
}

/* Footer Text */
.transformacao-footer-text {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.transformacao-footer-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--secondary);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* ===== SEÇÃO: MÉTODO ===== */
.method {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 31, 38, 0.7), rgba(0, 31, 38, 0.7)), /* cor com opacidade */ url('https://institutofellipecruz.com/wp-content/uploads/2025/12/3.png');
    background-size: cover;       /* preenche a área sem distorcer */
    background-position: center;  /* centraliza a imagem */
    background-repeat: no-repeat; 
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.method .section-title {
    color: var(--white);
}

.method .intro-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-top: -2rem;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.differential-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-light);
}

.differential-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.differential-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary);
}

.why-works {
    background: var(--white);
    color: var(--primary);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-works h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.why-works p {
    font-size: 1.2rem;
    color: var(--secondary);
}

/* ===== SEÇÃO: SOBRE ===== */
.about {
    padding: 100px 0;
    background-image: url('https://institutofellipecruz.com/wp-content/uploads/2025/12/2-scaled.png');
    background-size: cover;
    background-position: top center;  /* mais à direita para sobrar espaço pro texto */
    background-repeat: no-repeat;   
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.9rem;
    text-align: left;
    color: var(--white);
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-text p {
    font-size: 1.4rem;
    line-height: 1.6;
}

.about-text .highlight {
    color: var(--white);
    font-weight: 600;
    border-left: 4px solid var(--white);
    padding-left: 20px;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* ===== SEÇÃO: PROTOCOLOS ===== */
.quadros-section {
    background-color: var(--primary-dark);
    padding: 100px 20px;
}

.quadros-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--white);
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.8;
        color: var(--white);
}

/* Boxes Wrapper */
.boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

/* Protocol Box */
.protocol-box {
    background-color: var(--primary);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    border: 3px solid var(--primary);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.protocol-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.protocol-box.featured {
    border-color: var(--white);
    box-shadow: 0 15px 50px rgba(0, 95, 104, 0.25);
}

/* Box Header */
.box-header {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.box-header h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

.box-header em {
    font-style: italic;
    font-weight: 300;
}

/* Duration Badge */
.duration-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.duration-badge.featured-badge {
    background-color: var(--yellow);
    border-color: var(--yellow);
    font-weight: 700;
}

/* Phases List */
.phases-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}

/* Phase Row */
.phase-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* Phase Icon Circle */
.phase-icon-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.featured .phase-icon-circle {
    border-color: var(--yellow);
}

/* Phase Text */
.phase-text {
    flex: 1;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.7;
    padding-top: 6px;
}

.phase-text strong {
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
}

.phase-text .presencial {
    color: var(--yellow);
    font-style: italic;
    font-size: 0.95rem;
}

/* Box Footer */
.box-footer {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.box-footer p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
}

.box-footer strong {
    font-weight: 700;
    color: var(--yellow);
}

/* Bottom Info */
.bottom-info {
    text-align: center;
    background-color: var(--primary-dark);
    padding: 30px 40px;
    border-radius: 15px;
    border-left: 5px solid var(--yellow);
}

.bottom-info p {
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

.bottom-info strong {
    color: var(--yellow);
    font-weight: 600;
}

/* ===== SEÇÃO: DEPOIMENTOS VIDEO ===== */

.depoimentos-videos-section {
    background-color: var(--white);
    padding: 40px 20px;
}

.depoimentos-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 400;
    line-height: 1.4;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}

/* Video Card */
.video-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 */
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}


.video-card:hover .video-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Overlay (optional, can be removed if you want videos to autoplay) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.play-button {
    transition: transform 0.3s ease;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

/* Video Label */
.video-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 5px;
}

.avatar-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.video-label span {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 500;
}

/* ===== SEÇÃO: DEPOIMENTOS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-placeholder {
    color: #999;
    text-align: center;
    padding: 40px 20px;
    background: rgba(217, 217, 214, 0.3);
    border-radius: 6px;
}

.closing-text {
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
}

/* ===== SEÇÃO: OBJEÇÕES ===== */
.objections {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 31, 38, 0.7), rgba(0, 31, 38, 0.7)), /* cor com opacidade */ url('https://institutofellipecruz.com/wp-content/uploads/2025/12/3.png');
    background-size: cover;       /* preenche a área sem distorcer */
    background-position: top center;  /* centraliza a imagem */
    background-repeat: no-repeat; 
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.objections h2{
    color: var(--white);
}

.objections-list {
    max-width: 900px;
    margin: 0 auto;
}

.objection-card {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.objection-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--primary);
}

.objection-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.objection-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ===== SEÇÃO: FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span{
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.faq-question:hover {
    background: rgba(217, 217, 214, 0.2);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(217, 217, 214, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    padding-top: 10px;
}

/* ===== SEÇÃO: CTA FINAL ===== */
.cta-final {
    padding: 80px 0 0;
    background-image: url('https://institutofellipecruz.com/wp-content/uploads/2025/12/3.png');
    background-size: cover;
    background-position: center center;  /* mais à direita para sobrar espaço pro texto */
    background-repeat: no-repeat;  
    color: var(--white);
    text-align: center;
}

.cta-logo-container {
    margin-bottom: 2rem;
}

.cta-logo {
    width: 140px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.cta-final .section-title {
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final .cta-button {
    background: #26ad3a;
    color: var(--white);
}

.cta-final .cta-button:hover {
    background: #f0f0f0;
    color: var(--secondary);
}

.urgency-text {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    opacity: 0.8;
}

.footer {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    opacity: 0.9;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif; /* troque pela fonte do seu projeto */
}

/* Cada item da FAQ */
.faq-item {
  border-bottom: 1px solid #ddd;
}

/* Botão da pergunta */
.faq-question {
  width: 100%;
  padding: 14px 30px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question:hover {
  color: #101820 !important;
}


/* Setinha */
.faq-arrow {
  transition: transform 0.2s ease;
}

/* Resposta (começa escondida) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 14px;
}

/* Espaço interno quando estiver aberta */
.faq-answer p {
  padding: 0 0 12px 0;
  margin: 0;
}

/* Quando o item estiver ativo (aberto) */
.faq-item.active .faq-answer {
  max-height: 200px; /* aumenta se tiver respostas maiores */
}

/* Gira a setinha pra cima quando abrir */
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}


/* ===== RESPONSIVO ===== */
@media (max-width: 968px) {
    /* ===== SEÇÃO: MENU DE NAVEGAÇÃO ===== */
    .nav-menu{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(85vw, 360px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 90px 22px 22px; /* espaço pro topo + respiro */
    box-shadow: -10px 0 30px rgba(0, 58, 64, 0.15);

    transform: translateX(110%);
    transition: transform .25s ease;
    z-index: 1000; /* acima do overlay */
    }

    .mobile-menu-close{
    display: flex;
    align-items: center;
    justify-content: center;
  }

    .nav-menu li { width: 100%; }
    .nav-menu a { width: 100%; display: block; }
    
    /* CTA ocupando largura */
    .nav-menu .nav-cta{
        display: none
    }

    /* estado aberto */
    .nav-menu.open { transform: translateX(0); }
    .nav-overlay.open{
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-close{
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .fases-container {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .protocolo-card {
        padding: 40px 20px;
    }
    
    .fase-circle {
        width: 100px;
        height: 100px;
    }
    
    .brain-icon {
        width: 50px;
        height: 50px;
    }
    
    .fase-item {
        min-width: 100px;
    }
    
    .fase-connector {
        max-width: 40px;
        margin-top: 50px;
    }
    
    .protocolo-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    .fase-nome {
        font-size: 1.1rem;
    }
    
    .fase-desc {
        font-size: 0.85rem;
    }

    .cenario-section {
        padding: 60px 15px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .items-list {
        gap: 35px;
    }

    .item {
        gap: 20px;
    }

    .item-number {
        width: 60px;
        height: 60px;
    }

    .item-number span {
        font-size: 1.7rem;
    }

    .item-content h3 {
        font-size: 1.25rem;
    }

    .item-content p {
        font-size: 1rem;
    }

    .instituto-section {
        padding: 80px 20px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-column img {
        height: 450px;
    }

    .text-column h2 {
        font-size: 2.2rem;
    }

    .mente-section {
        padding: 80px 20px;
    }

    .header-description {
        font-size: 1.1rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .transformacao-section {
        padding: 80px 20px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .title-column h2 {
        font-size: 2rem;
    }

    .cards-column {
        gap: 15px;
    }

    .depoimentos-videos-section {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        width: 50%;
        gap: 30px;
        margin: 0 auto;
    }

    .video-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-text {
        margin-top: 50px;
    }

    .footer-text p {
        font-size: 1.2rem;
    }

    .final-statement {
        padding: 50px 40px;
    }

    .statement-content h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.3rem;
    }
    
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .signs-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .transformation-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .transformation-item .before {
        min-width: auto;
    }
}
@media (max-width: 740px) {
    /* ===== SEÇÃO: MENU DE NAVEGAÇÃO ===== */
    .nav-menu{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(85vw, 360px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 90px 22px 22px; /* espaço pro topo + respiro */
    box-shadow: -10px 0 30px rgba(0, 58, 64, 0.15);

    transform: translateX(110%);
    transition: transform .25s ease;
    z-index: 1000; /* acima do overlay */
    }

    .nav-menu li { width: 100%; }
    .nav-menu a { width: 100%; display: block; }
    
    /* CTA ocupando largura */
    .nav-menu .nav-cta{
        display: none
    }

    /* estado aberto */
    .nav-menu.open { transform: translateX(0); }
    .nav-overlay.open{
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-close{
    display: flex;
    align-items: center;
    justify-content: center;
    }

    /* ===== SEÇÃO: HERO ===== */
    .hero {
        /* mantém o que você quiser aqui, mas o importante é isso: */
        margin-top: 50px;      /* ajusta esse valor até o texto parar de ficar cortado */
        padding: 60px 0 60px;  /* espaço interno confortável (pode ajustar também) */
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }

    .hero-title {
        font-size: 2rem;
    }

    /* ===== SEÇÃO: SOBRE ===== */
    .about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: top center;  /* mais à direita para sobrar espaço pro texto */
    background-repeat: no-repeat;   
    color: var(--white);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    }

    .about-content h2 {
        color: var(--white);
    }

    .about-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .about-text .highlight {
        color: var(--white);
        font-weight: 200;
        border-left: 4px solid var(--white);
        padding-left: 20px;
        margin-top: 1.5rem;
    }

    .instituto-manifesto {
        padding: 60px 0;
    }
    
    /* ===== SEÇÃO: MANIFESTO ===== */
    .manifesto-section {
        padding: 30px 30px;
    }

    .final-statement {
        padding: 40px 25px;
    }

    .statement-content h2 {
        font-size: 1.7rem;
    }

    .values-list {
        font-size: 1.3rem;
        gap: 10px;
    }

    .text-block3 {
        padding: 20px;
        margin-bottom: -100px;
        text-align: center;
    }

    .text-block3 p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .tagline {
        font-size: 1.1rem;
    }

    /* ===== SEÇÃO: SAÚDE MENTAL ===== */
    .section-title h2 {
        font-size: 1.7rem;
    }

    .title-underline {
        width: 60px;
        height: 2px;
    }

    .item {
        flex-direction: column;
        gap: 15px;
    }

    .item-number {
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }

    .item-number span {
        font-size: 1.5rem;
    }

    .item-content {
        text-align: center;
        padding-top: 0;
    }

    .item-content h3 {
        font-size: 1.2rem;
    }

    .item-content p {
        font-size: 0.95rem;
    }

    /* ===== SEÇÃO: INSTITUTO ===== */
    .instituto-section {
        padding: 60px 15px;
    }

    .image-column img {
        height: 350px;
        border-radius: 15px;
    }

    .text-column h2 {
        font-size: 1.9rem;
        margin-bottom: 30px;
    }

    .text-block {
        margin-bottom: 25px;
    }

    .text-block p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .text-block.highlight {
        padding: 20px;
        margin-top: 30px;
    }

    /* ===== SEÇÃO: MENTE ===== */
    .mente-section {
        padding: 60px 15px;
    }

    .mente-section-header {
        margin-bottom: 50px;
    }

    .mente-section-header h2 {
        font-size: 2rem;
    }

    .mente-header-underline {
        width: 60px;
        height: 2px;
    }

    .mente-header-description {
        font-size: 1.05rem;
    }

     .text-block2 {
        margin-bottom: -120px;
        text-align: center;
    }

    .text-block2 p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    .card p {
        font-size: 1rem;
    }

    /* ===== SEÇÃO: TRANSFORMAÇÃO ===== */
    .transformacao-section {
        padding: 60px 15px;
    }

    .transformacao-title-column h2 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .transformacao-section {
        padding: 60px 16px;
    }

    .transformacao-content-wrapper {
        grid-template-columns: 1fr;  /* empilha imagem + cards */
        gap: 30px;
    }

    .transformacao-title-column {
        text-align: center;
    }

    .transformacao-title-column h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .transformacao-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .transformacao-title-column img {
        height: auto;        /* deixa a imagem se ajustar */
        height: 480px;
        margin-top: 18px;
    }

    .transformacao-cards-column {
        gap: 14px;
    }

    .transformacao-transform-card {
        padding: 18px 18px;
        gap: 16px;
    }

    .transformacao-card-content strong {
        font-size: 1.1rem;
    }

    .transformacao-card-content p {
        font-size: 0.95rem;
    }

    .transformacao-footer-text {
        margin-top: 40px;
    }

    .transformacao-footer-text p {
        font-size: 1.1rem;
    }

    /* ===== SEÇÃO: DEPOIMENTOS VIDEO ===== */
    .depoimentos-videos-section {
        padding: 60px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .video-wrapper {
        border-radius: 12px;
    }
    
    /* ===== SEÇÃO: PROTOCOLOS ===== */
    .quadros-section {
        padding: 80px 20px;
    }

    .section-title h2 {
        font-size: 2.3rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }

    .boxes-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .protocol-box {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .box-header {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .box-header h3 {
        font-size: 1.6rem;
    }

    .duration-badge {
        padding: 6px 20px;
        font-size: 0.9rem;
    }

    .phases-list {
        gap: 18px;
        margin-bottom: 35px;
    }

    .phase-row {
        gap: 15px;
    }

    .phase-icon-circle {
        width: 45px;
        height: 45px;
    }

    .phase-text {
        font-size: 1rem;
    }

    .box-footer {
        padding-top: 30px;
    }

    .box-footer p {
        font-size: 1.05rem;
    }

    .bottom-info {
        padding: 25px 30px;
    }

    .bottom-info p {
        font-size: 1.05rem;
    }

    /* ===== SEÇÃO: CONTADOR ===== */
    .estatisticas-section {
        padding: 50px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .stat-label {
        font-size: 0.95rem;
    }
    
    .divider {
        margin: 3rem auto;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .impact-quote p {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 15px;
    }
    

}

/* Telas "largas" em proporção próxima a 16:9 */
@media screen and (min-aspect-ratio: 16/9) {
  .hero {
    min-height: 100vh;             /* ocupa a altura toda da tela */
  }

  .hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

    /* Scrollbar customizada para mobile */
    .fases-container::-webkit-scrollbar {
        height: 6px;
    }

    .fases-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .fases-container::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 10px;
    }

    .fases-container::-webkit-scrollbar-thumb:hover {
        background: rgba(212, 175, 55, 0.8);
    }

}

/* MOBILE – força 1 vídeo por linha, todos iguais */
@media (max-width: 768px) {
  .depoimentos-videos-section .videos-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 24px;
  }

  .depoimentos-videos-section .video-card {
    width: 100%;
    max-width: 260px;   /* mesmo tamanho pra todos */
  }

  .depoimentos-videos-section .video-wrapper {
    width: 100%;
    padding-bottom: 177.78%;  /* mantém 9:16 */
    min-height: 0;            /* garante que não “engorde” */
  }

  .depoimentos-videos-section .video-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fcabccc *//* 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 */