.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 700px;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0eb 0%, #ebe3d8 50%, #e8ddd0 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, var(--dark-brown) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: var(--wide-container);
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-text {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(184, 169, 154, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: var(--medium-brown);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-badge .fi {
    font-size: 1rem;
    color: var(--accent);
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
}

.hero-title em {
    color: var(--accent);
    font-style: italic;
}

.hero-subtitle {
    max-width: 480px;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-actions .fi {
    line-height: 1;
}

.btn-primary .fi {
    transform: translateX(0);
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hero-image-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover img {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}

.hero-image-tag {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark-brown);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll .fi {
    font-size: 1.15rem;
}

.floating-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: float 3s ease-in-out infinite;
}

.floating-badge.left {
    left: -2rem;
    top: 20%;
}

.floating-badge.right {
    right: -1.5rem;
    bottom: 25%;
    animation-delay: 1.5s;
}

.floating-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.floating-badge-icon.green {
    background: #e8f5e9;
}

.floating-badge-icon.orange {
    background: #fff3e0;
}

.floating-badge-text {
    color: var(--dark-brown);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.floating-badge-sub {
    color: var(--text-light);
    font-size: 0.6rem;
}

.stats-bar {
    background: var(--dark-brown);
    padding: 2rem 3rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--wide-container);
    margin: 0 auto;
}

.stat-item {
    color: #fff;
    text-align: center;
}

.stat-number {
    margin-bottom: 0.25rem;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
}

.stat-label {
    opacity: 0.7;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.history-section {
    background: var(--cream);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.history-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.history-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.history-image:hover img {
    transform: scale(1.03);
}

.history-image::before {
    content: '';
    position: absolute;
    inset: -15px 15px 15px -15px;
    z-index: -1;
    border: 2px solid var(--taupe);
    border-radius: 20px;
    opacity: 0.4;
}

.history-text h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
}

.history-text p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.4;
}

.history-text a {
    color: #c4956a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.history-text a:visited {
    color: #c4956a;
}

.history-text a:hover {
    opacity: 0.85;
}

.history-text .highlight {
    color: var(--dark-brown);
    font-weight: 500;
}

.history-callout {
    margin-top: 1rem;
    color: var(--accent) !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem !important;
    font-style: italic;
}

.history-signature {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sand);
}

.history-signature span {
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
}

.features-section {
    background: var(--warm-white);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    margin-bottom: 3rem;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.feature-image:hover img {
    transform: scale(1.04);
}

.feature-number {
    margin-bottom: 1rem;
    color: var(--sand);
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
}

.feature-title {
    margin-bottom: 1rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.feature-description {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

.gallery-section {
    background: var(--cream);
    text-align: center;
}

.gallery-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.gallery-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.gallery-video-trigger picture,
.gallery-video-trigger img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.gallery-video-play {
    position: absolute;
    inset: 50% auto auto 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(61, 43, 31, 0.76);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}

.gallery-video-play .fi {
    font-size: 1.55rem;
    transform: translateX(0.1rem);
    line-height: 0;
}

.gallery-video-trigger:hover .gallery-video-play,
.gallery-video-trigger:focus-visible .gallery-video-play {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(196, 149, 106, 0.95);
    box-shadow: 0 20px 45px rgba(61, 43, 31, 0.3);
}

.gallery-video-trigger:focus-visible {
    outline: 3px solid rgba(196, 149, 106, 0.35);
    outline-offset: 6px;
}

.gallery-image picture,
.gallery-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    border-radius: 20px;
}

.gallery-info {
    margin-bottom: 2rem;
}

.gallery-info p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.4;
}

.gallery-info strong {
    color: var(--dark-brown);
}

.btn-whatsapp {
    padding: 0.85rem 2rem;
    border: 0;
    background: #25d366;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp .fi {
    font-size: 1.05rem;
}

.video-modal[hidden] {
    display: none !important;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 13, 10, 0.74);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(90vh, 760px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(18, 13, 10, 0.9);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

.video-modal-player {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    background: #000;
    object-fit: cover;
}

.video-modal-close {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1.04);
}

.video-modal-close .fi {
    font-size: 1.4rem;
}

body.video-modal-open {
    overflow: hidden;
}

.products-section {
    background: var(--warm-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 169, 154, 0.15);
    border-radius: 20px;
    background: #fff;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.product-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: var(--dark-brown);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(248, 243, 236, 0.65), rgba(255, 255, 255, 0.95));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

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

.product-details {
    padding: 1.35rem 1.5rem 1.5rem;
    text-align: center;
}

.product-size {
    margin-bottom: 0.45rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.product-specs {
    margin-bottom: 1rem;
    list-style: none;
}

.product-specs li {
    padding: 0.18rem 0;
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 0.3px;
    line-height: 1.2;
    font-weight: 600;
}

.product-price {
    margin-bottom: 0.9rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
}

.product-price span {
    font-size: 0.85rem;
    font-weight: 400;
}

.btn-product {
    width: 100%;
    padding: 0.85rem 1.75rem;
    border: 1.5px solid var(--dark-brown);
    background: transparent;
    color: var(--dark-brown);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    line-height: 1.2;
}

.btn-product:hover {
    background: var(--dark-brown);
    color: #fff;
}

.page-contato {
    background: linear-gradient(135deg, #fbf8f3 0%, #fffdf9 52%, #f4ede4 100%);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.page-contato .contact-page {
    padding-top: 6.5rem;
}

.page-contato .contact-section {
    background: transparent;
    color: var(--text);
    text-align: left;
}

.page-contato .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 3rem;
    align-items: start;
}

.page-contato .contact-intro {
    max-width: 36rem;
}

.page-contato .contact-intro .section-subtitle {
    margin: 0;
}

.page-contato .contact-intro-note {
    margin-top: 1.5rem;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.7;
    font-family: inherit;
}

.page-contato .contact-panel {
    padding: 2rem;
    border: 1px solid rgba(184, 169, 154, 0.22);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.page-contato .contact-panel-title {
    margin-bottom: 0.85rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1;
}

.page-contato .contact-panel-subtitle {
    max-width: 30rem;
    margin: 0;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    font-family: inherit;
}

.page-contato .contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.page-contato .contact-buttons .btn {
    flex: 1 1 220px;
    width: auto;
    min-height: 56px;
    justify-content: flex-start;
    padding-inline: 1.25rem;
    font-family: inherit;
}

.page-contato .contact-panel-note {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(184, 169, 154, 0.25);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-family: inherit;
}

.page-contato .btn-contact-whatsapp {
    border: 0;
    background: #25d366;
    color: #fff;
}

.page-contato .btn-contact-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.22);
}

.page-contato .btn-contact-instagram {
    border: 1px solid rgba(61, 43, 31, 0.18);
    background: #fff;
    color: var(--dark-brown);
}

.page-contato .btn-contact-instagram:hover {
    border-color: rgba(61, 43, 31, 0.3);
    background: rgba(61, 43, 31, 0.03);
    transform: translateY(-2px);
}

.contact-section {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #2c1e14 100%);
    color: #fff;
    text-align: center;
}

.contact-section .section-overline {
    color: var(--accent);
}

.contact-section .section-title {
    color: #fff;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.page-contato .contact-section .section-overline {
    color: var(--accent);
}

.page-contato .contact-section .section-title {
    color: var(--dark-brown);
}

.page-contato .contact-section .section-subtitle {
    color: var(--text-light);
    font-family: inherit;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.btn-contact-whatsapp,
.btn-contact-instagram {
    padding: 1.15rem 2.5rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

.btn-contact-whatsapp {
    border: 0;
    background: #25d366;
}

.btn-contact-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.btn-contact-instagram {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.btn-contact-instagram:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    text-decoration: none;
    animation: pulseGreen 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .fi {
    color: #fff;
    font-size: 1.75rem;
}

.page-produto {
    background: linear-gradient(135deg, #f5f0eb 0%, #ebe3d8 50%, #e8ddd0 100%);
}

.page-produto .product-page {
    padding-top: 6.5rem;
}

.page-produto .product-hero {
    padding: 0 0 2rem;
}

.page-produto .product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 4rem;
    align-items: center;
    padding: 0 20px;
}

.page-produto .product-breadcrumb {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-produto .product-title {
    margin-bottom: 1.5rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 500;
    line-height: 0.98;
}

.page-produto .product-lead {
    max-width: 34rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
}

.page-produto .product-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(184, 169, 154, 0.4);
}

.page-produto .product-meta span {
    color: var(--dark-brown);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.page-produto .product-hero-visual {
    position: sticky;
    top: 6.5rem;
    align-self: start;
}

.page-produto .product-hero-gallery {
    display: grid;
    gap: 1rem;
}

.page-produto .product-gallery-main {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    background: transparent;
    cursor: grab;
    touch-action: pan-y;
}

.page-produto .product-gallery-main.is-dragging {
    cursor: grabbing;
}

.page-produto .product-gallery-viewport {
    width: 100%;
    overflow: hidden;
    transition: height 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: height;
}

.page-produto .product-gallery-track {
    display: flex;
    width: 300%;
    transform: translateX(-33.333333%);
    transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.page-produto .product-gallery-track.is-dragging {
    transition: none;
}

.page-produto .product-gallery-slide {
    flex: 0 0 33.333333%;
    min-width: 0;
}

.page-produto .product-gallery-slide picture {
    display: block;
    width: 100%;
}

.page-produto .product-gallery-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.page-produto .product-gallery-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(250, 247, 242, 0.9);
    color: var(--dark-brown);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.page-produto .product-gallery-control:hover {
    background: #fff;
    color: var(--accent);
}

.page-produto .product-gallery-control.prev {
    left: 1rem;
}

.page-produto .product-gallery-control.next {
    right: 1rem;
}

.page-produto .product-gallery-control .fi {
    font-size: 1.6rem;
    line-height: 1;
}

.page-produto .product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.page-produto .product-gallery-thumb {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: none;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.72;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.page-produto .product-gallery-thumb img {
    display: block;
    width: 100%;
    height: 132px;
    object-fit: cover;
}

.page-produto .product-gallery-thumb:hover,
.page-produto .product-gallery-thumb.is-active {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.page-produto .product-details-section {
    padding-top: 2rem;
}

.page-produto .product-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 4rem;
    align-items: start;
}

.page-produto .product-story p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.9;
}

.page-produto .product-facts-list {
    margin: 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.page-produto .product-fact-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(184, 169, 154, 0.25);
}

.page-produto .product-fact-row:first-child {
    border-top: 0;
}

.page-produto .product-fact-row dt {
    color: var(--dark-brown);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.page-produto .product-fact-row dd {
    margin: 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.page-produto .product-variant-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1.1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(184, 169, 154, 0.35);
    color: var(--text-light);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-produto .product-variant-links a {
    color: var(--dark-brown);
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 43, 31, 0.25);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-produto .product-variant-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.page-comprar {
    background: linear-gradient(135deg, #f5f0eb 0%, #ebe3d8 50%, #e8ddd0 100%);
}

.page-comprar .checkout-page {
    padding-top: 6.5rem;
}

.page-comprar .checkout-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: start;
}

.page-comprar .checkout-form-panel,
.page-comprar .checkout-summary-card {
    border: 1px solid rgba(184, 169, 154, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.page-comprar .checkout-form-panel {
    padding: 2rem;
}

.page-comprar .checkout-summary {
    position: sticky;
    top: 6.5rem;
}

.page-comprar .checkout-summary-card {
    padding: 1.75rem;
}

.page-comprar .checkout-title {
    margin-bottom: 1rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1;
}

.page-comprar .checkout-intro {
    max-width: 46rem;
    margin-bottom: 1.75rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.page-comprar .checkout-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.page-comprar .checkout-item img {
    width: 132px;
    height: 132px;
    border-radius: 16px;
    object-fit: cover;
}

.page-comprar .checkout-item-copy h2,
.page-comprar .checkout-summary-card h2 {
    margin-bottom: 0.35rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.page-comprar .checkout-item-copy p {
    margin-bottom: 0.6rem;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.page-comprar .checkout-item-copy span {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.page-comprar .checkout-variant-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.72rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.page-comprar .checkout-variant-links a {
    color: var(--dark-brown);
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 43, 31, 0.25);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-comprar .checkout-variant-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.page-comprar .checkout-form {
    display: grid;
    gap: 1.25rem;
}

.page-comprar .checkout-block {
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(184, 169, 154, 0.22);
}

.page-comprar .checkout-block-head {
    margin-bottom: 1rem;
}

.page-comprar .checkout-block-head h2 {
    margin-bottom: 0.35rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.page-comprar .checkout-block-head p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.page-comprar .checkout-freight-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
}

.page-comprar .checkout-input {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(184, 169, 154, 0.35);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark-brown);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-comprar .checkout-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(196, 149, 106, 0.1);
}

.page-comprar .checkout-freight-row .checkout-input {
    min-width: 0;
}

.page-comprar .checkout-calc-btn {
    white-space: nowrap;
}

.page-comprar .checkout-note {
    margin-top: 0.8rem;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

.page-comprar .checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.page-comprar .checkout-form-grid label {
    display: grid;
    gap: 0.45rem;
    color: var(--dark-brown);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-comprar .checkout-span-2 {
    grid-column: span 2;
}

.page-comprar .checkout-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.page-comprar .checkout-payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(184, 169, 154, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--dark-brown);
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.page-comprar .checkout-payment-option:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

.page-comprar .checkout-payment-option input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.page-comprar .checkout-payment-option span {
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: none;
}

.page-comprar .checkout-submit {
    width: 100%;
    margin-top: 0.25rem;
}

.page-comprar .checkout-summary-card {
    display: grid;
    gap: 1rem;
}

.page-comprar .checkout-summary-product {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
}

.page-comprar .checkout-summary-product img {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    object-fit: cover;
}

.page-comprar .checkout-summary-product strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--dark-brown);
    font-size: 0.92rem;
    line-height: 1.4;
}

.page-comprar .checkout-summary-product span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.page-comprar .checkout-lines {
    display: grid;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.page-comprar .checkout-lines div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.page-comprar .checkout-lines .total {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(184, 169, 154, 0.25);
    color: var(--dark-brown);
    font-size: 1rem;
}

.page-comprar .checkout-lines strong {
    color: inherit;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
}

.page-comprar .checkout-summary-meta {
    display: grid;
    gap: 0.5rem;
    padding-top: 0.25rem;
}

.page-comprar .checkout-summary-meta p {
    color: var(--text-light);
    font-size: 0.84rem;
    line-height: 1.6;
}

.page-comprar .checkout-summary-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.page-comprar .checkout-summary-links a {
    color: var(--dark-brown);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
}

.page-comprar .checkout-summary-links a:hover {
    color: var(--accent);
}

.page-produto .product-cta-section {
    background: linear-gradient(135deg, #fbf8f3 0%, #f2ebe1 100%);
}

.page-produto .product-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding-top: 0.5rem;
}

.page-produto .other-products-section {
    background: var(--cream);
}

.page-produto .product-cta .section-subtitle {
    max-width: 40rem;
    margin: 0;
}

.page-produto .product-actions {
    flex-wrap: wrap;
}

/* ── Página de Conta ─────────────────────────────── */

.page-conta .section-container {
    animation: fadeIn 0.5s ease-out;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border: 1px solid rgba(184, 169, 154, 0.4);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--taupe);
    font-size: 0.95rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--taupe);
}

.login-footer a {
    color: var(--dark-brown);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.login-footer a:hover {
    border-color: var(--dark-brown);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-brown);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-form input {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(184, 169, 154, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-brown);
    font: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-form input::placeholder {
    color: var(--taupe);
}

.auth-form input:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.12);
}

.account-dashboard {
    width: 100%;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(184, 169, 154, 0.3);
}

.account-header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.account-header p {
    color: var(--taupe);
    font-size: 1rem;
}

.account-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: start;
}

.account-card {
    padding: 2rem;
    border: 1px solid rgba(184, 169, 154, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.account-card .card-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.account-card .card-title .fi {
    color: var(--accent);
    font-size: 1.25rem;
}

.data-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.data-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.data-list span {
    font-size: 0.8rem;
    color: var(--taupe);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-list strong {
    font-size: 1rem;
    color: var(--dark-brown);
    font-weight: 500;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    border: 1px solid rgba(184, 169, 154, 0.3);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(184, 169, 154, 0.4);
}

.order-id {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.order-status {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-pending {
    background: rgba(234, 179, 8, 0.15);
    color: #a16207;
}

.status-info {
    background: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
}

.status-success {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}

.status-error {
    background: rgba(239, 68, 68, 0.15);
    color: #b91c1c;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.detail-col {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-col span {
    font-size: 0.75rem;
    color: var(--taupe);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-col strong {
    font-size: 0.95rem;
    color: var(--dark-brown);
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state .fi {
    font-size: 3rem;
    color: var(--taupe);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--taupe);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .account-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .order-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}


.shipping-calc-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

.shipping-results {
    margin-top: 1rem;
}

.shipping-results:empty {
    display: none;
}

.shipping-option {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(184, 169, 154, 0.22);
}

.shipping-option:first-child {
    border-top: 0;
    padding-top: 0;
}

.shipping-option-name {
    color: var(--dark-brown);
    font-size: 0.88rem;
    font-weight: 600;
}

.shipping-option-company {
    color: var(--text-light);
    font-size: 0.78rem;
}

.shipping-option-right {
    text-align: right;
}

.shipping-option-price {
    color: var(--dark-brown);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.shipping-option-days {
    color: var(--text-light);
    font-size: 0.75rem;
}

.shipping-error {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.08);
    color: #b91c1c;
    font-size: 0.85rem;
}

.shipping-loading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.shipping-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(184, 169, 154, 0.35);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}

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

.shipping-fallback-note {
    margin-top: 0.75rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    background: rgba(234, 179, 8, 0.08);
    color: #a16207;
    font-size: 0.78rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

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

    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .floating-badge {
        display: none;
    }

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

    .history-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-block.reverse {
        direction: ltr;
    }

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

    .page-produto .product-hero-grid,
    .page-produto .product-details-grid,
    .page-produto .product-cta {
        grid-template-columns: 1fr;
    }

    .page-produto .product-hero-visual {
        position: static;
    }

    .page-comprar .checkout-shell {
        grid-template-columns: 1fr;
    }

    .page-comprar .checkout-summary {
        position: static;
    }

    .page-contato .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        height: auto;
    }

    .hero-content {
        padding: 0 1.5rem;

    }

    .hero-content .hero-badge {
        margin-top: 100px;
    }

    .hero-text {
        padding: 0 1.5rem;
    }

    .hero-image-container img {
        height: 350px;
    }

    .stats-bar {
        padding: 1.5rem;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .history-image img {
        height: 350px;
    }

    .feature-image img {
        height: 300px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-produto .product-page {
        padding-top: 5.5rem;
    }

    .page-produto .product-meta {
        grid-template-columns: 1fr;
    }

    .page-produto .product-gallery-main img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .page-produto .product-gallery-control {
        width: 36px;
        height: 36px;
        background: rgba(250, 247, 242, 0.6);
        opacity: 0.75;
    }

    .page-produto .product-gallery-control .fi {
        font-size: 1.25rem;
    }

    .page-produto .product-gallery-control.prev {
        left: 0.5rem;
    }

    .page-produto .product-gallery-control.next {
        right: 0.5rem;
    }

    .page-produto .product-gallery-thumbs {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .page-produto .product-gallery-thumb {
        border-radius: 8px;
    }

    .page-produto .product-gallery-thumb img {
        height: 54px;
        border-radius: 8px;
    }

    .page-produto .product-fact-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .hero-image-wrapper,
    .hero-image-container,
    .history-image,
    .feature-image,
    .gallery-image,
    .page-produto .product-gallery-main {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        border-radius: 0;
    }

    .hero-image-wrapper {
        grid-column: 1 / -1;
        justify-self: stretch;
        animation: none;
        transform: none;
        padding-bottom: 100px;
    }

    .hero-image-container img,
    .history-image img,
    .feature-image img,
    .gallery-image picture,
    .gallery-image img,
    .page-produto .product-gallery-main img {
        width: 100%;
        border-radius: 0;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

    .feature-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .page-comprar .checkout-page {
        padding-top: 5.5rem;
    }

    .page-comprar .checkout-form-panel,
    .page-comprar .checkout-summary-card {
        border-radius: 20px;
    }

    .page-comprar .checkout-form-panel {
        padding: 1.35rem;
    }

    .page-comprar .checkout-item {
        grid-template-columns: 1fr;
    }

    .page-comprar .checkout-item img {
        width: 100%;
        height: 220px;
    }

    .page-comprar .checkout-freight-row,
    .page-comprar .checkout-form-grid,
    .page-comprar .checkout-payment-grid {
        grid-template-columns: 1fr;
    }

    .page-comprar .checkout-span-2 {
        grid-column: span 1;
    }

    .page-contato .contact-page {
        padding-top: 5.5rem;
    }

    .page-contato .contact-panel {
        padding: 1.35rem;
        border-radius: 20px;
    }

    .page-contato .contact-panel-title {
        font-size: 1.6rem;
    }

    .page-contato .contact-buttons .btn {
        justify-content: center;
    }
}