:root {
    --primary: #f5f5f5;
    /* Fundo Claro (Gelo) */
    --gold: #b08d55;
    --gold-light: #d4b888;
    --text: #1a1a1a;
    /* Texto Escuro */
    --text-muted: #666;
    --white: #ffffff;
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    /* Ajuda a conter overflows absolutos */
}

body {
    background-color: var(--primary);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

/* NAVBAR (Mantendo preta) */
.navbar {
    background-color: #000 !important;
    /* Força preto */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s ease;
}

.nav-links a {
    color: #fff !important;
    /* Links brancos na navbar */
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.cart-icon {
    color: #fff !important;
}

/* SEARCH BAR FIX */
.search-bar input {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #ddd !important;
}

.search-bar i {
    color: #b08d55 !important;
}

/* PRODUCT CARD ADAPTATION */
.card-info {
    padding: 1.5rem;
    background: var(--card-bg);
    /* Fundo Branco */
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Sombra elegante */
}

.card-info h3 {
    color: #000;
    /* Nome do perfume preto */
}

.product-card {
    background: transparent;
}

/* PRODUCT CARD - CAROUSEL */
.card-img-container {
    position: relative;
    height: 350px;
    background: #000;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    opacity: 0;
}

.card-img-container:hover .nav-btn {
    opacity: 1;
}

.nav-btn:hover {
    background: var(--gold);
    color: black;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.img-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.img-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.img-dots span.active {
    background: var(--gold);
}

.card-info {
    padding: 1.5rem;
    background: #1a1a1a;
    text-align: center;
}

.card-info h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.card-info .price {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn-buy {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-buy:hover {
    background: var(--gold);
    color: #000;
}

/* TYPOGRAPHY */
h1,
h2,
.logo {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: #000000;
    /* Solid Black to match logo bg */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(176, 141, 85, 0.3);
}

.logo {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gold);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-family: sans-serif;
}

/* HERO BACKGROUND SLIDER */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

/* O hero-overlay agora será o slider */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 100%);
    -webkit-mask-image: linear-gradient(to right, #000 30%, transparent 100%);
    z-index: 1;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 15s infinite ease-in-out;
}

/* Define as imagens de cada slide e seus tempos */
.hero-slide:nth-child(1) {
    background-image: url('images/hero_spray.png');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: url('images/hero_drops.png');
    animation-delay: 5s;
}

.hero-slide:nth-child(3) {
    background-image: url('images/hero_vitrine.png');
    animation-delay: 10s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    33% {
        opacity: 1;
        transform: scale(1);
    }

    /* Fica visível por ~3s */
    43% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    /* Align text to left */
    align-items: center;
    height: 100%;
    padding-top: 100px;
    /* Adjust for larger navbar */
}

.hero-content {
    max-width: 650px;
    padding-left: 5%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 .highlight {
    color: transparent;
    background: linear-gradient(45deg, var(--gold), #fff, var(--gold));
    -webkit-background-clip: text;
    background-size: 200%;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}

/* BUTTONS */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* SCROLL INDICATOR */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-overlay {
        opacity: 0.4;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .hero-container {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content p {
        border: none;
        padding: 0;
    }

    .hero-btns {
        justify-content: center;
    }
}

/* CATALOG */
.catalog {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.placeholder-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    border: 1px dashed var(--text-muted);
    color: var(--text-muted);
}

footer {
    background: #000;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* DIFFERENTIALS BAR */
.features-bar {
    display: flex;
    justify-content: space-around;
    padding: 2rem 5%;
    background: #000;
    /* Fundo preto para destaque */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    /* Texto branco */
}

.feature-item i {
    font-size: 2rem;
    color: var(--gold);
}

.feature-item h4 {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials {
    padding: 5rem 5%;
    background-color: #eee;
    /* Fundo levemente diferente para separar seções */
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    /* Card Branco */
    padding: 2rem;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    /* Texto escuro */
    margin-bottom: 1.5rem;
}

.testimonial-card h4 {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* SHOPPING CART SIDEBAR */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.cart-overlay.open {
    display: block;
    opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hidden by default */
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    /* Fundo Branco */
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
    color: #000;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    color: #000;
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: center;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-item-info p {
    color: var(--gold);
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    font-size: 0.8rem;
    cursor: pointer;
    margin-left: auto;
}

.cart-footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: #000;
    font-weight: bold;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
}

.btn-checkout:hover {
    background: #fff;
}

/* SHIPPING CALCULATOR */
.shipping-section {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.shipping-section h3 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.shipping-input-group {
    display: flex;
    gap: 10px;
}

#cep-input {
    flex: 1;
    padding: 8px;
    background: #000;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
}

.btn-calc {
    background: var(--gold);
    border: none;
    color: #000;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-calc:hover {
    background: #fff;
}

.shipping-options {
    margin-top: 10px;
}

.shipping-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #333;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
}

.shipping-option.selected {
    border-color: var(--gold);
    background: rgba(176, 141, 85, 0.1);
}

.shipping-option input {
    margin-right: 10px;
}

.shipping-info span {
    display: block;
    color: #fff;
}

.shipping-info small {
    color: #aaa;
}

.shipping-price {
    font-weight: bold;
    color: var(--gold);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #25d366;
}

/* FEATURES BAR */
.features-bar {
    background: #111;
    border-bottom: 1px solid #333;
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--gold);
}

.feature-item h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-item p {
    color: #aaa;
    font-size: 0.9rem;
}

/* ABOUT SECTION */
.about {
    padding: 5rem 5%;
    background: #0f0f0f;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 5rem 5%;
    background: #000;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #ddd;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-card h4 {
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* FOOTER UPDATES */
footer {
    padding: 3rem 5%;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 5%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* PREVINE ZOOM NO IPHONE/ANDROID AO DIGITAR */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    .nav-links {
        display: flex;
        gap: 15px;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
        font-size: 0.9rem;
        order: 3;
        background: #000;
        padding: 10px 0;
    }

    .logo img {
        height: 60px !important;
        /* Logo menor no mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .features-bar {
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .feature-item {
        width: 100%;
        /* Items empilhados no mobile ou 2 por linha */
        justify-content: center;
        text-align: left;
        min-width: auto;
    }

    .about-container {
        flex-direction: column;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
        /* Garante que saia totalmente da tela */
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        /* 1 produto por linha em telas muito pequenas */
    }

    .nav-links {
        flex-wrap: wrap;
    }
}

/* PRODUCT DETAILS MODAL */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.product-modal-content {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: #333;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-gallery {
    flex: 1 1 400px;
    background: #f0f0f0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 20px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumb {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    opacity: 0.7;
    transition: 0.3s;
}

.thumb:hover,
.thumb.active {
    border-color: var(--gold);
    opacity: 1;
}

.modal-info {
    flex: 1 1 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-category {
    color: var(--gold);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.modal-info h2 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.modal-price {
    font-size: 2rem;
    color: #333;
    font-weight: 300;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.modal-description h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000;
}

.modal-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-meta p {
    margin-bottom: 5px;
    color: #444;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .modal-gallery {
        padding: 10px;
    }

    .main-image {
        height: 300px;
    }

    .modal-info {
        padding: 20px;
    }
}

/* UTILITÁRIO PARA TRAVAR SCROLL (MOBILE FIX) */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
    width: 100% !important;
    position: fixed !important; /* Fixa hardcore no mobile */
    top: 0;
}