html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #474747;
    line-height: 1.5;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.site-main {
    min-height: 60vh;
}

.site-header {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #efefef;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    position: relative;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: flex-end;
}

.brand,
.main-nav,
.btn-header {
    align-self: center;
}

.brand {
    min-width: 160px;
    display: flex;
    align-items: center;
}

.brand img {
    display: block;
    max-width: 210px;
    width: 100%;
    height: auto;
}

.brand-footer img {
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex: 1;
    height: 100%;
    padding-top: 15px;
}

.main-nav a {
    color: #474747;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    opacity: 1;
    transform: scale(1.05);
}

.btn-header,
.btn-main,
.btn-secondary,
.btn-light,
.summary-box button,
.form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-header {
    padding: 10px 19px;
    background: #6FA345;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 500;
}

.btn-header:hover,
.btn-main:hover,
.btn-light:hover,
.summary-box button:hover,
.form-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    background: #fff;
    padding: 12px 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111111;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.home-page {
    background: #ffffff;
    padding-bottom: 40px;
}

.section-padding {
    padding: 56px 0;
}

.banner-carousel-section {
    padding: 24px 0 0;
    margin-bottom: 100px;
}

.banner-carousel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f4f4f2;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 12 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 2px dashed #d8d8d5;
    box-sizing: border-box;
    color: #54595F;
    font-weight: 600;
    font-size: 0.95rem;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    pointer-events: none;
}

.carousel-slide:has(img) {
    border: none;
    padding: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    color: #474747;
    box-shadow: 0 8px 20px rgba(16, 42, 52, 0.12);
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-arrow svg {
    display: block;
}

.carousel-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow--prev {
    left: 16px;
}

.carousel-arrow--next {
    right: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #d9d9d9;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
    background: #6FA345;
    transform: scale(1.3);
}

.trust-bar-section {
    padding: 0;
    margin-bottom: 100px;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item--shift-right {
    margin-left: 20px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.trust-title {
    margin: 0 0 4px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #6FA345;
}

.trust-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #54595F;
    line-height: 1.4;
}

.builder-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 22px 0 28px;
    flex-wrap: wrap;
}

.builder-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.builder-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #d8d8d8;
    color: #8b9089;
    font-size: 0.8rem;
    font-weight: 700;
    background: #ffffff;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.builder-step-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #8b9089;
    transition: color 0.2s ease;
}

.builder-step.is-active .builder-step-icon {
    background: #6FA345;
    border-color: #6FA345;
    color: #ffffff;
}

.builder-step.is-active .builder-step-text {
    color: #474747;
    font-weight: 700;
}

.builder-step.is-complete .builder-step-icon {
    border-color: #6FA345;
    color: #6FA345;
}

.builder-step.is-complete .builder-step-text {
    color: #474747;
}

.builder-step-connector {
    width: 60px;
    height: 2px;
    background: #d8d8d8;
}

.products-panel {
    display: grid;
    gap: 24px;
}

.products-tabs {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
}

.product-tab {
    border-radius: 999px;
    border: 1px solid #e6e1d9;
    background: #ffffff;
    color: #54595F;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-tab.is-active {
    background: #6FA345;
    border-color: #6FA345;
    color: #ffffff;
}

.products-content {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 24px;
    align-items: start;
}

.products-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 18px;
}

.products-grid.is-active {
    display: grid;
}

.products-grid[data-group="sucos"] {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.products-grid[data-group="refrigerantes"] {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.product-thumb {
    position: relative;
    border-radius: 22px;
    border: 1px solid #ece7df;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 14px 18px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.09);
}

.product-thumb.is-active {
    border-color: #6FA345;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
}

.product-thumb::after {
    content: '+';
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ece7df;
    box-shadow: 0 6px 14px rgba(17, 17, 17, 0.1);
    color: #6FA345;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-thumb.is-active::after {
    content: '✓';
    background: #6FA345;
    border-color: #6FA345;
    color: #ffffff;
}

.products-panel.is-locked .product-thumb {
    opacity: 0.5;
    cursor: not-allowed;
}

.products-panel.is-locked .product-thumb:hover {
    transform: none;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
}

.product-thumb-name {
    font-size: 0.94rem;
    font-weight: 700;
    color: #474747;
    text-align: center;
    line-height: 1.25;
}

.product-thumb-photo {
    position: relative;
    width: 100%;
    flex: 1;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #54595F;
    font-size: 0.72rem;
    font-weight: 600;
}

.product-thumb-photo img {
    max-width: 88%;
    max-height: 88%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-thumb[data-name="Baguete"] .product-thumb-photo img {
    object-fit: contain;
}

.product-thumb[data-name="Suco Najus Maçã"] .product-thumb-photo img {
    object-fit: contain;
    transform: translateY(7px);
}

.products-grid[data-group="refrigerantes"] .product-thumb-photo img {
    object-fit: contain;
}

.products-grid[data-group="energetico"] .product-thumb-photo img {
    object-fit: contain;
}

.product-thumb[data-name="Strom Tradicional"] .product-thumb-photo img {
    max-width: 95%;
    max-height: 95%;
    transform: translateY(-8px);
}

.product-thumb[data-name="Yapp Manga com Maracujá"] .product-thumb-photo img {
    transform: scale(0.9) translateY(3px);
}

.products-create-card {
    position: relative;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 14px 18px;
    background: linear-gradient(150deg, #6FA345, #4f7d2e);
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.products-create-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.16);
}

.products-create-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.products-create-text {
    font-size: 0.94rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.products-name-box {
    position: relative;
    border: 2px solid #6FA345;
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;
}

.products-name-tag {
    position: absolute;
    top: 20px;
    left: 24px;
    z-index: 2;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #474747;
}

.products-count-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    white-space: nowrap;
    background: rgba(111, 163, 69, 0.14);
    color: #6FA345;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
}

.kit-steps {
    position: relative;
    height: 224px;
    transition: height 0.35s ease;
}

.kit-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 34px 6px 6px;
    transition: transform 0.35s ease, opacity 0.3s ease;
}

.kit-step--quantity {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.products-name-box.is-step-2 .kit-step--composition {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

.products-name-box.is-step-2 .kit-step--quantity {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.kit-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.kit-quantity-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #474747;
    text-align: center;
}

.kit-quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.kit-quantity-input {
    width: 140px;
    text-align: center;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 2rem;
    font-weight: 400;
    color: #474747;
    background: #fff;
    appearance: textfield;
    -moz-appearance: textfield;
}

.kit-quantity-input:focus {
    outline: none;
    border-color: #6FA345;
}

.kit-quantity-input::-webkit-outer-spin-button,
.kit-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.kit-quantity-presets {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.kit-quantity-preset {
    border-radius: 999px;
    border: 1px solid #e6e1d9;
    background: #ffffff;
    color: #54595F;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.kit-quantity-preset.is-active {
    background: #6FA345;
    border-color: #6FA345;
    color: #ffffff;
}

.kit-quantity-error {
    margin: 10px 0 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: #b7402a;
    text-align: center;
}

.kit-quantity-error[hidden] {
    display: none;
}

.kit-notes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.kit-notes label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #474747;
}

.kit-notes textarea {
    width: 100%;
    min-height: 70px;
    resize: vertical;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    padding: 12px 14px;
    color: #474747;
    background: #fff;
    font-family: inherit;
    font-size: 0.9rem;
}

.kit-notes textarea::placeholder {
    color: #b7b7b7;
}

.kit-notes textarea:focus {
    outline: none;
    border-color: #6FA345;
}

.kit-step-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.kit-step-actions .kit-quote-button,
.kit-step-actions .btn-secondary {
    width: 100%;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

#kitBackButton.is-shaking {
    animation: kit-back-shake 0.5s ease;
}

@keyframes kit-back-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(7px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(4px); }
}

.kit-error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: #b7402a;
    text-align: center;
}

.kit-error-text {
    display: inline-block;
    transform: translateY(-1px);
}

.kit-error-message[hidden] {
    display: none;
}

.kit-error-message.is-bouncing {
    animation: kit-error-bounce 0.5s ease;
}

@keyframes kit-error-bounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
    50% { transform: translateY(0); }
    70% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.kit-error-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kit-error-text {
    position: relative;
    top: 1px;
}

.kit-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    font-size: 0.76rem;
    color: #8b9089;
    text-align: center;
}

.kit-reassurance-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6FA345;
    flex-shrink: 0;
}

.products-empty-hint {
    margin: 0;
    font-size: 0.85rem;
    color: #54595F;
    text-align: center;
}

.kit-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.kit-formula-item {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f7f8f6;
    flex-shrink: 0;
}

.kit-formula-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kit-formula-item img[src*="assets/img/refrigerantes/"] {
    transform: scale(0.6);
}

.kit-formula-item:hover img {
    transform: scale(1.15);
    box-shadow: 0 8px 16px rgba(17, 17, 17, 0.18);
}

.kit-formula-item:hover img[src*="assets/img/refrigerantes/"] {
    transform: scale(0.69);
}

.kit-formula-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: rgba(71, 71, 71, 0.75);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.kit-formula-item:hover .kit-formula-remove {
    opacity: 1;
    transform: scale(1);
}

.kit-formula-remove:hover,
.kit-formula-remove:focus-visible {
    background: #d9342a;
}

.kit-formula-plus {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6FA345;
    flex-shrink: 0;
}

.kit-formula-names {
    margin: 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: #54595F;
}

.kit-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 12px 26px;
    background: #6FA345;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.kit-quote-button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.hero-section {
    padding: 36px 0 12px;
    margin-bottom: 120px;
}

.hero-section--spaced {
    margin-top: 90px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 16px;
}

.hero-inner--reverse {
    grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy {
    margin-top: 20px;
}

.mini-tag {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(111, 163, 69, 0.14);
    color: #6FA345;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.hero-copy h1,
.page-hero h1,
.page-content h2 {
    font-size: clamp(2.8rem, 4vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
    margin: 0 0 16px;
    color: #474747;
    font-weight: 800;
}

.hero-copy h1 br {
    display: block;
}

.hero-copy h1.hero-title--compact {
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero-copy h2.hero-title--compact {
    margin: 0 0 16px;
    line-height: 0.92;
    color: #474747;
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero-copy p,
.page-hero p,
.page-content p,
.info-card p,
.service-card p,
.contact-copy p,
.card-text,
.about-card p {
    font-size: 1.04rem;
    color: #54595F;
    line-height: 1.7;
}

.hero-copy p {
    max-width: 560px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.btn-main {
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
}

.btn-primary {
    background: #6FA345;
    color: white;
}

.btn-secondary {
    background: #ffffff;
    color: #474747;
    border: 1px solid #e7e2db;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #54595F;
    font-size: 0.88rem;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f5f3ee;
    background: linear-gradient(135deg, #d7d7d7, #a0a0a0);
    color: white;
    font-size: 0.72rem;
    margin-left: -6px;
}

.avatars span:first-child {
    margin-left: 0;
}

.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    max-width: 760px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-photo {
    width: 100%;
    height: 427px;
    object-fit: fill;
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(16, 42, 52, 0.18);
}

.hero-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 14px 28px rgba(16, 42, 52, 0.16);
    font-size: 0.78rem;
    font-weight: 600;
    color: #474747;
    line-height: 1.3;
    white-space: nowrap;
}

.hero-badge--top {
    top: 8%;
    right: 0;
}

.hero-badge--bottom {
    bottom: 10%;
    right: -4%;
}

.hero-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(111, 163, 69, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-plate {
    position: relative;
    width: min(100%, 560px);
    height: 350px;
    background: linear-gradient(180deg, #111111 0%, #090909 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hero-plate::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 72% 18%, rgba(255,255,255,0.08), transparent 32%);
}

.mini-badge {
    position: absolute;
    top: 24px;
    left: 28px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}

.product-crate {
    position: relative;
    width: 290px;
    height: 220px;
    margin-top: 20px;
}

.crate-top {
    position: absolute;
    left: 40px;
    top: 20px;
    width: 210px;
    height: 40px;
    background: linear-gradient(135deg, #d79c46, #c77e1d);
    border-radius: 18px 18px 8px 8px;
    transform: rotate(-10deg);
    box-shadow: inset 0 -8px 0 rgba(0,0,0,0.08);
}

.crate-box {
    position: absolute;
    left: 22px;
    bottom: 0;
    width: 236px;
    height: 155px;
    background: linear-gradient(135deg, #d9a65d, #c98a32);
    border-radius: 18px 18px 22px 22px;
    box-shadow: inset 0 -12px 0 rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 14px 12px;
}

.item {
    border-radius: 12px;
    box-shadow: inset 0 -8px 0 rgba(0,0,0,0.08);
}

.item--yellow { background: linear-gradient(180deg, #f7d85c, #eabf34); }
.item--green { background: #6FA345; }
.item--red { background: linear-gradient(180deg, #ff5d4b, #db3d2e); }
.item--blue { background: linear-gradient(180deg, #7ad4ff, #46aee2); }

.stats-section {
    padding: 14px 0 6px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #ece7df;
    border-radius: 18px;
    padding: 20px 12px;
    background: rgba(255,255,255,0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: #54595F;
    margin-bottom: 8px;
}

.stat-item strong {
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    color: #474747;
    letter-spacing: -0.05em;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: #474747;
}

.section-head--stacked {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.section-head--stacked h2.hero-title--compact {
    font-size: clamp(2.6rem, 3.2vw, 3.8rem);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-head--stacked h2.why-kits-title {
    font-size: clamp(2.2rem, 2.8vw, 3.3rem);
}

.section-subtitle {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #54595F;
}

.brand-kit-section .section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: #f0efec;
    border: 1px solid #e6e1d9;
    color: #54595F;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.77rem;
    font-weight: 600;
    cursor: pointer;
}

.chip.active {
    background: #6FA345;
    color: white;
    border-color: #6FA345;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.kit-card {
    background: rgba(255,255,255,0.8);
    border: 1px solid #ebebe7;
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 14px 28px rgba(23, 23, 23, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(23, 23, 23, 0.06);
}

.kit-visual {
    position: relative;
    height: 168px;
    border-radius: 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #edf3eb, #dfe9e0);
    overflow: hidden;
}

.kit-visual::before {
    content: "";
    position: absolute;
    inset: 18px 24px 16px;
    background: linear-gradient(135deg, #d39b50, #c88424);
    border-radius: 14px 14px 18px 18px;
    box-shadow: inset 0 -12px 0 rgba(0,0,0,0.08);
}

.kit-visual::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: 72%;
    height: 16px;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
}

.kit-card h3 {
    font-size: 1.08rem;
    margin: 0 0 10px;
    color: #474747;
}

.kit-card ul {
    margin: 0 0 14px;
    padding-left: 18px;
    color: #54595F;
    font-size: 0.88rem;
    line-height: 1.7;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8rem;
    color: #54595F;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

.card-footer a {
    background: rgba(111, 163, 69, 0.14);
    color: #6FA345;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.builder-box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    background: rgba(255,255,255,0.75);
    border: 1px solid #eae5dc;
    border-radius: 24px;
    padding: 20px;
}

.builder-option {
    padding: 18px 14px;
    border-radius: 16px;
    background: #faf8f4;
    border: 1px solid #eeece6;
}

.builder-option span {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: #474747;
}

.builder-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #54595F;
    font-size: 0.9rem;
}

.summary-box {
    background: rgba(111, 163, 69, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(111, 163, 69, 0.3);
    padding: 18px 14px;
}

.summary-box p {
    margin: 0 0 14px;
    color: #474747;
}

.summary-box button {
    width: 100%;
    border: none;
    background: #6FA345;
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.steps-grid,
.audience-grid,
.reviews-grid,
.service-grid,
.about-grid,
.values-grid,
.info-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.step-card,
.audience-card,
.review-card,
.service-card,
.about-card,
.info-card,
.contact-card,
.value-card {
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    border: 1px solid #ece7df;
    padding: 20px 18px;
    box-shadow: 0 12px 24px rgba(17,17,17,0.02);
}

.step-icon,
.value-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(111, 163, 69, 0.14);
    color: #6FA345;
    font-weight: 800;
    margin-bottom: 18px;
}

.step-card h3,
.audience-card h3,
.service-card h3,
.about-card h3,
.contact-card h3,
.value-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.step-card p,
.audience-card p,
.review-card p,
.service-card p,
.about-card p,
.contact-card p,
.value-card p {
    margin: 0;
    color: #54595F;
    line-height: 1.6;
}

.mini-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.why-kits-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 20px;
    align-items: stretch;
    height: 390px;
}

.why-kits-image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    background: #f4f3ef;
}

.why-kits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-kits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    height: 100%;
}

.why-kits-card {
    background: rgba(111, 163, 69, 0.08);
    border-radius: 18px;
    padding: 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 100%;
}

.why-kits-grid .why-kits-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.why-kits-grid .why-kits-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.why-kits-grid .why-kits-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.why-kits-grid .why-kits-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.why-kits-grid .why-kits-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.why-kits-icon {
    width: 24px;
    height: 24px;
    color: #6FA345;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.why-kits-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #474747;
}

.why-kits-card p {
    margin: 0;
    color: #54595F;
    font-size: 0.86rem;
    line-height: 1.5;
}

#monte-seu-kit {
    scroll-margin-top: 90px;
}

.products-section {
    padding-bottom: 60px;
}

.why-kits-section {
    padding-top: 120px;
}

.brand-kit-section {
    scroll-margin-top: 100px;
}

.brand-kit-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 24px;
    align-items: start;
    margin-top: 8px;
}

.brand-kit-panel {
    background: #ffffff;
    border: 1px solid #ece7df;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.04);
    height: auto;
    display: flex;
    flex-direction: column;
}

.brand-kit-step {
    margin-bottom: 24px;
}

.brand-kit-step h3 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #474747;
}

.brand-kit-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.brand-kit-option {
    position: relative;
    border: 1px solid #ece7df;
    border-radius: 16px;
    background: #ffffff;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-kit-option.is-active {
    border-color: #6FA345;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.1);
}

.brand-kit-option-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-kit-option-photo img {
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
}

.brand-kit-option-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6FA345;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-kit-option-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #474747;
}

.brand-kit-upload {
    border: 2px dashed #cfd8c8;
    border-radius: 16px;
    background: rgba(111, 163, 69, 0.05);
    padding: 26px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6FA345;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.brand-kit-upload:hover {
    border-color: #6FA345;
    background: rgba(111, 163, 69, 0.09);
}

.brand-kit-upload--large {
    padding: 46px 20px;
    gap: 12px;
    min-height: 220px;
    height: 100%;
    justify-content: center;
}

.brand-kit-upload--large svg {
    width: 30px;
    height: 30px;
}

.brand-kit-upload--large span {
    font-size: 1rem;
}

.brand-kit-upload small {
    font-weight: 500;
    font-size: 0.74rem;
    color: #8b9089;
}

.brand-kit-upload.has-file {
    border-style: solid;
    border-color: #6FA345;
}

.brand-kit-send-title {
    margin: 22px 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #474747;
}

.brand-kit-send-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 0;
    padding: 18px 22px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(120deg, #6FA345, #4f7d2e);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.14);
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-kit-send-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.18);
}

.brand-kit-send-button:disabled {
    cursor: default;
}

.brand-kit-send-button.is-attached {
    background: #ffffff;
    outline: 2px solid #6FA345;
    outline-offset: -2px;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
}

.brand-kit-send-icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.brand-kit-send-button.is-sending .brand-kit-send-icon {
    background: #ffffff;
    color: #4f7d2e;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.brand-kit-send-button.is-attached .brand-kit-send-icon {
    background: rgba(111, 163, 69, 0.12);
    color: #4f7d2e;
}

.brand-kit-letter {
    display: inline-block;
    transition: opacity 0.12s linear;
}

.brand-kit-send-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-kit-send-text strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
}

.brand-kit-send-text small {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.brand-kit-send-button.is-attached .brand-kit-send-text strong {
    color: #4f7d2e;
}

.brand-kit-send-button.is-attached .brand-kit-send-text small {
    color: #6b8f5a;
}

.brand-kit-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
    padding-top: 18px;
    border-top: 1px solid #ece7df;
}

.brand-kit-cta {
    display: none !important;
}

.brand-kit-step:nth-child(2) {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brand-kit-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.76rem;
    color: #54595F;
    line-height: 1.35;
}

.brand-kit-feature svg {
    width: 16px;
    height: 16px;
    color: #6FA345;
    flex-shrink: 0;
    margin-top: 1px;
}

.brand-kit-preview {
    position: relative;
    background: #f4f6f2;
    border-radius: 24px;
    padding: 18px;
    border: 1px solid #ece7df;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.brand-kit-logo-gallery {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    margin-top: 12px;
    padding: 8px;
    border: 1px solid #e4eadf;
    border-radius: 12px;
    background: #ffffff;
    overflow-x: auto;
}

.brand-kit-logo-gallery[hidden] {
    display: none;
}

.brand-kit-logo-gallery-item {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    padding: 4px;
    border: 2px solid #dfe8d9;
    border-radius: 8px;
    background: #f8faf6;
    cursor: pointer;
}

.brand-kit-logo-gallery-item:hover,
.brand-kit-logo-gallery-item.is-selected {
    border-color: #6FA345;
}

.brand-kit-logo-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-kit-logo-gallery.is-attention .brand-kit-logo-gallery-item {
    animation: brand-kit-gallery-sway 0.62s ease-in-out both;
}

.brand-kit-logo-gallery.is-attention .brand-kit-logo-gallery-item:nth-child(2) {
    animation-delay: 0.06s;
}

.brand-kit-logo-gallery.is-attention .brand-kit-logo-gallery-item:nth-child(3) {
    animation-delay: 0.12s;
}

.brand-kit-logo-gallery.is-attention .brand-kit-logo-gallery-item:nth-child(4) {
    animation-delay: 0.18s;
}

@keyframes brand-kit-gallery-sway {
    0%, 100% { transform: rotate(0deg); }
    22% { transform: rotate(-6deg); }
    48% { transform: rotate(5deg); }
    72% { transform: rotate(-3deg); }
}

.brand-kit-preview-photo {
    position: relative;
    /* Keep the 3D canvas buffer from changing its own container's size. */
    contain: size;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 280px;
    padding: 30px;
}

.brand-kit-preview-photo--large {
    min-height: 480px;
    padding: 46px;
    perspective: 1200px;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.brand-kit-preview-photo--large.is-dragging {
    cursor: grabbing;
}

.brand-kit-preview-photo img {
    max-width: 62%;
    max-height: 85%;
    object-fit: contain;
    transition: opacity 0.15s ease;
}

.brand-kit-preview-photo--large img {
    max-width: 68%;
    max-height: 82%;
    transform-style: preserve-3d;
    will-change: transform;
    -webkit-user-drag: none;
    filter: drop-shadow(0 18px 22px rgba(17, 17, 17, 0.16));
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-kit-preview-photo--large.is-dragging img {
    transition: none;
}

.brand-kit-drag-hint {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #54595F;
    box-shadow: 0 8px 16px rgba(17, 17, 17, 0.08);
    pointer-events: none;
    z-index: 2;
}

.brand-kit-drag-hint svg {
    color: #6FA345;
    flex-shrink: 0;
}

.brand-kit-drag-hint[hidden] {
    display: none;
}

.brand-kit-preview-model {
    display: block;
    width: 100%;
    height: 100%;
    --poster-color: transparent;
    background-color: transparent;
}

.brand-kit-logo-layer {
    position: absolute;
    border: 2px dashed #6FA345;
    border-radius: 6px;
    cursor: move;
    touch-action: none;
    z-index: 3;
}

.brand-kit-logo-layer.is-applied {
    border-color: transparent;
    cursor: default;
    pointer-events: none;
}

.brand-kit-logo-layer.is-3d-source {
    opacity: 0;
    pointer-events: none;
}

.brand-kit-logo-layer[hidden] {
    display: none;
}

.brand-kit-logo-layer img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: fill !important;
    pointer-events: none;
    -webkit-user-drag: none;
}

.brand-kit-logo-handle {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #6FA345;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(17, 17, 17, 0.25);
    z-index: 4;
}

.brand-kit-logo-handle[data-handle="nw"] {
    top: -8px;
    left: -8px;
    cursor: nwse-resize;
}

.brand-kit-logo-handle[data-handle="ne"] {
    top: -8px;
    right: -8px;
    cursor: nesw-resize;
}

.brand-kit-logo-handle[data-handle="sw"] {
    bottom: -8px;
    left: -8px;
    cursor: nesw-resize;
}

.brand-kit-logo-handle[data-handle="se"] {
    bottom: -8px;
    right: -8px;
    cursor: nwse-resize;
}

.brand-kit-logo-handle[data-handle="w"] {
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    cursor: ew-resize;
}

.brand-kit-logo-handle[data-handle="e"] {
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    cursor: ew-resize;
}

.brand-kit-logo-handle[data-handle="n"] {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    cursor: ns-resize;
}

.brand-kit-logo-handle[data-handle="s"] {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    cursor: ns-resize;
}

.brand-kit-logo-remove {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #b7402a;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(17, 17, 17, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 4;
}

.brand-kit-logo-layer.is-applied .brand-kit-logo-handle,
.brand-kit-logo-layer.is-applied .brand-kit-logo-remove {
    display: none;
}

.brand-kit-badge {
    position: absolute;
    top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #474747;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.1);
    z-index: 2;
}

.brand-kit-preview-top-left {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-kit-preview-actions {
    position: absolute;
    right: 136px;
    bottom: 23px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-kit-front-button {
    min-width: 96px;
    height: 40px;
    padding: 0 14px;
    border: 2px solid #6FA345;
    border-radius: 999px;
    background: #ffffff;
    color: #6FA345;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.brand-kit-view-buttons {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    max-width: 62%;
}

.brand-kit-view-options {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(96px, auto));
    gap: 6px;
    animation: brandKitViewOptionsIn 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-kit-view-options[hidden] {
    display: none;
}

@keyframes brandKitViewOptionsIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-kit-view-back {
    position: absolute;
    top: 0;
    left: -46px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 2px solid #6FA345;
    border-radius: 50%;
    background: #6FA345;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

.brand-kit-view-back svg {
    display: block;
    margin: auto;
}

.brand-kit-view-back:hover {
    background: #5d8e39;
    transform: translateX(-1px);
}

.brand-kit-front-button:hover {
    background: #6FA345;
    color: #ffffff;
    transform: translateY(-1px);
}

.brand-kit-badge--left {
    position: static;
    color: #54595F;
}

.brand-kit-3d-toggle {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #6FA345;
    background: #ffffff;
    color: #6FA345;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.14);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    z-index: 2;
}

.brand-kit-3d-toggle:hover {
    transform: translateY(-1px);
}

.brand-kit-3d-toggle.is-active {
    background: #6FA345;
    color: #ffffff;
}

.brand-kit-3d-toggle[hidden] {
    display: none;
}

.brand-kit-result-button {
    position: absolute;
    right: 14px;
    bottom: 23px;
    min-width: 112px;
    height: 44px;
    padding: 0 18px;
    border: 2px solid #6FA345;
    border-radius: 999px;
    background: #6FA345;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.14);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.brand-kit-result-button:hover {
    background: #5d8e39;
    color: #ffffff;
    transform: translateY(-1px);
}

.brand-kit-apply-button {
    position: static;
    min-width: 112px;
    height: 44px;
    padding: 0 18px;
    border: 2px solid #6FA345;
    border-radius: 999px;
    background: #6FA345;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.14);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.brand-kit-apply-button:hover {
    background: #5d8e39;
    color: #ffffff;
    transform: translateY(-1px);
}

.brand-kit-edit-button {
    min-width: 100px;
    height: 44px;
    padding: 0 16px;
    border: 2px solid #6FA345;
    border-radius: 999px;
    background: #6FA345;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.14);
    transition: background 0.2s ease, transform 0.2s ease;
}

.brand-kit-edit-button:hover {
    background: #5d8e39;
    transform: translateY(-1px);
}

.brand-kit-edit-warning {
    position: absolute;
    top: 80px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 2;
    color: #b7402a;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.brand-kit-edit-warning[hidden] {
    display: none;
}

.brand-kit-result-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 100;
}

.brand-kit-result-modal.is-open {
    display: flex;
}

.brand-kit-result-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.58);
}

.brand-kit-result-panel {
    position: relative;
    width: min(760px, 100%);
    height: min(620px, 82vh);
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.28);
    z-index: 1;
}

.brand-kit-result-model {
    display: block;
    width: 100%;
    height: 100%;
    --poster-color: transparent;
    background: #f4f6f2;
}

.brand-kit-result-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #474747;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.16);
    z-index: 2;
}

.brand-kit-result-close:hover {
    color: #6FA345;
}

.quote-embalagem-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 110;
}

.quote-embalagem-modal.is-open {
    display: flex;
}

.quote-embalagem-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.58);
}

.quote-embalagem-panel {
    position: relative;
    width: min(760px, 100%);
    height: min(620px, 82vh);
    overflow: hidden;
    border-radius: 24px;
    background: #f4f6f2;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.28);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-embalagem-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.quote-embalagem-model {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    touch-action: none;
    cursor: grab;
}

.quote-embalagem-model:active {
    cursor: grabbing;
}

.quote-embalagem-hint {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    margin: 0;
    text-align: center;
    font-size: 0.85rem;
    color: #454b40;
    pointer-events: none;
}

.quote-embalagem-model[hidden],
.quote-embalagem-image[hidden],
.quote-embalagem-hint[hidden] {
    display: none;
}

.quote-embalagem-error {
    margin: 0;
    padding: 0 32px;
    text-align: center;
    color: #8b9089;
    font-size: 0.9rem;
}

.quote-embalagem-error[hidden] {
    display: none;
}

.quote-embalagem-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #474747;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.16);
    z-index: 2;
}

.quote-embalagem-close:hover {
    color: #6FA345;
}

.quote-summary-item--clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-summary-item--clickable:hover {
    transform: translateY(-2px);
}

.brand-kit-badge--right {
    right: 14px;
    color: #3f7a26;
}

.brand-kit-badge--right svg {
    width: 13px;
    height: 13px;
    color: #6FA345;
}


.stars {
    color: #f0ad00;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-card strong {
    display: block;
    margin-top: 14px;
    color: #474747;
    font-weight: 700;
}

.faq-wrap {
    background: rgba(255,255,255,0.72);
    border: 1px solid #ece7de;
    border-radius: 22px;
    padding: 28px 22px;
}

.faq-head {
    margin-bottom: 14px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    background: #f8f7f4;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-weight: 600;
    color: #474747;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    padding: 0 18px 18px;
    color: #54595F;
    line-height: 1.6;
}

.duvidas-card {
    max-width: 1040px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #ece7de;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.05);
}

.duvidas-title {
    margin: 0 0 24px;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #6FA345;
}

.duvidas-list {
    display: grid;
}

.duvidas-list .faq-item {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ece7de;
}

.duvidas-list .faq-item:last-child {
    border-bottom: none;
}

.duvidas-list .faq-item button {
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 2px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #474747;
    transition: color 0.2s ease;
}

.duvidas-list .faq-item button:hover {
    color: #6FA345;
}

.duvidas-arrow {
    display: inline-flex;
    flex-shrink: 0;
    color: #6FA345;
    transition: transform 0.25s ease;
}

.duvidas-list .faq-item.is-open .duvidas-arrow {
    transform: rotate(90deg);
}

.duvidas-list .faq-answer {
    padding: 0 2px 18px 24px;
    font-size: 0.92rem;
}

.duvidas-footer {
    margin-top: 28px;
    text-align: center;
}

.duvidas-footer p {
    margin: 0 0 14px;
    color: #54595F;
    font-weight: 600;
}

.duvidas-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6FA345;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.duvidas-cta:hover {
    background: #5f8f39;
    transform: translateY(-2px);
}

.duvidas-cta svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .duvidas-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
}

.produtos-linha-list {
    display: grid;
    gap: 14px;
}

.produtos-linha-card {
    background: #ffffff;
    border: 1px solid #ece7de;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.05);
    overflow: hidden;
}

.produtos-linha-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    padding: 20px 26px;
    cursor: pointer;
    text-align: left;
}

.produtos-linha-label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.produtos-linha-icon {
    display: inline-flex;
    flex-shrink: 0;
    color: #474747;
}

.produtos-linha-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: #474747;
    line-height: 1.25;
}

.produtos-linha-name small {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #54595F;
}

.produtos-linha-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f3f7ee;
    color: #6FA345;
    transition: transform 0.25s ease, background 0.2s ease;
}

.produtos-linha-card.is-open .produtos-linha-toggle {
    transform: rotate(180deg);
    background: #6FA345;
    color: #ffffff;
}

.produtos-linha-body {
    padding: 0 26px 24px;
}

.produtos-linha-carousel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #ece7de;
}

.produtos-linha-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ece7de;
    color: #6FA345;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.produtos-linha-arrow:hover {
    background: #f3f7ee;
    transform: translateY(-1px);
}

.produtos-linha-track {
    flex: 1;
    display: flex;
    gap: 36px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 8px 2px;
}

.produtos-linha-track::-webkit-scrollbar {
    display: none;
}

.produtos-linha-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.produtos-linha-item-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: 2.5em;
    margin-bottom: 10px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #474747;
    line-height: 1.25;
}

.produtos-linha-item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    border: none;
    background: #ffffff;
    overflow: hidden;
    padding: 6px;
}

.produtos-linha-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 640px) {
    .produtos-linha-header {
        padding: 16px 18px;
    }

    .produtos-linha-body {
        padding: 0 18px 20px;
    }

    .produtos-linha-item {
        width: 128px;
    }
}

.como-funciona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.como-funciona-step {
    background: #ffffff;
    border: 1px solid #ece7de;
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.05);
}

.como-funciona-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.como-funciona-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6FA345;
    color: #ffffff;
    font-weight: 500;
}

.como-funciona-step h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #474747;
}

.como-funciona-step p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #54595F;
}

@media (max-width: 900px) {
    .como-funciona-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .como-funciona-grid {
        grid-template-columns: 1fr;
    }
}

.privacy-content {
    display: grid;
    gap: 30px;
}

.privacy-content article {
    max-width: 760px;
}

.privacy-content h2 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #474747;
}

.privacy-content p {
    margin: 0 0 8px;
    color: #54595F;
    line-height: 1.6;
}

.privacy-content ul {
    margin: 8px 0 0;
    padding-left: 20px;
    color: #54595F;
    line-height: 1.7;
}

.privacy-content a {
    color: #6FA345;
}

.error-404-section {
    padding: 70px 0;
}

.error-404-box {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.error-404-code {
    display: block;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    color: #6FA345;
    line-height: 1;
    margin-bottom: 8px;
}

.error-404-box h1 {
    margin: 0 0 12px;
    color: #474747;
}

.error-404-box p {
    margin: 0 0 26px;
    color: #54595F;
}

.error-404-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.map-card {
    background: #ffffff;
    border: 1px solid #ece7de;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.05);
}

.map-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #474747;
}

.map-card p {
    margin: 0 0 14px;
    font-size: 0.84rem;
    color: #54595F;
}

.map-frame {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 14px;
}

@media (max-width: 780px) {
    .maps-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    padding: 50px 0 26px;
}

.page-hero .container {
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));
    border: 1px solid #ece7df;
    border-radius: 24px;
    padding: 32px 28px;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero--privacidade h1 {
    font-weight: 600;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
}

.page-content {
    padding: 10px 0 70px;
}

.page-content .container {
    display: grid;
    gap: 28px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.contact-copy,
.contact-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid #ece7df;
    border-radius: 24px;
    padding: 28px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 12px;
}

.contact-list li {
    color: #54595F;
    font-size: 1rem;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff;
    color: #474747;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-button {
    border-radius: 12px;
    padding: 14px 18px;
    background: #6FA345;
    color: white;
    font-weight: 700;
}

.form-status {
    margin: 0 0 14px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(111, 163, 69, 0.12);
    color: #6FA345;
    font-weight: 600;
}

.form-status--error {
    background: rgba(217, 101, 77, 0.1);
    color: #b7402a;
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.quote-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.quote-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: blur(2px);
}

.quote-modal-panel {
    position: relative;
    width: min(100%, 900px);
    max-height: 95vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 36px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}

.quote-modal.is-open .quote-modal-panel {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 1px solid #ece7df;
    border-radius: 50%;
    background: #f8f7f4;
    color: #474747;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.quote-modal-close:hover {
    background: #eeeeee;
    transform: rotate(90deg);
}

.quote-modal-head {
    text-align: center;
    margin-bottom: 12px;
}

.quote-modal-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    border-radius: 50%;
    border: 2px solid #6FA345;
    color: #6FA345;
}

.quote-modal-head h2 {
    margin: 0 0 4px;
    font-size: 1.3rem;
    color: #474747;
}

.quote-modal-head p {
    margin: 0;
    font-size: 0.85rem;
    color: #54595F;
    line-height: 1.4;
}

.quote-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.quote-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #6FA345;
    color: #6FA345;
    font-size: 0.7rem;
    font-weight: 700;
}

.quote-step.is-active .quote-step-icon {
    background: #6FA345;
    color: #ffffff;
}

.quote-step-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #54595F;
}

.quote-step.is-active .quote-step-text {
    color: #6FA345;
}

.quote-step-connector {
    width: 36px;
    height: 2px;
    background: #d8d8d8;
}

.quote-step-connector.is-complete {
    background: #6FA345;
}

.quote-form-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.quote-form-fields {
    display: grid;
    gap: 12px;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quote-field--full {
    grid-column: 1 / -1;
}

.quote-summary {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(111, 163, 69, 0.08);
    border: 1px solid rgba(111, 163, 69, 0.25);
    border-radius: 18px;
    padding: 14px;
}


.quote-summary h3 {
    margin: 0 0 10px;
    font-size: 0.92rem;
    color: #474747;
}

.quote-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 8px;
}

.quote-summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.quote-summary-item img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: #ffffff;
}

.quote-summary-item span {
    font-size: 0.68rem;
    font-weight: 600;
    color: #474747;
    line-height: 1.2;
}

.quote-produtos-empty {
    margin: 0;
    font-size: 0.82rem;
    color: #8b9089;
}

.quote-summary-qty {
    margin: auto 0 2px;
    font-size: 0.85rem;
    color: #474747;
}

.quote-summary-note {
    margin: 0 0 8px;
    font-size: 0.76rem;
    color: #54595F;
}

.quote-summary-edit {
    border: none;
    background: none;
    padding: 0;
    color: #6FA345;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

.quote-field {
    display: grid;
    gap: 5px;
}

.quote-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #474747;
}

.quote-field .req {
    color: #d9654d;
}

.quote-field input,
.quote-field textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    padding: 9px 14px;
    color: #474747;
    background: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.quote-field textarea {
    min-height: 54px;
    resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #b7b7b7;
}

.quote-field input:focus,
.quote-field textarea:focus {
    outline: none;
    border-color: #6FA345;
}

.quote-field input.is-invalid,
.quote-field textarea.is-invalid {
    border-color: #d9654d;
}

.quote-field-error {
    display: block;
    min-height: 15px;
    margin-top: 4px;
    font-size: 0.74rem;
    line-height: 15px;
    font-weight: 600;
    color: #b7402a;
    visibility: hidden;
}

.quote-field-error.is-visible {
    visibility: visible;
}

.quote-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
    padding: 10px 14px;
    border: 1px solid #e6e1d9;
    border-radius: 12px;
    background: #f8f7f4;
    cursor: pointer;
}

.quote-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #6FA345;
    cursor: pointer;
}

.quote-consent span {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #54595F;
}

.quote-form-status {
    margin: 10px 0 0;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(111, 163, 69, 0.12);
    color: #6FA345;
    font-weight: 600;
    font-size: 0.85rem;
}

.quote-form-status--error {
    background: rgba(217, 101, 77, 0.1);
    color: #b7402a;
}

.quote-form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
}

.quote-back-button {
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    padding: 12px 22px;
    background: #ffffff;
    color: #474747;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.quote-back-button:hover {
    background: #f8f7f4;
    border-color: #c9c4bb;
}

.quote-form-submit {
    flex: 1;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    background: #6FA345;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.quote-form-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.quote-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 0;
    text-align: center;
    font-size: 0.76rem;
    color: #8b9089;
}

.quote-lock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6FA345;
    flex-shrink: 0;
}

body.quote-modal-open {
    overflow: hidden;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.snack-banner-section {
    padding-top: 90px;
    margin-bottom: 60px;
}

.snack-banner-section .carousel-slide {
    aspect-ratio: 12 / 6;
}

.snack-cta-section {
    padding-top: 0;
}

.snack-cta-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.snack-cta-title {
    margin: 0 0 14px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 500;
    color: #474747;
}

.snack-cta-text {
    margin: 0 0 28px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #54595F;
    line-height: 1.7;
}

.snack-cta-button {
    display: inline-flex;
}

.partners-section {
    padding: 56px 0 0;
}

.partners-title {
    margin: 0 0 28px;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #474747;
}

.partners-band {
    width: 100%;
    background: #d9d9d9;
    padding: 48px 0;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 120px;
}

@media (max-width: 1075px) {
    .partners-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        row-gap: 36px;
    }
}

.partner-item img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .partners-row {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .partner-item img {
        max-width: 110px;
        max-height: 46px;
    }
}

.site-footer {
    background: #ffffff;
    color: #474747;
    margin-top: 40px;
    border-top: 1px solid #ece7de;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    grid-template-areas:
        "brand sobre marcas atendimento"
        "brand sobre marcas enderecos";
    gap: 28px;
    padding: 48px 0 32px;
}

.footer-col-sobre {
    grid-area: sobre;
}

.footer-col-marcas {
    grid-area: marcas;
}

.footer-col-atendimento {
    grid-area: atendimento;
}

.footer-enderecos {
    grid-area: enderecos;
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-brand {
    grid-area: brand;
    display: grid;
    gap: 14px;
}

.brand-footer {
    display: inline-block;
}

.brand-footer img {
    height: 52px;
    width: auto;
}

.footer-brand p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #54595F;
    max-width: 38ch;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    transition: transform 0.2s ease;
}

.footer-social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-links {
    display: grid;
    gap: 4px;
    align-content: start;
}

.footer-links h3 {
    margin: 0 0 6px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #474747;
}

.footer-links a,
.footer-links span,
.site-footer p {
    color: #54595F;
}

.footer-links a {
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s ease;
    width: fit-content;
}

.footer-links a:hover {
    color: #6FA345;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact svg {
    flex-shrink: 0;
    color: #6FA345;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.86rem;
    line-height: 1.5;
    color: #54595F;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #6FA345;
}

.footer-address strong {
    color: #474747;
}

.footer-bottom {
    border-top: 1px solid #ece7de;
    padding: 16px 0;
}

.footer-bottom p {
    margin: 0;
    color: #54595F;
    font-size: 0.85rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #54595F;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #6FA345;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 30;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-end;
    }

    body.nav-open .header-actions .btn-header {
        display: none;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        background: rgba(255, 255, 255, 0.98);
        padding: 80px 24px 32px 170px;
        z-index: 25;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 4px 0;
        text-align: left;
        font-size: 1.6rem;
        font-weight: 500;
    }
}

@media (max-width: 1000px) {
    .hero-inner,
    .builder-box,
    .steps-grid,
    .audience-grid,
    .reviews-grid,
    .stats-grid,
    .service-grid,
    .about-grid,
    .values-grid,
    .info-grid,
    .contact-grid,
    .trust-bar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner,
    .contact-layout,
    .products-content {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        height: auto;
    }

    .kit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-kits-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .why-kits-image {
        height: 300px;
    }

    .why-kits-grid {
        height: auto;
    }

    .why-kits-card {
        height: auto;
        overflow: visible;
    }

    .hero-badge--top,
    .hero-badge--bottom {
        right: 4%;
    }

    .brand-kit-layout {
        grid-template-columns: 1fr;
    }

    .trust-item--shift-right {
        margin-left: 0;
    }

    .trust-bar-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 860px;
        margin: 0 auto;
    }

    .trust-bar-grid .trust-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .hero-inner .hero-copy {
        text-align: center;
    }

    .hero-inner .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-inner .hero-visual {
        order: -1;
        justify-content: center;
    }

    .hero-inner .hero-visual-inner {
        justify-content: center;
        margin: 0 auto;
    }

    .products-tabs {
        justify-content: center;
    }

    .products-grid.is-active {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .products-grid .product-thumb {
        flex: 0 0 140px;
    }

    .products-grid[data-group="sucos"] .product-thumb,
    .products-grid[data-group="refrigerantes"] .product-thumb {
        flex: 0 0 180px;
    }

    .footer-inner {
        grid-template-columns: 1.2fr 1fr 1fr;
        grid-template-areas:
            "brand sobre marcas"
            "brand atendimento enderecos";
    }
}

@media (max-width: 700px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 18px;
    }

    .stats-grid,
    .kit-grid,
    .steps-grid,
    .audience-grid,
    .reviews-grid,
    .builder-box,
    .service-grid,
    .about-grid,
    .values-grid,
    .info-grid,
    .contact-grid,
    .trust-bar-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "sobre"
            "marcas"
            "atendimento"
            "enderecos";
    }

    .section-head,
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-kits-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }

    .why-kits-grid .why-kits-card:nth-child(1),
    .why-kits-grid .why-kits-card:nth-child(2),
    .why-kits-grid .why-kits-card:nth-child(3),
    .why-kits-grid .why-kits-card:nth-child(4),
    .why-kits-grid .why-kits-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .why-kits-card--tall {
        grid-column: 1 / -1;
    }

    .brand-kit-panel {
        padding: 20px;
        height: auto;
    }

    .brand-kit-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand-kit-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        width: min(100% - 24px, 1280px);
    }

    .carousel-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .quote-modal-panel {
        padding: 28px 20px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-form-body {
        grid-template-columns: 1fr;
    }

    .quote-steps {
        gap: 6px;
    }

    .quote-step-connector {
        width: 18px;
    }

    .quote-step-text {
        display: none;
    }

    .builder-steps {
        gap: 6px;
    }

    .builder-step-connector {
        width: 18px;
    }

    .builder-step-text {
        display: none;
    }

    .quote-form-actions {
        flex-direction: column-reverse;
    }

    .quote-back-button,
    .quote-form-submit {
        width: 100%;
    }
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.22);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 70;
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #ece7de;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.14);
    padding: 18px 20px;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-consent p {
    margin: 0;
    flex: 1;
    min-width: 220px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #54595F;
}

.cookie-consent a {
    color: #6FA345;
    font-weight: 600;
}

.cookie-consent-accept {
    flex-shrink: 0;
    background: #6FA345;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 0.86rem;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-consent-accept:hover {
    background: #5f8f39;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 14px;
        bottom: 14px;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-accept {
        width: 100%;
    }

}
