
:root {
    --red: #c62828;
    --red-dark: #7a1a1d;
    --bg: #fff5f5;
    --text: #2a1414;
    --muted: #5a3a3a;
    --muted2:rgb(90, 58, 58);
    --card-bg: #ffffff;
    --white: #ffffff;
    --border: #e8dede;
    --green: #25d366;
    --green-dk: #1ebe5d;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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


/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,.58) 45%, rgba(0,0,0,.18) 100%), url('../../images/bulgarelli/home.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.hero-sobre {
    min-height: 90vh !important;
    min-height: 420px;
    background: linear-gradient(to right, rgba(0,0,0,.58) 45%, rgba(0,0,0,.18) 100%), url('../../images/bulgarelli/sobrenos.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 80px;
}
.hero-solucoes {
    min-height: 90vh !important;
    min-height: 420px;
    background: linear-gradient(to right, rgba(0,0,0,.58) 45%, rgba(0,0,0,.18) 100%), url('../../images/bulgarelli/home.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 80px;
}

.hero-title {
    color: #fff;
    max-width: 560px;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 50px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    max-width: 600px;
    margin-top: 16px;
}

/* ─── BUTTONS ─── */
.btn-red {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background: #e30613;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
}

    /* FAIXA DE FLASH */
    .btn-red:before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.7), transparent );
        transform: skewX(-25deg);
    }

    /* ENTRADA (mais rápida) */
    .btn-red:hover:before {
        animation: flashIn 0.45s ease forwards;
    }

    /* SAÍDA (voltando da direita para esquerda) */
    .btn-red:not(:hover):before {
        animation: flashOut 0.45s ease forwards;
    }

@keyframes flashIn {
    from {
        left: -120%;
    }

    to {
        left: 150%;
    }
}

@keyframes flashOut {
    from {
        left: 150%;
    }

    to {
        left: -120%;
    }
}

.btn-red-sm {
    background: var(--red);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    font-size: .88rem;
    font-weight: 600;
    display: inline-block;
    transition: background .2s;
}

    .btn-red-sm:hover {
        background: var(--red-dark);
    }

/* ─── SECTION ─── */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--red);
    margin-bottom: 20px;
    text-align: center;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--muted);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

/* ─── SOLUTION CARDS ─── */
.sol-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px 24px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

    .sol-card:hover {
        box-shadow: 0 12px 32px rgba(155,34,38,.1);
        transform: translateY(-3px);
    }

.sol-card-icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-right: 10px;
}

.sol-card-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
}

.sol-card-text {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 14px 0 22px;
}

/* ─── CREDIT SECTION ─── */
.credit-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--red);
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.credit-text {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.credit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

    .credit-list li {
        font-size: .9rem;
        color: var(--muted);
        padding: 4px 0;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

        .credit-list li::before {
            content: "●";
            color: var(--red);
            font-size: .45rem;
            margin-top: 8px;
            flex-shrink: 0;
        }

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 14px;
}

.feature-card-label {
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.feature-card-title {
    color: var(--red);
    gap: 8px;
    display: flex;
    font-size: 1.125rem;
    font-weight: 500;
    align-items: center;
}

/* ─── WORK ─── */
.work-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 14px;
}

.work-text {
    
    color: var(--muted);
    font-size: 1.05rem;
    opacity: .85;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    max-width: 520px;
}

.work-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 340px;
}

/* ─── FAQ ─── */
.faq-title {
    font-weight: 500;
    color: var(--red);
    margin-bottom: 36px;
    font-size: 2rem;
    line-height: 1.2;
}

.accordion-item {
    background: var(--card-bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    border-color: rgba(220,38,38,.35) !important;
}
    .accordion-item:has(.accordion-button:not(.collapsed)) {
        border-color: #dc2626;
        box-shadow: 0 10px 26px #dc262626;
    }
.accordion-button {
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
    background: var(--card-bg);
    box-shadow: none !important;
    padding: 18px 20px;
}

    .accordion-button:not(.collapsed) {
        color: var(--red);
        background: var(--card-bg);
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239b2226' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239b2226' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    }

.accordion-body {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.7;
    padding: 0 20px 18px;
}

/* ─── NOSSOS VALORES — CARDS ─── */
.valor-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

    .valor-card:hover {
        box-shadow: 0 10px 28px rgba(155,34,38,.08);
        transform: translateY(-3px);
    }

.valor-icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
}

.valor-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
}

.valor-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── COMO ATUAMOS — STEPS ─── */
.step-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow .2s, transform .2s;
}

    .step-card:hover {
        box-shadow: 0 8px 24px rgba(155,34,38,.07);
        transform: translateY(-2px);
    }

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: .97rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 4px;
}

.step-text {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.icon-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 28px;
}
.area-icon {
    font-size: 2.4rem;
    color: var(--red);
    flex-shrink: 0;
}

/* ─── PAGE HEADER ─── */
.page-header {
    padding: 120px 0 50px;
    background: var(--bg);
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--red);
    margin-bottom: 14px;
}

.page-subtitle {
    font-size: .95rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ─── MAIN SECTION ─── */
.trabalhe-section {
    padding: 20px 0 90px;
    background: var(--bg);
}

/* card wrapper */
.trabalhe-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}

/* foto */
.trabalhe-photo {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* conteúdo do formulário */
.trabalhe-body {
    padding: 36px 40px 40px;
}

.form-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 10px;
}

.form-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.form-label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-control {
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--text);
    padding: 12px 16px;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    font-family: 'Poppins', sans-serif;
}

    .form-control::placeholder {
        color: #bbb;
    }

    .form-control:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(155,34,38,.08);
        outline: none;
    }

select.form-control {
    appearance: none;
}
/* ─── POR QUE TRABALHAR ─── */
.porque-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 860px;
    margin: 32px auto 0;
}

.porque-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 18px;
}

.porque-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

    .porque-list li {
        font-size: .9rem;
        color: var(--muted);
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.6;
    }

        .porque-list li::before {
            content: "·";
            color: var(--red);
            font-size: 1.3rem;
            line-height: 1.1;
            flex-shrink: 0;
        }

.porque-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--red);
    transition: opacity .2s;
    display: inline-block;
}

    .porque-link:hover {
        opacity: .75;
        color: var(--red);
        text-decoration: underline;
    }

.login-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background: var(--bg);
}


.login-card {
    display: flex;
    width: 100%;
    max-width: 1500px;
    height: 700px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
    min-height: 420px;
}
.login-form-side {
    flex: 0 0 27%;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.login-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}
.login-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.form-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
    display: block;
}

.form-control {
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--text);
    padding: 12px 16px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}

    .form-control::placeholder {
        color: #bbb;
    }

    .form-control:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(155,34,38,.08);
        outline: none;
    }

.login-security {
    font-size: .78rem;
    color: #999;
    line-height: 1.6;
    margin-top: 10px;
}

/* ─── LADO DIREITO — FOTO ─── */
.login-photo-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
}

    .login-photo-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-position: center;
        display: block;
    }

/* ─── RESPONSIVO ─── */
@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
    }

    .login-photo-side {
        height: 240px;
        border-radius: 24px 24px 0 0;
        order: 1;
    }

    .login-form-side {
        flex: unset;
        padding: 36px 28px;
        order: 2;
    }
}

/* ─── WHATSAPP SECTION ─── */
.whatsapp-section {
    padding: 100px 0 60px;
    background: var(--bg);
}
.whatsapp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    height: 700px;
}

.whatsapp-form-side {
    flex: 0 0 27%;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whatsapp-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 14px;
}

.whatsapp-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.whatsapp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

    .whatsapp-list li {
        font-size: 1rem;
        color: #4b5563;
        position: relative;
        padding-left: 16px;
        line-height: 1.65;
    }

        .whatsapp-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--text);
            font-size: .9rem;
        }
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    font-size: .9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
    margin-bottom: 10px;
}

    .btn-whatsapp:hover {
        background: var(--green-dk);
        color: #fff;
        transform: translateY(-1px);
    }

.btn-whatsapp-label {
    font-size: .88rem;
    font-weight: 700;
}

.btn-whatsapp-number {
    font-size: .88rem;
    font-weight: 500;
    opacity: .92;
}

.whatsapp-security {
    font-size: .78rem;
    color: #aaa;
    line-height: 1.6;
    margin-top: 14px;
}

.whatsapp-photo-side {
    flex: 1;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
}

    .whatsapp-photo-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* ─── RESPONSIVO ─── */
@media (max-width: 768px) {
    .whatsapp-card {
        flex-direction: column;
    }

    .whatsapp-photo-side {
        height: 220px;
        border-radius: 24px 24px 0 0;
        order: 1;
    }

    .whatsapp-form-side {
        flex: unset;
        max-width: 100%;
        padding: 36px 28px;
        order: 2;
    }
}
/* ─── CONTACT SECTION ─── */
.contact-section {
    flex: 1;
    padding: 100px 0 60px;
    background: var(--bg);
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    width:100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    height: 900px;
}

.contact-form-side {
    flex: 0 0 30%;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 12px;
}

.contact-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 28px;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 6px;
    display: block;
}

.form-control {
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: .88rem;
    color: var(--text);
    padding: 11px 14px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    margin-bottom: 18px;
}

    .form-control::placeholder {
        color: #bbb;
    }

    .form-control:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(155,34,38,.08);
        outline: none;
    }

select.form-control {
    appearance: none;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.btn-enviar {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px;
    font-size: .95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 4px;
}

    .btn-enviar:hover {
        background: var(--red-dark);
        transform: translateY(-1px);
    }
.contact-photo-side {
    flex: 1;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
}

    .contact-photo-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* ─── RESPONSIVO ─── */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-photo-side {
        height: 220px;
        border-radius: 24px 24px 0 0;
        order: 1;
    }

    .contact-form-side {
        flex: unset;
        max-width: 100%;
        padding: 36px 28px;
        order: 2;
    }
}

/* ─── PRIVACIDADE ─── */

.page-header {
    padding: 110px 0 40px;
    background: var(--bg);
    text-align: center;
}

.page-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 16px;
}

.page-intro {
    font-size: 1.05rem;
    color: var(--muted2);
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto 10px;
}

.page-date {
    font-size: .82rem;
    color: var(--muted);
    opacity: .75;
    font-style: italic;
}
.privacy-section {
    padding: 20px 0 90px;
    background: var(--bg);
}
.privacy-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 44px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.priv-section + .priv-section {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.priv-section-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 14px;
}

.priv-text {
    font-size: .98rem;
    color: var(--muted2);
    line-height: 1.8;
    margin-bottom: 14px;
}

    .priv-text:last-child {
        margin-bottom: 0;
    }
    .priv-text strong {
        font-weight: 500;
    }
.priv-subtitle {
    font-size: .98rem;
    font-weight: 500;
    color: var(--muted2);
    margin: 18px 0 8px;
}
    .priv-subtitle strong {
        font-weight: 500;
    }
.priv-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

    .priv-list li {
        font-size: .98rem;
        color: var(--muted2);
        line-height: 1.75;
        padding: 3px 0 3px 16px;
        position: relative;
    }

        .priv-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--muted);
        }
.priv-list strong {
    font-weight: 500;
}
@media (max-width: 768px) {
    .privacy-card {
        padding: 28px 22px;
    }
}