:root {
    --color-light-green: #3cbe18;
    --color-dark-green: #2cae23;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-dark: #0d120a;
    --color-gray-light: #f8faf7;
    --font-display: 'Lustra Text', 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Bootstrap Overrides */
    --bs-success: #3cbe18;
    --bs-success-rgb: 60, 190, 24;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: #1a1a1a;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: var(--font-display);
    font-weight: 700;
}

/* Botões */
.btn-brand-primary {
    background-color: var(--color-light-green);
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--color-light-green);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(60, 190, 24, 0.3);
    animation: pulse-glow 2s infinite;
}

.btn-brand-primary:hover {
    background-color: var(--color-dark-green);
    border-color: var(--color-dark-green);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 130, 65, 0.4);
    animation: none;
}

/* Efeito de pulso para botões de destaque principal */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(60, 190, 24, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(60, 190, 24, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(60, 190, 24, 0);
    }
}

.btn-brand-secondary {
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.btn-brand-secondary:hover {
    border-color: var(--color-light-green);
    color: var(--color-light-green);
    background-color: rgba(60, 190, 24, 0.05);
    transform: translateY(-2px);
}

.btn-brand-dark-outline {
    background-color: transparent;
    color: var(--color-black);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.btn-brand-dark-outline:hover {
    border-color: var(--color-light-green);
    color: var(--color-light-green);
    background-color: rgba(60, 190, 24, 0.05);
    transform: translateY(-2px);
}

/* Navbar estilo Glassmorphic */
.navbar-brand img {
    height: 45px;
    /* Tamanho inicial reduzido adicionais 15% */
    transition: var(--transition-smooth);
}

.navbar {
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(13, 18, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .navbar-brand img {
    height: 30px;
    /* Tamanho scrolled reduzido adicionais 15% */
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-white) !important;
    margin: 0 7px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 7px;
    right: 7px;
    height: 2px;
    background-color: var(--color-light-green);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: right;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--color-light-green) !important;
}

/* Menu Mobile - Fundo Preto (Acionado a partir de 1140px) */
@media (max-width: 1140px) {

    /* Garante comportamento mobile correto (wrap) para o container da navbar */
    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        flex-wrap: wrap !important;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }

    .navbar-expand-lg .navbar-collapse:not(.show):not(.collapsing) {
        display: none !important;
    }

    .navbar-expand-lg .navbar-collapse.collapsing {
        display: block !important;
        height: 0;
        overflow: hidden;
        opacity: 0.5;
        transform: translateY(-5px);
        transition: height 0.15s ease-out, opacity 0.15s ease-out, transform 0.15s ease-out !important;
    }

    .navbar-expand-lg .navbar-collapse.show {
        display: block !important;
    }

    .navbar-collapse {
        background-color: var(--color-black) !important;
        padding: 25px;
        border-radius: 16px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.15s ease-out, transform 0.15s ease-out;
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Força itens do menu em coluna para não quebrar horizontalmente */
    .navbar-nav {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .navbar-nav .nav-item {
        width: 100% !important;
        text-align: center !important;
        margin: 8px 0 !important;
    }

    .nav-link {
        margin: 0 !important;
        padding: 8px 0 !important;
        font-size: 1.05rem !important;
        display: block !important;
    }

    .nav-link::after {
        display: none !important;
        /* Remove linha de hover no mobile */
    }

    .navbar-brand img {
        height: 36px;
    }

    .navbar.scrolled .navbar-brand img {
        height: 30px;
    }
}

/* Ajustes de Navbar e Hero para telas médias/menores em Desktop (Evita quebra de menu) */
@media (min-width: 1301px) and (max-width: 1500px) {
    .navbar-brand img {
        height: 34px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 30px !important;
    }

    .nav-link {
        font-size: 0.9rem !important;
        margin: 0 7px !important;
    }

    .navbar .btn-brand-primary {
        font-size: 0.85rem !important;
        padding: 8px 16px !important;
    }

    .hero-title {
        font-size: 3.0rem !important;
    }
}

@media (min-width: 1141px) and (max-width: 1300px) {
    .navbar-brand img {
        height: 30px !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 28px !important;
    }

    .nav-link {
        font-size: 0.86rem !important;
        margin: 0 0px !important;
    }

    .navbar .btn-brand-primary {
        font-size: 0.78rem !important;
        padding: 6px 12px !important;
    }

    .hero-title {
        font-size: 2.6rem !important;
    }
}

/* Redução do Hero em telas que já viraram Mobile */
@media (max-width: 1140px) {
    .hero-title {
        font-size: 2.35rem !important;
    }
}

/* Seção Hero (min-height 100vh - marquee) */
.hero-section {
    min-height: calc(100vh - 60px);
    background-color: var(--color-gray-dark);
    background-image: linear-gradient(180deg, rgba(13, 18, 10, 0.85) 0%, rgba(13, 18, 10, 0.7) 100%), url('images/bg_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

/* Seção Hero Exclusiva para o Website */
.hero-website-section {
    min-height: calc(100vh - 60px);
    background-color: var(--color-gray-dark);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 20%, rgba(1, 45, 22, 0.4) 60%, rgba(0, 0, 0, 0.4) 100%), url('images/bg_hero_website.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.hero-website-title {
    font-size: 3.0rem !important;
    line-height: 1.2;
}

.hero-subtitle-website {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: 1.6;
}

.hero-cta-group .btn {
    min-width: 220px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .hero-website-section {
        padding-top: 130px !important;
        padding-bottom: 60px !important;
        min-height: calc(100vh - 60px) !important;
        background-attachment: scroll;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.75) 25%, rgba(1, 45, 22, 0.4) 60%, rgba(0, 0, 0, 0.4) 100%), url('images/bg_hero_website.jpg') !important;
    }

    .hero-website-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-website-section {
        padding-top: 120px !important;
        padding-bottom: 50px !important;
    }

    .hero-website-title {
        font-size: 1.7rem !important;
    }

    .hero-subtitle-website {
        font-size: 1.05rem !important;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100% !important;
        min-width: 0 !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        font-size: 1.05rem !important;
    }

    .landing-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .landing-hero-cta .btn {
        width: 100% !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        font-size: 1.05rem !important;
    }
}

.hero-text-glow {
    text-shadow: 0 0 30px rgba(71, 202, 15, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    text-wrap: balance;
}

.swiper-hero p.lead {
    text-wrap: balance;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 110px !important;
        padding-bottom: 0px !important;
        min-height: calc(100vh - 60px) !important;
    }

    .hero-title {
        font-size: 2.0rem !important;
        margin-bottom: 1rem !important;
    }

    .swiper-hero p.lead {
        font-size: 1.05rem !important;
        margin-bottom: 1.75rem !important;
    }

    .hero-badge-wrapper {
        margin-bottom: 1rem !important;
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .hero-badge-text {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }

    .swiper-hero {
        padding-bottom: 0px !important;
    }

    .section-clean,
    .section-light {
        padding: 70px 0 !important;
    }

    .anvisa-section {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 768px) {

    .section-clean,
    .section-light {
        padding: 55px 0 !important;
    }

    .anvisa-section {
        padding: 50px 0 !important;
    }

    .section-title {
        font-size: 1.95rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 115px !important;
        padding-bottom: 0px !important;
    }

    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.20 !important;
    }

    .swiper-hero p.lead {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .swiper-hero .swiper-slide img {
        max-height: 250px !important;
        padding: 0 !important;
        margin-bottom: -25px !important;
    }

    .swiper-hero {
        padding-bottom: 0px !important;
    }

    .section-clean,
    .section-light {
        padding: 45px 0 !important;
    }

    .anvisa-section {
        padding: 45px 0 !important;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    /* Ajustes responsivos para o modal de contato */
    .modal-dialog {
        margin: 8px !important;
    }

    .modal-content-custom {
        padding: 10px 8px !important;
        border-radius: 16px !important;
    }

    .modal-header-custom {
        padding-bottom: 4px !important;
        margin-bottom: 2px !important;
    }

    .modal-header-custom h5 {
        font-size: 0.95rem !important;
    }

    .form-control-custom {
        padding: 6px 10px !important;
        border-radius: 8px !important;
        font-size: 0.8rem !important;
    }

    .form-label-custom {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }

    .modal-body {
        padding-top: 2px !important;
    }

    .modal-body .mb-3 {
        margin-bottom: 6px !important;
    }

    .modal-body .row {
        --bs-gutter-y: 6px !important;
        --bs-gutter-x: 6px !important;
    }

    .modal-body .btn-outline-custom-pill {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
    }

    .modal-body button[type="submit"] {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        font-size: 0.85rem !important;
    }
}

/* Swiper Hero Layout */
.swiper-hero {
    width: 100%;
    padding-bottom: 60px !important;
}

.swiper-hero .swiper-slide * {
    user-select: text !important;
    -webkit-user-select: text !important;
}

.swiper-hero .swiper-slide img {
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    animation: float-mockup 6s ease-in-out infinite;
    padding: 15px 0;
}

/* Animação suave de flutuação constante para os mockups */
@keyframes float-mockup {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-12px) translateX(6px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Ajustes de Bullets e Setas */
.swiper-hero .swiper-pagination {
    pointer-events: none;
    bottom: 15px !important;
}

.swiper-hero .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    pointer-events: auto;
}

.swiper-hero .swiper-pagination-bullet-active {
    background: var(--color-light-green) !important;
    width: 24px;
    border-radius: 5px;
}

.swiper-hero .swiper-button-next,
.swiper-hero .swiper-button-prev {
    color: var(--color-light-green);
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.swiper-hero .swiper-button-prev {
    left: 20px !important;
}

.swiper-hero .swiper-button-next {
    right: 20px !important;
}

.swiper-hero .swiper-button-next:after,
.swiper-hero .swiper-button-prev:after {
    font-size: 1.25rem;
    font-weight: bold;
}

.swiper-hero .swiper-button-next:hover,
.swiper-hero .swiper-button-prev:hover {
    background: var(--color-light-green);
    color: var(--color-white);
    border-color: var(--color-light-green);
}

/* Modal customizado */
.modal-content-custom {
    background: #11180e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: var(--color-white);
    padding: 20px;
}

.modal-header-custom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

/* Formulário do modal (Glassmorphism) */
.form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white) !important;
    border-radius: 12px;
    padding: 12px 18px;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-light-green);
    box-shadow: 0 0 10px rgba(71, 202, 15, 0.2);
}

/* Correção de leitura das opções do Select */
.form-control-custom option {
    background-color: #11180e !important;
    color: var(--color-white) !important;
}

.form-label-custom {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-weight: 600;
}

/* Pill switcher moderno para os rádios no modal */
.btn-outline-custom-pill {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-outline-custom-pill:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.btn-check:checked+.btn-outline-custom-pill {
    background-color: var(--color-light-green) !important;
    border-color: var(--color-light-green) !important;
    color: var(--color-white) !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(71, 202, 15, 0.3);
}

.form-check-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 18px 12px 40px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-check-custom:hover {
    border-color: rgba(71, 202, 15, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.form-check-input:checked+.form-check-label {
    color: var(--color-light-green);
    font-weight: 600;
}

.form-check-input:checked {
    background-color: var(--color-light-green);
    border-color: var(--color-light-green);
}

/* Marquee horizontal */
.marquee-section {
    background-color: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 0;
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 40px;
    font-weight: 600;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-light-green);
    border-radius: 50%;
    margin-right: 40px;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Seção Clean */
.section-clean {
    background-color: var(--color-white);
    padding: 100px 0;
}

.section-light {
    background-color: var(--color-gray-light);
    padding: 100px 0;
}

.section-title {
    color: var(--color-black);
    font-size: 2.75rem;
    position: relative;
    margin-bottom: 20px;
    text-wrap: balance
}

.section-title span {
    color: var(--color-dark-green);
}

.section-subtitle {
    text-transform: uppercase;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--color-light-green);
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

/* Cards diferenciais */
.feature-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(71, 202, 15, 0.2);
    box-shadow: 0 20px 45px rgba(71, 202, 15, 0.08);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(71, 202, 15, 0.1);
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--color-light-green);
    color: var(--color-white);
    transform: rotate(10deg);
}

/* Imagens da empresa */
.img-grid-container {
    position: relative;
}

.img-grid-1 {
    border-radius: 24px;
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-grid-2 {
    border-radius: 20px;
    width: 100%;
    height: 240px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Certificados discretos e elegantes */
.certificate-card {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px;
    background-color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.certificate-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.badge-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(3, 130, 65, 0.3);
    text-align: center;
    z-index: 2;
}

/* Igualar a altura dos cards na Grid do Bootstrap */
#produtos .row-grid-produtos {
    display: flex;
    flex-wrap: wrap;
}

#produtos .row-grid-produtos>div {
    display: flex;
}

.product-card {
    background-color: var(--color-white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

/* Garante que os slides dos sub-carrosséis não vazem visualmente */
.product-card .swiper {
    overflow: hidden !important;
    width: 100%;
}

/* Restaura o display block dos sub-carrosséis internos para não quebrar a ordem vertical */
.product-card .swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
}

.product-card .swiper .swiper-slide {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* Reduz o espaçamento entre a descrição interna e o botão CTA */
.product-card .swiper-slide p.text-secondary {
    margin-bottom: 8px !important;
}

/* Estilização e posicionamento das setas e bullets dos sub-carrosséis */
.product-card .swiper-pagination-sub-1,
.product-card .swiper-pagination-sub-2,
.product-card .swiper-pagination-sub-3,
.product-card .swiper-pagination-sub-4 {
    display: inline-flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.product-card .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(3, 130, 65, 0.3) !important;
    opacity: 1;
    margin: 0 4px !important;
}

.product-card .swiper-pagination-bullet-active {
    background: var(--color-light-green) !important;
}

/* Ajuste do container das setas e paginação interna */
.product-card .d-flex.justify-content-between.align-items-center.mt-2.px-2 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    position: relative;
    z-index: 10;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-light-green), var(--color-dark-green));
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(71, 202, 15, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-img-wrapper {
    background-color: var(--color-gray-light);
    border-radius: 20px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper {
    background-color: rgba(71, 202, 15, 0.03);
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

/* Checklist */
.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checklist-icon {
    color: var(--color-light-green);
    font-size: 1.25rem;
    margin-right: 12px;
    line-height: 1;
}

/* Timeline (Como funciona) */
.timeline-container {
    position: relative;
    padding: 30px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-light-green) 0%, var(--color-dark-green) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background-color: var(--color-white);
    border: 4px solid var(--color-light-green);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(71, 202, 15, 0.1);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--color-light-green);
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 12px rgba(71, 202, 15, 0.2);
}

.timeline-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    width: 45%;
}

.timeline-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(71, 202, 15, 0.15);
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: auto;
}

.timeline-number {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(71, 202, 15, 0.15);
    margin-bottom: 10px;
    font-family: var(--font-display);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-number {
    color: var(--color-light-green);
}

/* Ícone moderno para as etapas do processo com efeitos de hover */
.timeline-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background-color: rgba(71, 202, 15, 0.08);
    color: var(--color-dark-green);
    border-radius: 16px;
    font-size: 1.6rem;
    transition: var(--transition-smooth);
}

.timeline-card:hover .timeline-icon-wrapper {
    background-color: var(--color-light-green);
    color: var(--color-white);
    transform: scale(1.18) rotate(8deg);
    box-shadow: 0 8px 25px rgba(71, 202, 15, 0.35);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-card {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }
}

/* Segmentos */
.segment-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.01);
}

.segment-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-light-green);
    box-shadow: 0 15px 35px rgba(71, 202, 15, 0.06);
}

.segment-icon {
    font-size: 2.25rem;
    color: var(--color-dark-green);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.segment-card:hover .segment-icon {
    transform: scale(1.1);
    color: var(--color-light-green);
}

/* ANVISA */
.anvisa-section {
    background: linear-gradient(135deg, var(--color-gray-dark) 0%, #152010 100%);
    color: var(--color-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.badge-anvisa {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
}

.badge-anvisa:hover {
    border-color: var(--color-light-green);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
}

/* Rodapé */
footer {
    background-color: var(--color-black);
    color: var(--color-white) !important;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer,
footer p,
footer span,
footer .text-secondary,
footer a {
    color: var(--color-white) !important;
}

footer a:hover,
.footer-link:hover,
.footer-legal-link:hover {
    color: var(--color-light-green) !important;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 25px;
}

.footer-heading {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-link {
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--color-light-green) !important;
    padding-left: 5px;
}

.footer-legal-link {
    transition: var(--transition-smooth);
}

.footer-legal-link:hover {
    color: var(--color-light-green) !important;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--color-light-green);
    color: var(--color-white);
    transform: translateY(-3px);
}

.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-fixed:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Header de Páginas Internas */
.header-interna {
    height: 300px;
    background-color: var(--color-gray-dark);
    background-image: linear-gradient(180deg, rgba(13, 18, 10, 0.85) 0%, rgba(13, 18, 10, 0.7) 100%), url('images/bg_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding-top: 80px;
    /* Recuo para a navbar fixa */
}

.header-interna h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(71, 202, 15, 0.2);
}

.header-interna .breadcrumb-custom {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.header-interna .breadcrumb-custom a {
    color: var(--color-light-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.header-interna .breadcrumb-custom a:hover {
    color: var(--color-white);
}

/* Estilo para links de telefone autodetectados no mobile */
a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
}

a[href^="tel:"]:hover,
a[href^="tel:"]:focus,
a[href^="tel:"]:active {
    color: inherit !important;
    text-decoration: none !important;
}

/* Evita transbordo/rolagem horizontal do badge de experiência no mobile */
@media (max-width: 991.98px) {
    .badge-experience {
        right: 10px !important;
        bottom: 10px !important;
        padding: 15px !important;
        border-radius: 16px !important;
    }
}