/* ==========================================================================
   Instituto Longevidade - Estilos Principais
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

#header.scrolled {
    background-color: #013854;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 100px;
    width: auto;
    transition: height 0.3s ease;
}

#header.scrolled .logo img {
    height: 60px;
}

.nav-menu ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    display: block;
    padding: 5px 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #BFB53E;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background-color: rgba(255, 255, 255, 0.1);
    /* border-color: #fff; */
}

.btn-linkedin {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0077B5;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-linkedin:hover {
    background-color: #005885;
    transform: scale(1.1);
}

.menuu {text-align: center;line-height: normal;}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(190deg, rgb(19 57 91 / 85%) 1%, rgb(130 130 130 / 20%) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 300px 20px 0;
}

.hero-content h1 {
    color: #fff;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    transition: opacity 0.1s ease-out, filter 0.1s ease-out;
    opacity: 1;
    filter: blur(0px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

.scroll-indicator span {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* --------------------------------------------------------------------------
   Seção 1 - Destaque
   -------------------------------------------------------------------------- */
.section-destaque {
    background-color: #00314a;
    padding: 70px 0;
}

.section-destaque p {
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    text-align: center;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Seção 2 - Serviços
   -------------------------------------------------------------------------- */
.section-servicos {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.servico-card {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: all 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.servico-icon {
    width: 380px;
    height: auto;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #013854;
    border-radius: 50%; */
}

.servico-icon i {
    font-size: 32px;
    color: #fff;
}

.servico-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.servico-card h3 {
    color: #013854;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.servico-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Seção 3 - Imagem Responsiva
   -------------------------------------------------------------------------- */
.section-imagem {
    width: 100%;
    background-color: #00314a;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-imagem-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-imagem-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.section-imagem picture,
.section-imagem img {
    width: 100%;
    max-width: 1200px;
    display: block;
    /* margin: 0 auto 40px; */
}

.section-imagem-textos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-imagem-texto-coluna {
    color: #fff;
}

.section-imagem-texto-coluna p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Seção 4 - Jornadas
   -------------------------------------------------------------------------- */
.section-jornadas {
    padding: 80px 0;
    background-color: #fff;
}

.jornadas-header {
    text-align: center;
    margin-bottom: 60px;
}

.jornadas-header h2 {
    color: #013854;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.arrow-down {
    text-align: center;
    margin: 30px 0;
}

.arrow-down i {
    font-size: 38px;
    color: #BFB53E;
    animation: arrow-bounce 1s infinite;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.jornada-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 20px;
}

.jornada-item.reverse {
    direction: rtl;
}

.jornada-item.reverse>* {
    direction: ltr;
}

.jornada-img {
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
}

.jornada-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.jornada-img:hover img {
    transform: scale(1.05);
}

.jornada-content h3 {
    color: #013854;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.jornada-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Seção 5 - Sobre
   -------------------------------------------------------------------------- */
.section-sobre {
    /* padding: 100px 0; */
    background-color: #BFB53E;
    overflow: hidden;
}

.sobre-title-bar {
    width: 100%;
    background-color: #BFB53E;
}

.sobre-title-bar .container {
    padding: 80px 20px;
}

.sobre-title-bar h2 {
    color: #013854;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: normal;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    min-height: 600px;
}

.sobre-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.sobre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.sobre-content {
    padding: 80px 0 80px 40px;
    display: flex;
    align-items: center;
    max-width: 600px;
}

.sobre-block {
    margin-bottom: 35px;
}

.sobre-block h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sobre-block p {
    color: #013854;
    font-size: 16px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #013854;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 90px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #025a7a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 56, 84, 0.3);
}

/* --------------------------------------------------------------------------
   Seção 6 - CTA
   -------------------------------------------------------------------------- */
.section-cta {
    padding: 90px 0 100px;
    background-color: #fff;
    text-align: center;
}

.section-cta h2 {
    color: #013854;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: normal;
}

.section-cta h3 {
    color: #013854;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: normal;
}

.section-cta p {
    color: #666;
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #bfb53e;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 90px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d0c755;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(202, 211, 37, 0.3);
}

/* --------------------------------------------------------------------------
   Seção 7 - Blog
   -------------------------------------------------------------------------- */
.section-blog {
    padding: 80px 0 90px;
    background-color: #efefef;
}

.section-blog h2 {
    color: #013854;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-img {
    height: 180px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    text-align: center;
}

.blog-content h3 {
    color: #013854;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    /* min-height: 72px; */
}

.blog-content h2 {
    color: #013854;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    /* min-height: 72px; */
}

.btn-leia-mais {
    display: inline-block;
    padding: 10px 25px;
    background-color: #013854;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-leia-mais:hover {
    background-color: #025a7a;
}

/* --------------------------------------------------------------------------
   Seção 8 - Diferenciais
   -------------------------------------------------------------------------- */
.section-diferenciais {
    padding: 90px 0 100px;
    background-color: #fff;
}

.section-diferenciais h2 {
    color: #013854;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: normal;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    background-color: #013854;
}

.diferencial-item:hover p,
.diferencial-item:hover i {
    color: #fff;
}

.diferencial-item i {
    font-size: 24px;
    color: #BFB53E;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.diferencial-item p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    transition: color 0.3s ease;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Seção 9 - Fundador
   -------------------------------------------------------------------------- */
.section-fundador {
    padding: 100px 0 70px;
    background-color: #efefef;
}

.fundador-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.fundador-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.fundador-img img {
    width: 100%;
}

.fundador-content h3 {
    color: #013854;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fundador-content .cargo {
    display: block;
    color: #BFB53E;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.curriculo p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.curriculo p+h4 {
    margin-top: 20px;
}

.curriculo h4 {
    color: #666;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Seção 10 - Contato
   -------------------------------------------------------------------------- */
.section-contato {
    padding: 80px 0 100px;
    background-color: #fff;
}

.section-contato h2 {
    color: #013854;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.form-contato {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    color: #013854;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #013854;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox customizado */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    flex-wrap: nowrap;
}

.checkbox-text {
    flex: 1;
    display: inline-block;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    flex-shrink: 0;
    border: 2px solid #013854;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background-color: #013854;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 12px;
}

.checkbox-label a {
    color: #013854;
    text-decoration: underline;
    display: inline;
}

.checkbox-label a:hover {
    color: #025a7a;
}

.btn-enviar {
    width: 100%;
    padding: 18px 35px;
    background-color: #bfb53e;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 14px;
}

.btn-enviar:hover {
    background-color: #d0c755;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(202, 211, 37, 0.3);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
#footer {
    background-color: #013854;
    padding: 100px 0 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-width: 250px;
    margin-top: -25px;
}

.footer-endereco h4 {
    color: #BFB53E;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-endereco p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6cc2ef;
    font-size: 18px;
    font-weight: 500;
}

.whatsapp-link:hover {
    color: #fff;
}

.footer-contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.email-link:hover {
    color: #fff;
}

.linkedin-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0077B5;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background-color: #005885;
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

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

/* ==========================================================================
   Responsivo - Tablets
   ========================================================================== */
@media (max-width: 1300px) {
.logo img {height: 60px;}
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }

    .btn-phone span {
        display: none;
    }

    .btn-phone {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .section-destaque p {
        font-size: 18px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Responsivo - Mobile
   ========================================================================== */
@media (max-width: 1100px) {
    /* Header Mobile */
    .menu-toggle {
        display: flex;
    }
      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: #013854;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }

    .header-buttons {
        display: none;
    }

}

@media (max-width: 768px) {

    /* Hero Mobile */
    #hero {
        background-attachment: scroll;
        background-image: url('../images/hero-bg-mobile.jpg');
        align-items: flex-end;
        padding-bottom: 80px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    /* Seções */
    .section-destaque p {
        font-size: 22px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .servico-card {
        padding: 40px 30px;
    }

    .jornada-item,
    .jornada-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .jornada-content h3 {
        font-size: 24px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sobre-img {
        height: 400px;
    }

    .sobre-content {
        padding: 40px 20px;
    }

    .sobre-title-bar .container {
        padding: 30px 20px;
    }

    .sobre-title-bar h2 {
        font-size: 30px;
    }

    /* Seção Imagem */
    .section-imagem-container {
        padding: 40px 20px;
    }

    .section-imagem-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .section-imagem-textos {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-cta h2,
    .section-blog h2,
    .section-diferenciais h2,
    .section-contato h2,
    .jornadas-header h2 {
        font-size: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-content h3 {
        min-height: auto;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .fundador-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fundador-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .fundador-content {
        text-align: center;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .footer-contato {
        align-items: center;
    }
}

/* ==========================================================================
   Responsivo - Mobile Pequeno
   ========================================================================== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    #hero {
        padding-bottom: 60px;
    }

    .servico-card {
        padding: 30px 20px;
    }

    .servico-icon {
        width: 80%;
        height: auto;
    }

    .servico-icon i {
        font-size: 24px;
    }

    .servico-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .servico-card h3 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Seção Imagem Mobile Pequeno */
    .section-imagem-container {
        padding: 60px 15px;
    }

    .section-imagem-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .section-imagem-texto-coluna p {
        font-size: 15px;
    }
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* --------------------------------------------------------------------------
   Cookie Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: #BFB53E;
    color: #000;
    padding: 40px 0;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #fffab4;
}

.btn-accept {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn-accept {
        width: 100%;
    }
}
