/* ===== VARIÁVEIS ===== */
:root {
    --hev-red: #B71C1C;
    --hev-bege: #F5F0EB;
    --hev-marrom: #2D1B14;
    --hev-dourado: #D4A853;
    --hev-verde: #5B7B4A;
    --hev-azul: #1A3A4A;
    --hev-offwhite: #FAFAF8;
    --hev-cinza: #8D847C;
    --font-title: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-bible: 'Cormorant Garamond', serif;
    --transition: 0.3s ease;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--hev-marrom);
    background: var(--hev-offwhite);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: var(--hev-red);
    color: #fff;
}

.btn--primary:hover {
    background: #8f1414;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 28, 28, 0.35);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== SECTION PADRÃO ===== */
.section {
    padding: 96px 0;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hev-red);
    margin-bottom: 12px;
}

.section__tag--light {
    color: var(--hev-dourado);
}

.section__title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--hev-marrom);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section__title--light {
    color: #fff;
}

.section__desc {
    font-size: 1.1rem;
    color: var(--hev-cinza);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 27, 20, 0.06);
    z-index: 1000;
    transition: var(--transition);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    height: 40px;
    width: auto;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--hev-marrom);
    transition: var(--transition);
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hev-red);
    transition: var(--transition);
}

.navbar__links a:hover::after {
    width: 100%;
}

.nav-link--cta {
    background: var(--hev-red);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-link--cta::after {
    display: none !important;
}

.nav-link--cta:hover {
    background: #8f1414 !important;
}

/* Navbar toggle (mobile) */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--hev-marrom);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hev-red) 0%, #8f1414 100%);
    color: #fff;
    text-align: center;
    padding-top: 72px;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero__logo {
    width: 420px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.hero__title {
    font-family: var(--font-title);
    font-size: 4rem;
    line-height: 1.15;
    max-width: 800px;
}

.hero__title--highlight {
    color: var(--hev-dourado);
}

.hero__subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.7;
}

/* ===== ESTRATÉGIA SAMARITANA ===== */
.samaritana {
    background: var(--hev-bege);
}

.samaritana__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.samaritana__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.samaritana__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--hev-marrom);
}

.samaritana__intro {
    font-size: 1.15rem !important;
    line-height: 1.7;
}

.samaritana__harvest {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--hev-dourado);
    margin: 8px 0;
}

.samaritana__harvest-logo {
    height: 48px;
    width: auto;
    flex-shrink: 0;
}

.samaritana__harvest strong {
    font-size: 1rem;
    color: var(--hev-marrom);
}

.samaritana__harvest span {
    font-size: 0.95rem;
    color: var(--hev-cinza);
    font-style: italic;
}

.link-externo {
    color: var(--hev-red);
    font-weight: 600;
    display: inline-block;
    margin-top: 4px;
}

.link-externo:hover {
    text-decoration: underline;
}

.samaritana__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(45, 27, 20, 0.08);
}

.stat-card__number {
    display: block;
    font-family: var(--font-title);
    font-size: 2.8rem;
    color: var(--hev-red);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card__label {
    font-size: 0.95rem;
    color: var(--hev-cinza);
}

/* ===== QUEM SOMOS ===== */
.sobre {
    background: var(--hev-marrom);
    color: #fff;
}

.sobre__manifesto {
    font-family: var(--font-bible);
    font-size: 2rem;
    line-height: 1.4;
    color: var(--hev-dourado);
    max-width: 700px;
    margin-bottom: 24px;
}

.sobre__text {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin-bottom: 56px;
    line-height: 1.8;
}

.sobre__dimensoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dimensao-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.dimensao-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.dimensao-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.dimensao-card h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--hev-dourado);
    margin-bottom: 12px;
}

.dimensao-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* ===== PILARES ===== */
.pilares__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pilar-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(45, 27, 20, 0.08);
    transition: var(--transition);
}

.pilar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 27, 20, 0.08);
}

.pilar-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pilar-card h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--hev-red);
    margin-bottom: 12px;
}

.pilar-card p {
    font-size: 0.95rem;
    color: var(--hev-cinza);
    line-height: 1.7;
}

/* ===== MICRO GROUPS ===== */
.microgroups {
    background: linear-gradient(135deg, var(--hev-azul) 0%, #0f2535 100%);
    color: #fff;
}

.microgroups__content {
    max-width: 720px;
}

.microgroups__text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 32px;
}

.microgroups__lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.microgroups__lista li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.5;
}

.microgroups__lista li::before {
    content: '▸';
    color: var(--hev-dourado);
    font-weight: bold;
    flex-shrink: 0;
}

/* ===== PROJETOS ===== */
.projetos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.projeto-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(45, 27, 20, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.projeto-card__icon {
    font-size: 2rem;
}

.projeto-card h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--hev-marrom);
}

.projeto-card p {
    font-size: 0.95rem;
    color: var(--hev-cinza);
    line-height: 1.7;
    flex: 1;
}

.projeto-card__local {
    font-size: 0.85rem;
    color: var(--hev-red);
    font-weight: 600;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background: var(--hev-bege);
}

.depoimentos__slider {
    position: relative;
    min-height: 200px;
    margin-bottom: 32px;
}

.depoimento-card {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.depoimento-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.depoimento-card__text {
    font-family: var(--font-bible);
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--hev-marrom);
    font-style: italic;
    margin-bottom: 20px;
}

.depoimento-card__author {
    font-size: 0.95rem;
    color: var(--hev-cinza);
    font-weight: 500;
}

.depoimentos__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.depoimentos__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--hev-red);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.depoimentos__dot.active {
    background: var(--hev-red);
}

/* ===== REDES ===== */
.redes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rede-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 32px 20px;
    border-radius: 16px;
    border: 1px solid rgba(45, 27, 20, 0.08);
    transition: var(--transition);
    text-align: center;
}

.rede-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 27, 20, 0.08);
}

.rede-card__icon {
    font-size: 2.2rem;
}

.rede-card__name {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--hev-marrom);
}

.rede-card__handle {
    font-size: 0.9rem;
    color: var(--hev-red);
    font-weight: 600;
}

/* ===== CONTATO ===== */
.contato {
    background: var(--hev-marrom);
    color: #fff;
}

.contato .section__desc {
    color: rgba(255, 255, 255, 0.8);
}

.form {
    max-width: 580px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.9;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form__input:focus {
    outline: none;
    border-color: var(--hev-dourado);
    background: rgba(255, 255, 255, 0.12);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form select.form__input option {
    color: var(--hev-marrom);
    background: #fff;
}

.form__submit {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.form__msg {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 4px;
}

.form__msg.success {
    color: #8bc34a;
}

.form__msg.error {
    color: #ef5350;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--hev-marrom);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 24px;
}

.footer__logo {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.footer__brand p {
    font-family: var(--font-bible);
    font-size: 1.1rem;
    color: var(--hev-dourado);
    font-style: italic;
}

.footer__links h4,
.footer__redes h4,
.footer__harvest h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--hev-dourado);
    margin-bottom: 16px;
}

.footer__links a,
.footer__redes a,
.footer__harvest a {
    display: block;
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer__links a:hover,
.footer__redes a:hover,
.footer__harvest a:hover {
    opacity: 1;
}

.footer__harvest span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.5;
    font-style: italic;
}

.footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 968px) {
    .samaritana__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .samaritana__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 140px;
    }

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

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

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .navbar__links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--hev-offwhite);
        padding: 24px;
        gap: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-110%);
        transition: var(--transition);
    }

    .navbar__links.active {
        transform: translateY(0);
    }

    .navbar__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .sobre__dimensoes,
    .pilares__grid,
    .projetos__grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 64px 0;
    }

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