/* --- UNIFICAÇÃO DAS VARIÁVEIS (PALETA DEFINIDA) --- */
:root {
    /* Cores Base */
    --azul-claro: #31B4E3;
    --azul-medio: #5F7DC9;
    --roxo: #9553B6;
    --rosa: #E7229D;
    --rosa-forte: #FD286C;
    --laranja: #FE744A;
    --azul-escuro: #102F4A;
    --branco: #F8F8F9;
    --white: #ffffff;

    /* Mapeamento para o Código 1 (Header/Hero/Footer) */
    --primary: var(--azul-escuro);
    --accent: var(--laranja);
    --soft-bg: var(--branco);
    --text: #425466;

    /* Mapeamento para o Código 2 (Conteúdo) */
    --primary-blue: var(--azul-escuro);
    --secondary-blue: var(--azul-medio);
    --accent-orange: var(--laranja);
    --accent-orange-hover: var(--rosa-forte);
    --light-bg: var(--branco);
    --text-dark: #425466;
    --text-light: #E6F1FF;
}

/* --- RESET GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    /* Fonte padrão para leitura */
}

/* Títulos com fonte mais moderna (Estilo Binoto 1) */
h1,
h2,
h3,
.logo,
.btn,
.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- ESTILOS DO CÓDIGO 1 (HEADER, HERO, FOOTER) --- */

/* Header */
header {
    padding: 4px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -1px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100px;
    margin-right: 8px;
}

.logo span {
    color: var(--primary);
}

.logo span b {
    color: var(--accent);
}

.nav-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    margin-left: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--rosa-forte);
}

.btn-contc {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-contc:hover {
    background: var(--rosa-forte);
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 8% 0 8%;
    /* Ajusta espaço superior para header menor */
    background-image: url("https://pub-c57a108e7cfe42bb9af79581c2b1ca43.r2.dev/logisticaparatodos/fundo.png");
    background-color: rgba(255, 255, 255, 0.93);
    /* controla o clareamento */
    background-blend-mode: lighten;
    background-size: cover;
    background-position: 300px -23%;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--roxo), var(--rosa-forte), var(--laranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-main {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px rgba(254, 116, 74, 0.2);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(254, 116, 74, 0.4);
    background: var(--rosa-forte);
}

.btn-sub {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-sub:hover {
    background: var(--primary);
    color: white;
}

/* Footer */
footer {
    background: var(--azul-escuro);
    color: white;
    padding: 80px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h4 {
    margin-bottom: 20px;
    color: var(--laranja);
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-grid a:hover {
    color: var(--azul-claro);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

/* Pulse Animation */
.floating-whatsapp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.6;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- ESTILOS DO CÓDIGO 2 (CONTEÚDO) --- */

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    padding: 80px 0;
}

/* Espaçamento padrão */

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px;
}

/* Sobre */
#sobre {
    background-color: var(--light-bg);
    text-align: center;
}

#sobre p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #555;
}

.quote-cristo {
    font-style: italic;
    font-weight: 600;
    color: var(--roxo);
    margin-top: 30px;
    font-size: 1.3rem;
}

/* Público (Cards) */
.publico-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.publico-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-bottom: 4px solid var(--accent);
}

.publico-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--rosa-forte);
}

.publico-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.publico-card:nth-child(1) i {
    color: var(--azul-claro);
}

.publico-card:nth-child(2) i {
    color: var(--rosa-forte);
}

.publico-card:nth-child(3) i {
    color: var(--roxo);
}

.publico-card:nth-child(4) i {
    color: var(--laranja);
}

/* Oferecemos */
#oferecemos {
    background-color: var(--primary);
    color: white;
}

#oferecemos h2 {
    color: white;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.servico-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--azul-claro);
    transition: 0.3s;
}

.servico-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--laranja);
}

.servico-card h3 {
    color: var(--azul-claro);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Passo a Passo */
.passo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding-bottom: 20px;
}

.passo {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.passo-numero {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(254, 116, 74, 0.4);
}

/* Modalidades */
#modalidades {
    background-color: var(--light-bg);
}

.mod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mod-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(16, 47, 74, 0.05);
}

.mod-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mod-card h3 i.text-orange {
    color: var(--rosa-forte);
}

.mod-card ul {
    list-style: none;
    margin-top: 20px;
}

.mod-card ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.mod-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--azul-claro);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Fundador */
.fundador-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.fundador-text {
    flex: 1;
    min-width: 300px;
}

.fundador-text blockquote {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    border-left: 5px solid var(--azul-medio);
    padding-left: 20px;
    margin-bottom: 20px;
}

.fundador-biblia {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-style: italic;
}

/* Impacto */
#impacto {
    background: var(--primary);
    color: white;
    text-align: center;
}

#impacto h2 {
    color: white;
}

.numeros-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.numero-item {
    font-size: 3.5rem;
    font-weight: 800;
}

.numero-item:nth-child(1) {
    color: var(--rosa-forte);
}

.numero-item:nth-child(2) {
    color: var(--azul-claro);
}

.numero-item:nth-child(3) {
    color: var(--roxo);
}

.numero-item:nth-child(4) {
    color: var(--laranja);
}

.numero-item span {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Parceiros */
#parceiros {
    background-color: var(--light-bg);
    text-align: center;
}

.ajudar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.ajudar-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.ajudar-card:hover {
    transform: translateY(-5px);
}

.ajudar-card i {
    display: block;
    font-size: 2rem;
    margin-bottom: 15px;
}

.ajudar-card:nth-child(1) i {
    color: var(--laranja);
}

.ajudar-card:nth-child(2) i {
    color: var(--roxo);
}

.ajudar-card:nth-child(3) i {
    color: var(--rosa-forte);
}

.ajudar-card:nth-child(4) i {
    color: var(--azul-claro);
}

/* Contato */
.contato-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--light-bg);
    border-radius: 15px;
}

.contato-info {
    padding: 30px;
}

.contato-info,
.contato-form {
    flex: 1;
    min-width: 300px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contato-form form {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
    /* Removido align-items:center para inputs ocuparem toda largura */
}

.contato-form .form-group {
    width: 100%;
}

.contato-form .form-control {
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--rosa-forte);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.form-control:focus {
    outline: none;
    border-color: var(--azul-claro);
}

.btn-primary {
    background: var(--accent);
    color: white;
    width: 100%;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(254, 116, 74, 0.2);
}

.btn-primary:hover {
    background: var(--rosa-forte);
}

/* CTA Final */
#cta-final {
    background: linear-gradient(135deg, var(--roxo), var(--rosa-forte), var(--laranja));
    text-align: center;
    color: white;
    padding: 80px 20px;
}

#cta-final h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* --- SEÇÃO: EQUIPE --- */
#equipe {
    background-color: var(--white);
}

.equipe-header p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #666;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

/* Efeito de cores da sua paleta no Hover para cada card */
.team-card:nth-child(1):hover {
    border-bottom-color: var(--azul-claro);
}

.team-card:nth-child(2):hover {
    border-bottom-color: var(--rosa-forte);
}

.team-card:nth-child(3):hover {
    border-bottom-color: var(--laranja);
}

.team-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--roxo);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.team-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Impacto novo */

.impacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impacto-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.impacto-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
}

.impacto-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.impacto-card:nth-child(1) i {
    color: var(--rosa-forte);
}

.impacto-card:nth-child(2) i {
    color: var(--azul-claro);
}

.impacto-card:nth-child(3) i {
    color: var(--roxo);
}

.impacto-card:nth-child(4) i {
    color: var(--laranja);
}

.impacto-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.impacto-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Logos de empresas */

.logos-parceiros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 30px;
    align-items: center;
}

.logo-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.logo-item img {
    max-width: 100%;
    max-height: 45px;
}

/* Responsividade Global */
@media (max-width: 768px) {

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        max-width: 70px !important;
    }

    nav {
        display: flex;
        align-items: center;
    }

    header .nav-link {
        display: none;
    }

    .btn-contc {
        padding: 8px 14px;
        font-size: 0.8rem;
        border-radius: 30px;
    }

    .hero {
        text-align: center;
        padding-top: 120px;
        background-position: 200px -10%;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    .footer-grid,
    .fundador-content {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    #cta-final h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 70px !important;
    }
}