/* style.css */

/* Variáveis CSS para cores */
:root {
    --lavanda: #898bbc ;
    --lavanda-escuro: #707195;
    --lavanda-glass: #898bbc55;
    --amarelo: #FFD35C;
    --rosa:#FFE6E6;
    --primary-blue: #5B8DEF;
    --light-blue: #EAF1FF;
    --beige: #F7F4EF;
    --aqua-green: #E7F4F1;
    --text-gray: #4A4A4A;
    --white: #FFFFFF;
    --menta: #26D366; /* WhatsApp brand color or similar mint shade */
}

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

html, body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--beige);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1rem; /* Mais padding para mobile */
}

/* Tipografia */
h1, h2, h3 {
    color: var(--lavanda-escuro);
    line-height: 1.2;
    margin-bottom: 0.8em;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    line-height: 1.2;
}

h2 span {
    display: block;
    font-size: 1.1rem;
    color: var(--lavanda);
    font-weight: 400;
    margin-top: 0.8rem;
    text-transform: none;
    letter-spacing: normal;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--lavanda), var(--menta));
    border-radius: 10px;
}

h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4em;
    margin-top: 1.2em;
}

p {
    margin-bottom: 1em;
    font-size: 1em;
}



a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #dddedf; /* Um tom ligeiramente mais escuro do azul principal */
}

ul, ol {
    margin-bottom: 1em;
    margin-left: 1.5em;
}

ul li, ol li {
    margin-bottom: 0.5em;
}

/* Botões */
.button-primary {
    display: inline-block;
    background-color: var(--lavanda);
    color: var(--white);
    padding: 0.8em 1.5em;
    border-radius: 25px; /* Cantos arredondados */
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.button-primary:hover {
    background-color: var(--lavanda-escuro); /* Tom mais escuro */
    transform: translateY(-2px);
}

/* Cabeçalho */
.main-header {
    background-color: var(--lavanda-glass);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Sombra suave */
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    width: 100%;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.main-nav .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    text-decoration: none;
}

.main-nav .logo img {
    height: 50px !important;
    width: auto !important;
    border-radius: 4px;
    object-fit: contain;
}

.main-nav .logo span {
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--lavanda-escuro);
    font-family: 'Outfit', sans-serif;
}

.main-nav .nav-list {
    display: none; /* Esconde o menu por padrão no mobile */
    list-style: none;
}

.main-nav .nav-list.active {
    display: flex; /* Mostra quando ativo */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.main-nav .nav-list li {
    text-align: center;
    margin: 0.5rem 0;
}

.main-nav .nav-list a {
    color: var(--lavanda);
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
}

.main-nav .nav-list a:hover {
    color: var(--white);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: var(--lavanda-escuro);
    display: block; /* Mostra o botão de toggle no mobile */
}

/* Seções gerais */
section {
    position: relative; /* Essencial para o absolute das flores funcionar */
    overflow: visible !important;   /* Isso vai cortar a metade da flor que sair da seção */
    padding: 3rem 0;
    text-align: center;
}


section:nth-of-type(even) { /* Alterna cores de fundo para blocos informativos */
    background-color: var(--light-blue);
}

section:nth-of-type(odd) {
    background-color: var(--beige);
}

/* Hero Section */
.hero-section {
    background-color: #EAF1FF; /* Usando uma das cores suaves */
    color: var(--text-gray);
    padding:4rem 1rem;
    position: relative;
    overflow: hidden; /* Para formas orgânicas */
    background-image: url("assets/images/backg4.png");
    background-size: cover;       /* Faz a imagem cobrir toda a área sem distorcer */
    background-position: center;  /* Mantém o centro da imagem visível */
    background-repeat: no-repeat; /* Impede que a imagem se repita */
    margin-top: 80px;
}

.hero-section::before { /* Exemplo de forma orgânica */
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-section::after { /* Exemplo de forma orgânica */
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 40% 60% 70% 30% / 30% 30% 70% 70%; /* Forma orgânica */
    filter: blur(30px);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem; 
}

.hero-content {
    max-width: 80%;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.hero-content h1 {
    margin: 0px;
    font-size: 1rem;
    color: white;
    text-align: center;
    background-color: var(--lavanda);
    width: fit-content;
    padding: 8px 4px;
    border-radius: 8px;
    

}
.hero-content h2 {
    margin-top: 0px;
    font-size: 2.2em;
    margin-bottom: 0.5em;
    color: var(--lavanda);
    text-align: center;
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;

}

.hero-image {
    max-width: 250px;
    height: auto;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 4px solid var(--white);
    position: relative;
    z-index: 1;
}

.when-to-seek-section ul,
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item,
.when-to-seek-section ul li {
    background-color: var(--white);
    margin-bottom: 0.8em;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.expertise-item:hover,
.about-section ul li:hover,
.when-to-seek-section ul li:hover {
    transform: translateY(-5px);
}

.expertise-item .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    color: var(--lavanda);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.expertise-item .icon-wrapper i {
    width: 32px;
    height: 32px;
}

.expertise-item strong {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--lavanda-escuro);
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(106, 122, 194, 0.1);
    border: 1px solid rgba(106, 122, 194, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 122, 194, 0.15);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.value-card i {
    width: 32px;
    height: 32px;
    color: var(--lavanda);
    margin-bottom: 0; /* Removido margem antiga */
}

.value-card strong {
    display: block;
    font-size: 1.2rem;
    color: var(--lavanda-escuro);
    font-family: 'Outfit', sans-serif;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(106, 122, 194, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--lavanda-escuro);
    text-align: left;
}

.faq-question i {
    display: inline-block;
    width: 20px;
    height: 20px;
    color: var(--lavanda);
    transition: 0.3s;
}

.faq-item.active .faq-question i  {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fbfbfd;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ajuste conforme necessário */
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.formation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Cards mais largos */
    gap: 2rem;
    padding: 0;
    list-style: none;
    margin-top: 3rem;
}

.formation-grid li {
    background: var(--white);
    padding: 2rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(106, 122, 194, 0.08);
    border: 1px solid rgba(106, 122, 194, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.formation-grid li:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(106, 122, 194, 0.15);
    border-color: var(--lavanda);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(106, 122, 194, 0.1);
    color: var(--lavanda);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 15px;
    transition: 0.3s;
}

.icon-box svg {
    width: 100% !important;
    height: 100% !important;
    stroke-width: 2.2px;
}

/* Ajustes específicos na grade de formação */
.formation-grid li .icon-box {
    width: 80px;
    height: 80px;
}

.formation-grid li:hover .icon-box {
    background: var(--lavanda);
    color: var(--white);
}

/* Ajustes nos cards Sobre */
.value-card .icon-box {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 12px;
}

.formation-grid li span {
    font-size: 1.15rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
}

.seeking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.seeking-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 4px 12px rgba(106, 122, 194, 0.05);
    border: 1px solid rgba(106, 122, 194, 0.05);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seeking-card:hover {
    transform: translateX(10px);
    background: rgba(106, 122, 194, 0.02);
    border-color: var(--lavanda);
    box-shadow: 0 8px 20px rgba(106, 122, 194, 0.1);
}

.seeking-card .icon-box {
    width: 45px;
    height: 45px;
    padding: 10px;
    background: rgba(106, 122, 194, 0.1);
    border-radius: 12px;
}

.seeking-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

/* Removido override para permitir h2 global */


.flower{
    position: absolute;
    margin-top: -50px;
    width: 180px;
    z-index: 10;
    pointer-events: none;
}

.right{
    right: -100px;
}

.left{
    left: -100px;
}

.amarelo{
    filter: brightness(0) saturate(100%) invert(84%) sepia(39%) saturate(676%) hue-rotate(343deg) brightness(103%) contrast(102%);

}

.rosa{
    filter: brightness(0) saturate(100%) invert(61%) sepia(14%) saturate(694%) hue-rotate(197deg) brightness(95%) contrast(92%);
}

/* Como funciona (lista numerada) */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    border-top: 5px solid var(--amarelo);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    background: var(--amarelo);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-card i {
    width: 35px;
    height: 35px;
    color: var(--lavanda);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--lavanda-escuro);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    text-align: center;
}

.final-note {
    max-width: 800px;
    margin: 2rem auto !important;
    font-style: italic;
    color: var(--lavanda-escuro);
}

.main-footer {
    background-color: #2D3454; /* Um azul marinho profundo e elegante */
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    font-family: 'Nunito', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: left;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.footer-badges span {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.address-item i {
    color: var(--white);
    flex-shrink: 0;
    margin-top: 4px;
    width: 20px;
    height: 20px;
}

.address-item p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1); /* Torna o ícone (imagem) branco */
}

.contact-link:hover {
    color: var(--menta);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--white);
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--menta);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }
    .address-item, .contact-link {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
}

.how-it-works-section strong {
    color: var(--lavanda);
}

/* FAQ Section */
.faq-section {
    background-color: var(--beige);
}

.faq-item {
    background-color: var(--white);
    margin: 1.5rem auto;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    text-align: left;
}

.faq-item h3 {
    color: var(--lavanda);
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 1.2em;
}

.faq-item p {
    text-align: justify;
}

/* Contato Section */
.contact-section {
    background-color: var(--aqua-green);
    padding: 4rem 1rem;
}

.contact-section h2 {
    color: var(--lavanda);
    margin-bottom: 1em;
}

.contact-section p {
    font-size: 1.1em;
    margin-bottom: 2em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Localização */
.location-section .map-placeholder {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.location-section iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}


/* Botão Fixo do WhatsApp */
.whatsapp-fixed-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s ease;
}

.whatsapp-fixed-button:hover {
    transform: scale(1.05);
}

.whatsapp-fixed-button img {
    width: 35px;
    height: 35px;
    
}

.whatsapp-fixed-button img:hover {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;

    
}

/* Media Queries para Tablet e Desktop */
@media (min-width: 768px) {

    .hero-content {
        align-items: start;

    }
    .container {
        max-width: 960px;
        padding: 2rem;
    }

    h1 {
        font-size: 3.5em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 1.6em;
    }

    p {
        font-size: 1.1em;
    }

    .main-nav {
        padding: 0 2rem;
    }

    .main-nav .menu-toggle {
        display: none; /* Esconde o botão de toggle no desktop */
    }

    .main-nav .nav-list {
        display: flex; /* Mostra o menu de navegação no desktop */
        position: static;
        flex-direction: row;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
    }

    .main-nav .nav-list li {
        margin: 0 1rem;
    }

    .hero-section {
        padding: 5rem 2rem;
        min-height: 5vh;
    }

    .hero-container {
        justify-content: center;
    }

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

    .hero-image-container {
        flex: 1;
        display: flex;
        justify-content: center; /* Imagem à direita */
        margin-top: 0;
        padding: 20px;
    }

    .hero-image {
        max-width: 250px; /* Maior no desktop */
    }

    .hero-content h1 {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1.3em;
    }

    .whatsapp-fixed-button {
        bottom: 30px;
        right: 30px;
        width: 70px;
        height: 70px;
    }

    .whatsapp-fixed-button img {
        width: 40px;
        height: 40px;
    }


    .about-section .container {
        text-align: center; /* Garante que o texto dentro do container seja alinhado à esquerda */
    }

    /* Removido override h2 redundante */

    .right{
    right: -100px;
    }

    .left{
        left: -100px;
    }
}



/* Media Queries para Desktop grande */
@media (min-width: 1200px) {


    
    .flower{
        min-width: 300px;
        margin-top: -100px;
        z-index: 10;
        pointer-events: none;
    }

    .right{
        right: -150px;
    }

    .left{
        left: -150px;
    }

    .container {
        max-width: 1140px;
    }

    h1 {
        font-size: 3.5em;
    }

    h2 {
        font-size: 3em;
    }

    .hero-content h2 {
        font-size: 3.5em;
    }
}

/* --- Animações de Scroll (Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    pointer-events: none;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Staggered Delay para grids */
.expertise-item:nth-child(2), .step-card:nth-child(2), .value-card:nth-child(2), .seeking-card:nth-child(2), .seeking-grid .seeking-card:nth-child(even) { transition-delay: 0.1s; }
.expertise-grid .expertise-item:nth-child(3), .how-it-works-grid .step-card:nth-child(3), .values-grid .value-card:nth-child(3) { transition-delay: 0.2s; }
.expertise-grid .expertise-item:nth-child(4), .how-it-works-grid .step-card:nth-child(4) { transition-delay: 0.3s; }

/* AJUSTE FINAL LOGO - NÃO REMOVER */
.main-header .main-nav .logo img, 
.main-nav .logo img,
header .logo img {
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
    display: block !important;
    object-fit: contain !important;
}

