/* ===================================
   MULTGRAF - Custom Styles
   Cores da marca:
   Azul: #2169B5 (principal)
   Vermelho: #E94B2C
   Amarelo: #FFED02
   =================================== */

:root {
    --primary-blue: #2169B5;
    --primary-red: #E94B2C;
    --primary-yellow: #FFED02;
    --dark-gray: #333;
    --light-gray: #f8f9fa;
}

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Linha Colorida no Topo */
.color-line {
    height: 5px;
    background: linear-gradient(to right,
            var(--primary-yellow) 0%,
            var(--primary-yellow) 33.33%,
            var(--primary-red) 33.33%,
            var(--primary-red) 66.66%,
            var(--primary-blue) 66.66%,
            var(--primary-blue) 100%);
}

/* Cores Bootstrap Customizadas */
.bg-primary {
    background-color: var(--primary-blue) !important;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #1a5493;
    border-color: #1a5493;
}

.text-primary {
    color: var(--primary-blue) !important;
}
.text-warning {
    color: #C4B704 !important;
}

.bg-danger {
    background-color: var(--primary-red) !important;
}

.text-danger {
    color: var(--primary-red) !important;
}

/* Top Bar */
.top-bar {
    background-color: #e8e8e8;
    color: #6e6e6e;
    border-bottom: 1px solid #727272;
}

.top-bar a {
    font-size: 1.1rem;
    transition: all 0.3s;
}

.top-bar a:hover {
    color: var(--primary-blue) !important;
}

.top-bar a i {
    font-size: 1.2rem;
}

.top-bar .btn-success {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
}

@media (max-width: 575px) {
    .top-bar {
        padding: 0.3rem 0 !important;
    }

    .top-bar a i {
        font-size: 1rem;
    }

    .top-bar .btn-success {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: #e8e8e8 !important;
}

.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.navbar-light .navbar-toggler {
    border-color: #6e6e6e;
    color: #6e6e6e;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: brightness(0);
}

 /* Logo celular */
 @media (max-width: 767px) {
    .navbar-brand img {
        width: 250px;
        height: auto;
    }
 }

.navbar-brand img {
    transition: transform 0.3s;
}

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

.navbar-nav .nav-link {
    color: #6e6e6e;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
}



.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-blue);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Section / Banner */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Produtos em Destaque */
.produtos-destaque {
    background-color: var(--light-gray);
}

.produtos-destaque .card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
    overflow: hidden;
}

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

.produtos-destaque .card-title {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Seção Sobre */
.sobre-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(233, 75, 44, 0.15), transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(255, 237, 2, 0.15), transparent 42%),
        linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
}

.sobre-section::before,
.sobre-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.sobre-section::before {
    width: 280px;
    height: 280px;
    background: #e94b2c;
    top: -100px;
    left: -80px;
}

.sobre-section::after {
    width: 320px;
    height: 320px;
    background: #ffed02;
    bottom: -140px;
    right: -80px;
}

.sobre-section .container {
    position: relative;
    z-index: 1;
}

.sobre-section img {
    transition: transform 0.3s;
}

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

.sobre-kicker {
    letter-spacing: 0.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
}

.sobre-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sobre-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sobre-metrics .sobre-metric-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
}

.sobre-metric-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.sobre-metric-card span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Quem Somos page */
 
.qs-kicker {
    letter-spacing: 0.18rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.qs-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qs-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(33, 105, 181, 0.08);
    color: #1f2a44;
    font-weight: 700;
    border: 1px solid rgba(33, 105, 181, 0.12);
}

.qs-metrics .qs-metric-card {
    background: #f7f9ff;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    color: #1f2a44;
}

.qs-metric-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.qs-metric-card span {
    font-size: 0.95rem;
    color: #4a5568;
}

.qs-mvv-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    font-size: 2.5rem;
}

.qs-mvv-icon.mission {
    background: linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
}

.qs-mvv-icon.vision {
    background: linear-gradient(135deg, #2ca25f 0%, #1b7d45 100%);
}

.qs-mvv-icon.values {
    background: linear-gradient(135deg, #d6b100 0%, #b49100 100%);
}

/* Parque Multgraf */
.parque-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, rgba(33, 105, 181, 0.08), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(233, 75, 44, 0.08), transparent 45%),
        #f6f7fb;
}

.parque-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    pointer-events: none;
}

.parque-kicker {
    letter-spacing: 0.18rem;
    font-weight: 800;
    color: var(--primary-red);
}

.parque-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.parque-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    color: #4a4a4a;
    font-weight: 600;
}

.parque-metrics .parque-metric {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.parque-metric .label {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
}

.parque-metric strong {
    display: block;
    font-size: 1.05rem;
    color: #1f2a44;
}

.parque-gallery .parque-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parque-gallery img {
    width: 100%;
    display: block;
    transition: transform 0.35s ease;
}

.parque-gallery .parque-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.parque-gallery .parque-card:hover img {
    transform: scale(1.05);
}

/* Contato */
.contact-content-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(233, 75, 44, 0.08), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(255, 237, 2, 0.1), transparent 35%),
        linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
    color: #0f1a2c;
}

.contact-content-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.18) 100%);
    pointer-events: none;
}

.contact-info-wrapper,
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-card-featured {
    background: linear-gradient(135deg, rgba(33, 105, 181, 0.12) 0%, rgba(255, 237, 2, 0.18) 100%);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
    display: grid;
    gap: 6px;
}

.featured-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.3rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
}

.contact-grid {
    display: grid;
    gap: 12px;
}

.contact-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-grid-item i {
    color: #2169b5;
    font-size: 1.2rem;
}

.contact-grid-item h4 {
    margin: 0;
    font-weight: 700;
    color: #1f2a44;
}

.contact-grid-item a,
.contact-grid-item p {
    margin: 0;
    color: #4a5568;
    text-decoration: none;
}

.contact-form-header h2 {
    font-weight: 800;
    color: #1f2a44;
}

.contact-form-header p {
    color: #4a5568;
}

.contact-form .form-label {
    font-weight: 700;
    color: #1f2a44;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-form .form-control,
.contact-form textarea {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0.9rem;
    box-shadow: none;
    background: #f9fbff;
}

.contact-form .form-control:focus,
.contact-form textarea:focus {
    border-color: #2169b5;
    box-shadow: 0 0 0 0.2rem rgba(33, 105, 181, 0.2);
    background: #fff;
}

.btn-contact {
    width: 100%;
    border-radius: 12px;
    font-weight: 800;
    padding: 0.9rem 1.2rem;
    background: #2169b5;
    border: none;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-contact:hover {
    background: #1a4f86;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 105, 181, 0.4);
}

.btn-contact:disabled {
    background: #ccc;
    color: #7a7a7a;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 22px;
    }

    .contact-grid-item {
        align-items: flex-start;
    }
}

/* Nossos Produtos */
.nossos-produtos {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(233, 75, 44, 0.12), transparent 35%),
        radial-gradient(circle at 80% 15%, rgba(255, 237, 2, 0.14), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(33, 105, 181, 0.12), transparent 45%),
        #ffffff;
    padding: 5rem 0;
}

.nossos-produtos::before,
.nossos-produtos::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.nossos-produtos::before {
    width: 320px;
    height: 320px;
    background: #e94b2c;
    top: -120px;
    left: -80px;
}

.nossos-produtos::after {
    width: 360px;
    height: 360px;
    background: #2169b5;
    bottom: -140px;
    right: -100px;
}

.produtos-header .eyebrow {
    letter-spacing: 0.25rem;
    font-weight: 700;
    color: var(--primary-red);
}

.produtos-header p {
    max-width: 820px;
    margin: 0 auto;
}

.produtos-grid {
    position: relative;
    z-index: 1;
}

.produtos-cta {
    background: rgba(33, 105, 181, 0.04);
    border: 1px solid rgba(33, 105, 181, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.produtos-cta .btn {
    border-radius: 10px;
    padding: 0.65rem 1.4rem;
}

.produtos-cta h4 {
    color: #1f2a44;
}

.produtos-cta p {
    max-width: 620px;
    margin: 0 auto;
}

.produto-card-modern {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.produto-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
 
}

.produto-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.produto-card-modern .produto-card-meta {
    font-size: 0.9rem;
}

.produto-badge {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid currentColor;
    background-color: rgba(255, 255, 255, 0.7);
}

.produto-mini {
    font-size: 0.9rem;
}

.produto-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.produto-card-modern .produto-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.produto-tags {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.produto-tags li {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.produto-figure {
    position: relative;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    isolation: isolate;
}

 
.produto-card-modern.corporativo {
    background: linear-gradient(145deg, rgba(233, 75, 44, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.produto-card-modern.corporativo .produto-blob {
    background: radial-gradient(circle at 40% 40%, rgba(233, 75, 44, 0.55), rgba(233, 75, 44, 0.25));
}

.produto-card-modern.promocional {
    background: linear-gradient(145deg, rgba(255, 237, 2, 0.18) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.produto-card-modern.promocional .produto-blob {
    background: radial-gradient(circle at 40% 40%, rgba(255, 237, 2, 0.55), rgba(196, 183, 4, 0.3));
}

.produto-card-modern.editorial {
    background: linear-gradient(145deg, rgba(33, 105, 181, 0.16) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.produto-card-modern.editorial .produto-blob {
    background: radial-gradient(circle at 40% 40%, rgba(33, 105, 181, 0.55), rgba(33, 105, 181, 0.25));
}

.produto-card-modern .produto-img {
    width:60%; 
    object-fit: cover;
    position: relative;
    z-index: 1; 
}

 

@media (max-width: 991px) {
    .nossos-produtos {
        padding: 4rem 0;
    }

    .produto-card-modern {
        padding: 22px;
    }

    .produto-card-modern h3 {
        font-size: 1.35rem;
    }

    .produto-figure {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .nossos-produtos {
        padding: 3rem 0;
    }

    .produtos-header .eyebrow {
        letter-spacing: 0.18rem;
    }

    .produto-card-modern {
        text-align: center;
    }

    .produto-card-meta {
        justify-content: center;
        gap: 0.75rem;
    }

    .produto-tags {
        justify-content: center;
    }

    .produto-figure {
        height: 180px;
    }
}

/* FAQ */
.faq-title-box {
    position: relative;
    overflow: hidden;
    color: var(--primary-blue);
}

.faq-title-box::before {
    content: 'FAQ';
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(142, 142, 142, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    line-height: 1;
}

.faq-title-box h2 {
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--dark-gray);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(233, 75, 44, 0.22), transparent 38%),
        radial-gradient(circle at 75% 10%, rgba(255, 237, 2, 0.24), transparent 40%),
        linear-gradient(135deg, #1e5fa6 0%, #153c6d 100%);
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.cta-shape-1 {
    width: 260px;
    height: 260px;
    background: #e94b2c;
    top: -80px;
    left: -80px;
}

.cta-shape-2 {
    width: 320px;
    height: 320px;
    background: #ffed02;
    top: 30%;
    right: -120px;
}

.cta-shape-3 {
    width: 280px;
    height: 280px;
    background: #2169b5;
    bottom: -120px;
    left: 30%;
}

.cta-kicker {
    letter-spacing: 0.28rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.cta-tags .cta-tag {
    background: rgba(255, 255, 255, 0.12);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-contact span {
    color: rgba(255, 255, 255, 0.9);
}

.cta-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    color: #0f1a2c;
}

.cta-steps li {
    padding: 0.35rem 0;
    font-weight: 600;
    color: #1f2a44;
}

.cta-phone-box {
    background: rgba(33, 105, 181, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(33, 105, 181, 0.15);
}

.cta-phone {
    font-size: 1.25rem;
}

/* Serviços */
.servicos-grid .card {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.servico-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.servico-icon.primary {
    background: linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
}

.servico-icon.green {
    background: linear-gradient(135deg, #2ca25f 0%, #1b7d45 100%);
}

.servico-icon.amber {
    background: linear-gradient(135deg, #d6b100 0%, #b49100 100%);
}

.servico-icon.red {
    background: linear-gradient(135deg, #e94b2c 0%, #c23b20 100%);
}

.servico-icon.cyan {
    background: linear-gradient(135deg, #2db5d8 0%, #1f8bab 100%);
}

.servico-icon.gray {
    background: linear-gradient(135deg, #6e7a8a 0%, #4c5564 100%);
}

.servicos-grid h5,
.servicos-grid h4 {
    color: #1f2a44;
}

.servicos-grid p {
    color: #4a5568;
}

.produto-pack-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.produto-thumb {
    width: 200px;
    height: 200px;
    border-radius: 18px;
    background: rgba(33, 105, 181, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.produto-thumb img {
    max-height: 90%;
    object-fit: contain;
}

.produto-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.produto-pills span {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #1f2a44;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .cta-section {
        text-align: center;
    }

    .cta-contact {
        justify-content: center;
    }
}

/* Sustentabilidade */
.sustentabilidade-section {
    position: relative;
    background-image: url('../img/bg-sustentabilidade.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 9rem 0;
}

.sust-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(233, 75, 44, 0.12), transparent 38%),
        radial-gradient(circle at 80% 10%, rgba(255, 237, 2, 0.14), transparent 40%),
        linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
}

.sust-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.2) 100%);
    pointer-events: none;
}

.sust-hero-icon {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    margin: 0 auto;
    font-size: 3.5rem;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.sust-practices .sust-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.sust-icon {
    width: 78px;
    height: 78px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #2169b5;
    font-size: 2.4rem;
    background: rgba(33, 105, 181, 0.08);
}

.sust-icon i {
    font-size: 2.4rem;
    color: currentColor;
}

.sust-impact {
    background: #f7f9ff;
}

.sust-impact .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.sust-impact .accordion-button {
    font-weight: 800;
    gap: 10px;
    color: #1f2a44;
    background: #f1f4fb;
}

.sust-impact .accordion-button:focus {
    box-shadow: none;
}

.sust-impact .accordion-body {
    background: #ffffff;
}

.sust-metric-card {
    border-radius: 14px;
    padding: 18px;
    color: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.sust-metric-card .sust-metric-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 1.4rem;
    margin-right: 12px;
    color: #fff;
}

.sust-metric-card.green {
    background: linear-gradient(135deg, #2ca25f 0%, #1b7d45 100%);
}

.sust-metric-card.blue {
    background: linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
}

.sust-metric-card.cyan {
    background: linear-gradient(135deg, #2db5d8 0%, #1f8bab 100%);
}

.sust-cta {
    background: linear-gradient(135deg, #2ca25f 0%, #2169b5 100%);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18) !important;
}

.sustentabilidade-section .container {
    position: relative;
    z-index: 1;
}

.sustentabilidade-section h2,
.sustentabilidade-section h3,
.sustentabilidade-section p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
}

/* Footer Modern */
.footer-modern {
    position: relative;
    background: #0f1a2c;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(233, 75, 44, 0.3), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(255, 237, 2, 0.25), transparent 35%),
        radial-gradient(circle at 60% 80%, rgba(33, 105, 181, 0.25), transparent 45%);
    opacity: 0.6;
}

.footer-modern .container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 190px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    display: inline-block;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact li {
    color: #e2e8f0;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.footer-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social:hover {
    background: var(--primary-yellow);
    color: #0f1a2c;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

@media (max-width: 767px) {
    .footer-modern .row > div {
        text-align: center;
    }

    .footer-social {
        margin: 0 auto;
    }

    .footer-bottom {
        text-align: center;
        gap: 0.5rem;
    }
}

/* Botões */
.btn {
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background-color: #1fb855;
    border-color: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-container {
        max-height: 400px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .banner-container {
        max-height: 300px;
    }

    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

/* FAQ (página dúvidas) */
.faq-content-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(233, 75, 44, 0.08), transparent 38%),
        radial-gradient(circle at 75% 10%, rgba(255, 237, 2, 0.1), transparent 42%),
        linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
}

.faq-wrapper {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-category-block + .faq-category-block {
    margin-top: 24px;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-category-header h2 {
    margin: 0;
    font-weight: 800;
    color: #1f2a44;
}

.faq-category-header span {
    color: #4a5568;
}

.category-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(33, 105, 181, 0.1);
    color: #2169b5;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-accordion .accordion-button {
    font-weight: 800;
    gap: 10px;
    color: #1f2a44;
    background: #f7f9ff;
    padding: 1rem 1.2rem;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button .question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(33, 105, 181, 0.12);
    color: #2169b5;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-accordion .accordion-body {
    color: #4a5568;
    line-height: 1.7;
    background: #ffffff;
    padding: 1rem 1.25rem;
}

.faq-cta-card {
    margin-top: 28px;
    background: linear-gradient(135deg, rgba(33, 105, 181, 0.12) 0%, rgba(255, 237, 2, 0.18) 100%);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
     color: #fff;
}

.faq-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(33, 105, 181, 0.18);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2169b5;
    color: #fff;
    padding: 0.65rem 1.2rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(33, 105, 181, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-faq-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(33, 105, 181, 0.45);
}

.faq-empty-state {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-empty-state .empty-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: rgba(33, 105, 181, 0.12);
    color: #2169b5;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin: 0 auto 12px;
}

.btn-empty-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2169b5;
    color: #fff;
    padding: 0.65rem 1.2rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(33, 105, 181, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-empty-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(33, 105, 181, 0.45);
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button i {
    margin-left: auto;
    color: #2169b5;
    transition: transform 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #2169b5;
    color: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) .question-number {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) i {
    color: #fff;
}

@media (max-width: 767px) {
    .faq-wrapper {
        padding: 22px;
    }

    .faq-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

/* Page Header */
.page-header-hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 3rem;
    background: radial-gradient(circle at 15% 20%, rgba(233, 75, 44, 0.14), transparent 38%),
        radial-gradient(circle at 75% 10%, rgba(255, 237, 2, 0.16), transparent 42%),
        linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
    color: #fff;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.2) 100%);
    pointer-events: none;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.crumb-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14rem;
    color: rgba(255, 255, 255, 0.85);
}

.page-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 14px;
    border-radius: 999px;
    margin: 0;
}

.page-breadcrumb .breadcrumb-item,
.page-breadcrumb .breadcrumb-item a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.page-title {
    margin: 0.2rem 0 0.6rem;
    font-weight: 800;
}

.page-description {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

@media (max-width: 767px) {
    .page-header-hero {
        padding: 3rem 0 2.5rem;
    }

    .page-breadcrumb .breadcrumb {
        padding: 8px 12px;
    }
}

.error-page {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(233, 75, 44, 0.2), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(255, 237, 2, 0.18), transparent 40%),
        linear-gradient(135deg, #2169b5 0%, #1a4f86 100%);
    color: #0f1a2c;
}

.error-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.25) 100%);
    pointer-events: none;
}

.error-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #2169b5;
}

.error-icon-wrapper {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    border-radius: 50%;
    background: rgba(33, 105, 181, 0.08);
    display: grid;
    place-items: center;
    border: 2px solid rgba(33, 105, 181, 0.25);
}

.error-icon {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #e94b2c;
}

.error-title {
    font-weight: 800;
    color: #1f2a44;
}

.error-description {
    color: #4a5568;
    font-size: 1.05rem;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.btn-error-primary,
.btn-error-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-error-primary {
    background: #2169b5;
    color: #fff;
    box-shadow: 0 10px 25px rgba(33, 105, 181, 0.35);
}

.btn-error-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(33, 105, 181, 0.45);
}

.btn-error-secondary {
    background: rgba(33, 105, 181, 0.08);
    color: #1f2a44;
    border: 1px solid rgba(33, 105, 181, 0.2);
}

.btn-error-secondary:hover {
    background: rgba(33, 105, 181, 0.14);
    transform: translateY(-2px);
}

.error-links {
    margin-top: 26px;
}

.error-links-title {
    font-weight: 700;
    color: #1f2a44;
}

.error-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    color: #1f2a44;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.error-link:hover {
    background: rgba(33, 105, 181, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .error-card {
        padding: 24px;
    }

    .error-actions {
        justify-content: center;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Melhorias de Acessibilidade */
.btn:focus,
.accordion-button:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(33, 105, 181, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #1a5493;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(33, 105, 181, 0.6);
}

/* Navbar Scrolled */
.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background-color: #e8e8e8 !important;
}

/* Active Menu Link */
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 1;
}

/* Animação de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Navbar Mobile */
@media (max-width: 1199px) {
    .navbar-toggler {
        margin-left: auto;
    }

    .navbar-collapse {
        flex-basis: 100%;
        background-color: #e1e1e1;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .top-bar,
    .btn,
    .scroll-to-top {
        display: none;
    }
}