.elementor-357 .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-357 .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: 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;
}

/* 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: VÍDEO ===== */
.video-section{
  background-color: var(--light);
  padding: 20px 0;
}

.video-title{
  margin: 0 0 22px;
  font-size: 2rem;
  line-height: 1.2;
}

.video-card{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  background: #000;
}

.video-wrapper{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-el{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== SEÇÃO: MANIFESTO ===== */
.manifesto-section {
    background-color: var(--light);
    padding: 40px 20px;
    padding-top: 100px;
}

.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: 20px;
    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: 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;
}

/* ===== 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);
    }

    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .mente-section {
        padding: 80px 20px;
    }

}

@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: 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;
    }

    .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: VIDEO ===== */
    .video-section{ padding: 60px 0; }
    .video-title{ font-size: 1.4rem; }
    .video-card{ border-radius: 14px; }

    /* ===== SEÇÃO: MANIFESTO ===== */
    .manifesto-section {
        padding: 30px 30px;
        padding-top: 70px;
    }

    .final-statement {
        padding: 40px 25px;
    }

    .statement-content h2 {
        font-size: 1.7rem;
    }

    .values-list {
        font-size: 1.3rem;
        gap: 10px;
    }

    .tagline {
        font-size: 1.1rem;
    }

}

/* 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 */