.elementor-8 .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;}@media(min-width:768px){.elementor-8 .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: 'Roboto', sans-serif;
    --font-body: 'Merriweather', 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-heading);
    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%;
}

.nav-cta {
    background: #56F575;
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button {
    background: #56F575;
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    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;
}

.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 1: HERO ===== */
.hero {
    background-image: url('https://institutofellipecruz.com/wp-content/uploads/2025/12/1-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: #56F575;
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    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 2: 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: INSTITUTO MANIFESTO ===== */
.instituto-manifesto {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.instituto-manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.manifesto-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.manifesto-content h2 {
    line-height: 1.9;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.manifesto-content h3 {
    font-size: 1.8rem;
    line-height: 1.9;
    margin-bottom: -1.8rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.manifesto-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.manifesto-content p.highlight {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    line-height: 2;
    margin: 3rem 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--white);
    border-radius: 8px;
    text-align: left;
}

.manifesto-content p.emphasis {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    line-height: 2;
    margin: 3rem 0;
    text-align: center;
}

.manifesto-content p.final-statement {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    margin-top: 4rem;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--white);
    margin: 4rem auto;
    opacity: 0.5;
}

/* ===== SEÇÃO 3: TRANSFORMAÇÃO ===== */
.transformation {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, rgba(0, 58, 64, 0.03), transparent);
    pointer-events: none;
}

.transformation-list {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.transformation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    margin-bottom: 15px;
    background: var(--white);
    border-left: 5px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 58, 64, 0.08);
    transition: all 0.3s ease;
}

.transformation-item:hover {
    background: rgba(0, 58, 64, 0.03);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 58, 64, 0.12);
}

.transformation-item .before {
    color: #666;
    min-width: 200px;
}

.transformation-item .after {
    color: var(--secondary);
    font-weight: 500;
}

.arrow {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.impact-quote {
    background: var(--primary);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 58, 64, 0.2);
}

.impact-quote p {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
}

/* ===== SEÇÃO 4: MÉTODO ===== */
.method {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.method .section-title {
    color: var(--white);
}

.method .intro-text {
    color: rgba(255, 255, 255, 0.95);
}

.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 5: SOBRE ===== */
.about {
    padding: 80px 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);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    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.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text .highlight {
        color: var(--white);
    font-weight: 600;
    border-left: 4px solid var(--white);
    padding-left: 20px;
    margin-top: 2rem;
}

/* ===== SEÇÃO 6: PROTOCOLO ===== */
.protocolos-section {
    background: var(--bg-dark);
    /* Adicione aqui a imagem de background: */
    /* background-image: url('sua-imagem.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.protocolos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 58, 64, 0.85);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
}

/* ===== CARD DE PROTOCOLO ===== */
.protocolo-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 60px 40px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.protocolo-card:last-child {
    margin-bottom: 0;
}

/* ===== TÍTULO DO PROTOCOLO ===== */
.protocolo-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.protocolo-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
}

/* ===== CONTAINER DAS FASES ===== */
.fases-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
}

/* ===== CONECTORES ENTRE FASES ===== */
.fase-connector {
    width: 100%;
    max-width: 80px;
    height: 2px;
    background: var(--connector-color);
    margin-top: 70px;
    flex-shrink: 0;
}

/* ===== ITEM DE FASE ===== */
.fase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    flex-shrink: 0;
}

/* ===== CÍRCULO DA FASE ===== */
.fase-circle {
    width: 140px;
    height: 140px;
    border: 2px solid var(--circle-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 58, 64, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.fase-item:hover .fase-circle {
    border-color: var(--gold);
    background: var(--primary-light);
    transform: scale(1.05);
}

/* ===== ÍCONE DE CÉREBRO ===== */
.brain-icon {
    width: 70px;
    height: 70px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.fase-item:hover .brain-icon {
    color: var(--light);
}

/* ===== NOME DA FASE ===== */
.fase-nome {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 12px;
}

/* ===== DESCRIÇÃO DA FASE ===== */
.fase-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

/* ===== TIPO DE SESSÃO (PRESENCIAL) ===== */
.fase-tipo {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 5px;
}

.fase-tipo.presencial {
    color: #cfcd53;
}

/* ===== RODAPÉ DO PROTOCOLO ===== */
.protocolo-footer {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 20px;
}

/* ===== SEÇÃO 7: 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 8: OBJEÇÕES ===== */
.objections {
    padding: 80px 0;
    background: var(--light);
}

.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 9: 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.1rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    transition: all 0.3s ease;
}

.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 10: 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: 120px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.cta-final .section-title {
    color: var(--white);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final .cta-button {
    background: #56F575;
    color: var(--white);
}

.cta-final .cta-button:hover {
    background: #f0f0f0;
    color: var(--secondary);
}

.urgency-text {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.footer {
    margin-top: 60px;
    padding: 40px 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) {
    .nav-menu {
        position: fixed;
        top: 140px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 4px 10px rgba(0, 58, 64, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .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;
    }
    
    .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) {

    .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;
    }

    .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;
    }
    
    .manifesto-content h2 {
        font-size: 1.3rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .manifesto-content h3 {
        font-size: 1.4rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    
    .manifesto-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .manifesto-content p.highlight {
        font-size: 1.15rem;
        padding: 20px;
        margin: 2rem 0;
    }
    
    .manifesto-content p.emphasis {
        font-size: 1.15rem;
        margin: 2rem 0;
    }
    
    .manifesto-content p.final-statement {
        font-size: 1.3rem;
        margin-top: 3rem;
    }
    
    .divider {
        margin: 3rem auto;
    }
}

    .section-title {
        font-size: 1.75rem;
    }

    .impact-quote p {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 15px;
    }

    .protocolos-section {
        padding: 50px 0;
    }
    
    .protocolo-card {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    
    .protocolo-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .fase-circle {
        width: 80px;
        height: 80px;
    }
    
    .brain-icon {
        width: 40px;
        height: 40px;
    }
    
    .fase-item {
        min-width: 90px;
    }
    
    .fase-connector {
        max-width: 30px;
        margin-top: 40px;
    }
    
    .fase-nome {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .fase-desc {
        font-size: 0.75rem;
    }
    
    .fase-tipo {
        font-size: 0.75rem;
    }
    
    .protocolo-footer {
        font-size: 0.95rem;
    }

/* 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);
}

}/* End custom CSS */