:root {
    --primary-color: #302a9d;
    --secondary-color: #003b6d;
    --accent-color: #e9c46a;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --primary-blue: #1a73e8;
    --primary-blue-light: #4d8fc4;
    --primary-blue-dark: #003b6d;
    --pure-white: #ffffff;
    --light-gray: #f5f8fa;
    --medium-gray: #e1e5e9;
    --dark-gray: #4a5c6b;
    --text-color: #2d3747;
    --accent-green: #4caf50;
    --accent-yellow: #ffc107;
    --sky-blue: #ADD8E6;
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 20px 0;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

h1 { font-size: 3.0rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1rem; }

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
/* Header */

header {
    background-color: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-bar {
    background-color: var(--primary-blue-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eee;
}

.top-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.info-left {
    display: flex;
    flex-wrap: wrap;
}
.info-item {
    display: flex;
    align-items: center;
    margin: 3px 15px 3px 0;
}
.info-item i {
    margin-right: 8px;
    color: #fff;
}
.info-text {
    font-size: 14px;
    color: #fff;
}
.social-icons {
    display: flex;
    align-items: center;
}
.social-icon {
    margin-right: 15px;
    color: #fff;
    font-size: 1.3rem; /* Ajuste o tamanho dos ícones do cabeçalho aqui */
    transition: color 0.3s;
}
.social-icon:hover {
    color: #0066cc;
}

/* Ícones de redes sociais no rodapé */
.footer .mt-4 a i {
    font-size: 1.8rem; /* Ajuste o tamanho dos ícones do rodapé aqui */
}
.footer .mt-4 a i:hover {
    color: #0066cc;
}


.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flexbox;
    align-items: center;
}

.logo img {
    width: 220px;
    height: 112px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.logo-text h5 {
    color: var(--primary-blue-dark);
    font-size: 0.9rem;
    font-style: normal ;
    text-align: right;
    margin-right: 20px;
}

.logo-text p {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.5s;
    padding: 5px 0;
}

.nav-menu a:hover 
{
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.5s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    border: none;
}

.text-justify-custom {
    text-align: justify;
}
.text-center-custom {
    text-align: center;
}

/* Responsividade */
@media (max-width: 992px) {
    .top-info {
        justify-content: center;
    }
    
    .info-left {
        justify-content: center;
    }

    .info-item {
        margin: 5px 15px;
    }

    .social-icons {
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }

    .social-icon {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        padding: 5px 0;
    }

    .logo {
        margin-bottom: 5px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
        padding: 10px;
        border-top: 1px solid #eee;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1px;
        right: 24px;
    }
}

@media (max-width: 576px) {
    .top-info {
        flex-direction: column;
        align-items: center;
    }

    .info-left {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        margin: 5px 0;  
    }

    .social-icons {
        margin-top: 5px;
    }
}

/* Seção de Serviços */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 3px;
    background-color: var(--primary-blue);
}

.section-subtitle {
    color: var(--primary-blue-light);
    max-width: 700px;
    margin: 35px auto;
    text-align: center;
}


/* Cards */
.card {
    background-color: var(--pure-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.card-img {
    height: 300px;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 3rem;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 25px;
}

.card-title {
    margin-bottom: 15px;
}

/* Seção Sobre */
.about {
    background-color: var(--pure-white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    max-height: 320px;
    height: auto;
    object-fit: contain;
    display: block;
}

.about-content {
    flex: 1;
}

@media (max-width: 600px) {
    .about-img {
        width: 100%;
    }
}


.specialties {
    margin: 30px 0;
}

.specialty-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.specialty-icon {
    background-color: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Botões */
.btn-custom {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn-custom:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-custom-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* --- Estilos do Botão Whatsapp --- */
.btn-whatsapp {
    /* Torna o botão flexível para alinhar o ícone e o texto */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Cores e espaçamento */
    background-color: #25D366;
    border-color: #25D366;
    color: #ffffff;
    padding: 15px 30px;
    
    /* Borda, sombra e transição */
    border-radius: 8px;
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo do ícone */
.btn-whatsapp i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    font-size: 22px;
}

/* Efeito ao passar o mouse */
.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px); /* Efeito de "levantar" */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
}

/* Efeito ao clicar */
.btn-whatsapp:active {
    background-color: #0099e6; /* Cor mais escura */
    transform: translateY(0); /* Volta à posição original */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
}

/* Estilos para telas menores (responsividade) */
@media (max-width: 600px) {
    .btn-whatsapp {
        width: 99%; /* Ocupa a maior parte da largura da tela */
        padding: 15px;
        font-size: 16px;
    }

    .btn-whatsapp i {
        font-size: 20px;
    }
}

/* --- Estilos do Botão Waze --- */
.btn-waze {
    /* Torna o botão flexível para alinhar o ícone e o texto */
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Cores e espaçamento */
    background-color: #33ccff; /* Cor azul característica do Waze */
    color: #ffffff;
    padding: 15px 30px;
    
    /* Borda, sombra e transição */
    border-radius: 8px;
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo do ícone */
.btn-waze i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    font-size: 22px;
}

/* Efeito ao passar o mouse */
.btn-waze:hover {
    background-color: #00bfff; /* Tom de azul um pouco mais escuro */
    transform: translateY(-3px); /* Efeito de "levantar" */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
}

/* Efeito ao clicar */
.btn-waze:active {
    background-color: #0099e6; /* Cor mais escura */
    transform: translateY(0); /* Volta à posição original */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
}

/* Estilos para telas menores (responsividade) */
@media (max-width: 600px) {
    .btn-waze {
        width: 99%; /* Ocupa a maior parte da largura da tela */
        padding: 15px;
        font-size: 16px;
    }

    .btn-waze i {
        font-size: 20px;
    }
}

/* --- Estilos do Botão Maps --- */
.btn-maps {
    /* Torna o botão flexível para alinhar o ícone e o texto */
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Cores e espaçamento */
    background-color: #4285F4; /* Cor azul característica do Google Maps */
    color: #ffffff;
    padding: 15px 30px;
    
    /* Borda, sombra e transição */
    border-radius: 8px;
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo do ícone */
.btn-maps i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    font-size: 22px;
}

/* Efeito ao passar o mouse */
.btn-maps:hover {
    background-color: #357ae8; /* Tom de azul um pouco mais escuro */
    transform: translateY(-3px); /* Efeito de "levantar" */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
}

/* Efeito ao clicar */
.btn-maps:active {
    background-color: #2a65d1; /* Cor mais escura */
    transform: translateY(0); /* Volta à posição original */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
}

/* Estilos para telas menores (responsividade) */
@media (max-width: 600px) {
    .btn-maps {
        width: 99%; /* Ocupa a maior parte da largura da tela */
        padding: 15px;
        font-size: 16px;
    }

    .btn-maps i {
        font-size: 20px;
    }
}

/* --- Estilos do Botão Waze --- */
.btn-instagram {   
    /* Gradiente de cores do Instagram */
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra para dar profundidade */


    /* Torna o botão flexível para alinhar o ícone e o texto */
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Cores e espaçamento */
    color: #ffffff;
    padding: 15px 30px;
    
    /* Borda, sombra e transição */
    border-radius: 8px;
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo do ícone */
.btn-instagram i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    font-size: 22px;
}

/* Efeito ao passar o mouse */
.btn-instagram:hover {
    background-color: #00bfff; /* Tom de azul um pouco mais escuro */
    transform: translateY(-3px); /* Efeito de "levantar" */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
}

/* Efeito ao clicar */
.btn-instagram:active {
    background-color: #0099e6; /* Cor mais escura */
    transform: translateY(0); /* Volta à posição original */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
}

/* Estilos para telas menores (responsividade) */
@media (max-width: 600px) {
    .btn-instagram {
        width: 99%; /* Ocupa a maior parte da largura da tela */
        padding: 15px;
        font-size: 16px;
    }

    .btn-instagram i {
        font-size: 20px;
    }
}
 /* --- Estilos do Botão hotmart --- */
.btn-hotmart {   
    background-color: #F04E23; /* Cor laranja da Hotmart */    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra para dar profundidade */
    /* Torna o botão flexível para alinhar o ícone e o texto */
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Cores e espaçamento */
    color: #fff !important;
    padding: 15px 30px;
    
    /* Borda, sombra e transição */
    border-radius: 8px;
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo do ícone */
.btn-hotmart i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    font-size: 22px;
}

/* Efeito ao passar o mouse */
.btn-hotmart:hover {
    background-color: #D4431D; /* Cor mais escura ao passar o mouse */
    transform: translateY(-3px); /* Efeito de "levantar" */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
}

/* Efeito ao clicar */
.btn-hotmart:active {
    background-color: #0099e6; /* Cor mais escura */
    transform: translateY(0); /* Volta à posição original */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
} 

  /* Estilos para telas menores (responsividade) */
@media (max-width: 600px) {
    .btn-hotmart {
        width: 99%; /* Ocupa a maior parte da largura da tela */
        padding: 15px;
        font-size: 16px;
    }

    .btn-hotmart i {
        font-size: 20px;
    }
}

/* --- Estilos do Botão hotmart --- */
.btn-neurotrilhar {
    background-color: #4d6b4e; /* Cor laranja da Hotmart */    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra para dar profundidade */
    /* Torna o botão flexível para alinhar o ícone e o texto */
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Cores e espaçamento */
    color: #fff !important;
    padding: 15px 30px;
    
    /* Borda, sombra e transição */
    border-radius: 8px;
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo do ícone */
.btn-neurotrilhar i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    font-size: 22px;
}

/* Efeito ao passar o mouse */
.btn-neurotrilhar:hover {
    background-color: #90a873; /* Cor mais escura ao passar o mouse */
    transform: translateY(-3px); /* Efeito de "levantar" */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
}

/* Efeito ao clicar */
.btn-neurotrilhar:active {
    background-color: #0099e6; /* Cor mais escura */
    transform: translateY(0); /* Volta à posição original */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
} 

  /* Estilos para telas menores (responsividade) */
@media (max-width: 600px) {
    .btn-neurotrilhar {
        width: 99%; /* Ocupa a maior parte da largura da tela */
        padding: 15px;
        font-size: 16px;
    }

    .btn-neurotrilhar i {
        font-size: 20px;
    }
}


/* Estilos para o vídeo */
.wp-block-video {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Classe utilitária para limpar a formatação de outra classe */
.clear-format {
    all: unset;
    box-sizing: border-box;
}


.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    background-color: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Hero Banner */
.hero {
    /* background: linear-gradient(rgba(0, 91, 159, 0.8), rgba(0, 91, 159, 0.9)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); */
    background-size: cover;
    background-position: center;
    color: #435e44;
    padding: 20px 0 20px 0;
    text-align: left;
    position: relative;
}

.hero h1 {
    color: #435e44;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    /* max-width: 800px; */
    margin: 0 auto 30px;
    opacity: 1.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
