/* produtos-catalogo.css - Limpo e Corrigido */

/* ==========================================
   ESTILOS GERAIS
   ========================================== */

h1 { 
    margin: 0; 
    font-size: 2.8rem; 
    color: var(--accent); 
}

.subtitle { 
    margin: 0.5rem 0 0; 
    color: #777; 
}

main { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 100px 1rem 3rem;
    margin-top: 100px;
}

/* ==========================================
   GRID DE PRODUTOS
   ========================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* ==========================================
   CARDS DE PRODUTOS
   ========================================== */

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 380px;
    position: relative;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-img-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f9f9f9;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.card-img.main {
    opacity: 1;
}

.card-img.hover {
    opacity: 0;
}

.card:hover .card-img.main {
    opacity: 0;
}

.card:hover .card-img.hover {
    opacity: 1;
}

.card-body {
    padding: 1.2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
}

.card-title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
}

/* ==========================================
   AJUSTES APENAS PARA DISPOSITIVOS MÓVEIS (até 600px)
   ========================================== */

@media screen and (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Força exatamente 2 colunas */
        gap: 1rem; /* Gap menor para caber melhor na tela pequena */
        margin-top: 1rem;
    }

    .card {
        height: auto; /* Altura flexível */
        min-height: 280px; /* Altura mínima para manter proporção */
        border-radius: 10px;
    }

    .card-img-container {
        height: 180px; /* Imagem menor no mobile */
    }

    .card-body {
        padding: 0.9rem;
    }

    .card-title {
        font-size: 0.95rem; /* Título menor */
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .card-price {
        font-size: 1.15rem; /* Preço um pouco menor, mas ainda destacado */
    }
}

/* ==========================================
   BADGES DE FRAGRÂNCIA NOS CARDS
   ========================================== */

.fragrance-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.fragrance-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   MODAL
   ========================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    backdrop-filter: blur(5px);
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    max-width: 1000px;
    max-height: 90vh;
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    z-index: 10000;
}

.modal-overlay.active .modal { 
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f8f8;
    color: #333;
    transform: rotate(90deg);
}

.modal-content {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    gap: 0;
}

/* ==========================================
   COLUNA DE IMAGENS DO MODAL
   ========================================== */

.modal-images-column {
    flex: 0 0 50%;
    background: #f8f9fa;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    max-height: 100%;
}

.modal-main-image {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-main-image:hover img {
    transform: scale(1.05);
}

.modal-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.modal-thumbnail {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: white;
}

.modal-thumbnail:hover {
    border-color: #ddd;
    transform: translateY(-2px);
}

.modal-thumbnail.active {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   COLUNA DE INFORMAÇÕES DO MODAL
   ========================================== */

.modal-info-column {
    flex: 0 0 50%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 100%;
    background: white;
}

.modal-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.modal-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.modal-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

/* ==========================================
   SEÇÕES DO MODAL
   ========================================== */

.modal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.modal-section h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section h4::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

/* ==========================================
   BADGES E TAGS DO MODAL
   ========================================== */

.modal-fragrance-container {
    margin-bottom: 1rem;
}

.modal-fragrance-badge {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.modal-fragrance-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.modal-info-item {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-top: 0.5rem;
}

.modal-info-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.modal-info-item p + p {
    margin-top: 0.8rem;
}

.modal-category {
    margin-top: 0.5rem;
}

.modal-category-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #bbdefb;
}

/* ==========================================
   BOTÃO WHATSAPP
   ========================================== */

.whatsapp-button {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.4rem;
}

.whatsapp-button span {
    flex: 1;
    text-align: center;
}

/* ==========================================
   LIGHTBOX PARA IMAGENS
   ========================================== */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
    transition: opacity 0.2s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: white;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.delivery-info {
  margin-top: 12px;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #25D366;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.delivery-info p {
  margin: 0;
}

/* ==========================================
   RESPONSIVO - TABLETS
   ========================================== */

@media (max-width: 1024px) {
    .modal {
        width: 95%;
        max-height: 85vh;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 60px;
    }
    
    .products-grid { 
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
        gap: 1.5rem;
    }
    
    .card {
        height: 340px;
    }
    
    .card-img-container {
        height: 240px;
    }
    
    /* Modal responsivo */
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal {
        max-height: 90vh;
        width: 95%;
    }
    
    .modal-content {
        flex-direction: column;
    }
    
    .modal-images-column,
    .modal-info-column {
        flex: none;
        width: 100%;
    }
    
    .modal-images-column {
        padding: 1.5rem;
        max-height: 40vh;
    }
    
    .modal-main-image {
        height: 200px;
    }
    
    .modal-thumbnail {
        height: 60px;
    }
    
    .modal-info-column {
        padding: 1.5rem;
        max-height: 50vh;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 1.8rem;
    }
    
    .modal-info-item {
        padding: 1rem;
    }
    
    .modal-section {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }
    
    /* Lightbox */
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-content img {
        max-height: 80vh;
    }
}

/* ==========================================
   RESPONSIVO - MOBILE
   ========================================== */

@media (max-width: 480px) {
    .products-grid { 
        grid-template-columns: 1fr;
    }
    
    .card {
        height: 320px;
    }
    
    .card-img-container {
        height: 220px;
    }
    
    .modal-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .whatsapp-button a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .modal-fragrance-badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
    
    .fragrance-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
    }
    
    /* Lightbox mobile */
    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
}

/* ==========================================
   BOTÃO "SOBRE ESTA FRAGRÂNCIA"
   ========================================== */

.btn-sobre-fragrancia {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #80a48d 0%, #305037 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 1.5rem 0;
  box-shadow: 0 4px 15px rgba(48, 80, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: 0.3px;
}

.btn-sobre-fragrancia:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(48, 80, 55, 0.4);
}

.btn-sobre-fragrancia:active {
  transform: translateY(-1px);
}

.btn-sobre-fragrancia i {
  font-size: 1.2rem;
}

/* ==========================================
   MODAL "SOBRE A FRAGRÂNCIA"
   ========================================== */

.modal-sobre-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
  overflow-y: auto;
}

.modal-sobre-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-sobre-container {
  background: white;
  max-width: 800px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.modal-sobre-overlay.active .modal-sobre-container {
  transform: translateY(0) scale(1);
}

/* Botão Fechar */
.modal-sobre-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e0e0e0;
  font-size: 1.8rem;
  color: #666;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-sobre-close:hover {
  background: #f5f5f5;
  color: #333;
  transform: rotate(90deg);
  border-color: #ccc;
}

/* Header do Modal - Imagem de Capa */
.modal-sobre-header {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.modal-sobre-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Título no Body */
.modal-sobre-titulo {
  font-size: 2.5rem;
  color: #2c3e50;
  margin: 0 0 1.5rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid #80a48d;
}

/* Body do Modal */
.modal-sobre-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-sobre-body {
  padding: 2.5rem;
  overflow-y: auto;
  max-height: calc(90vh - 200px);
  flex: 1;
}

/* Seções */
.modal-sobre-section {
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease backwards;
}

.modal-sobre-section:first-child {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e0e0e0;
}

.modal-sobre-section:nth-child(1) { animation-delay: 0.1s; }
.modal-sobre-section:nth-child(2) { animation-delay: 0.2s; }
.modal-sobre-section:nth-child(3) { animation-delay: 0.3s; }
.modal-sobre-section:nth-child(4) { animation-delay: 0.4s; }
.modal-sobre-section:nth-child(5) { animation-delay: 0.5s; }
.modal-sobre-section:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-sobre-descricao {
  color: #2c3e50;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
}

.modal-sobre-section h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.modal-sobre-section h3 i {
  color: #80a48d;
  font-size: 1.2rem;
}

.modal-sobre-info-text {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

/* Lista de Benefícios */
.modal-sobre-beneficios {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.modal-sobre-beneficios li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
  font-size: 1rem;
  color: #2c3e50;
  transition: all 0.3s ease;
  border-left: 4px solid #667eea;
}

.modal-sobre-beneficios li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.modal-sobre-beneficios li i {
  color: #80a48d;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Tags de Palavras-chave */
.modal-sobre-palavras-chave {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.palavra-chave-tag {
  background: linear-gradient(135deg, #80a48d 0%, #305037 100%);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 4px 12px rgba(48, 80, 55, 0.2);
}

.palavra-chave-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(48, 80, 55, 0.3);
}

/* ==========================================
   RESPONSIVO - TABLET
   ========================================== */

@media (max-width: 768px) {
  .modal-sobre-overlay {
    padding: 1rem;
  }

  .modal-sobre-container {
    max-height: 95vh;
    border-radius: 20px;
  }

  .modal-sobre-header {
    height: 250px;
  }

  .modal-sobre-titulo {
    font-size: 2rem;
  }

  .modal-sobre-body {
    padding: 2rem;
    max-height: calc(95vh - 250px);
  }

  .modal-sobre-section h3 {
    font-size: 1.2rem;
  }

  .btn-sobre-fragrancia {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ==========================================
   RESPONSIVO - MOBILE
   ========================================== */

@media (max-width: 480px) {
  .modal-sobre-overlay {
    padding: 0.5rem;
    align-items: flex-start;
    padding-top: 1rem;
  }

  .modal-sobre-container {
    border-radius: 16px;
    max-height: 96vh;
  }

  .modal-sobre-close {
    width: 40px;
    height: 40px;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
  }

  .modal-sobre-header {
    height: 200px;
  }

  .modal-sobre-titulo {
    font-size: 1.7rem;
  }

  .modal-sobre-body {
    padding: 1.5rem;
    max-height: calc(96vh - 200px);
  }

  .modal-sobre-section {
    margin-bottom: 1.5rem;
  }

  .modal-sobre-section h3 {
    font-size: 1.1rem;
    gap: 0.5rem;
  }

  .modal-sobre-section h3 i {
    font-size: 1rem;
  }

  .modal-sobre-descricao,
  .modal-sobre-info-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .modal-sobre-beneficios li {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .modal-sobre-beneficios li i {
    font-size: 1rem;
  }

  .palavra-chave-tag {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .btn-sobre-fragrancia {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-sobre-fragrancia i {
    font-size: 1rem;
  }
}

/* ==========================================
   SCROLLBAR CUSTOMIZADA PARA O MODAL
   ========================================== */

.modal-sobre-body::-webkit-scrollbar {
  width: 8px;
}

.modal-sobre-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-sobre-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #80a48d 0%, #305037 100%);
  border-radius: 10px;
}

.modal-sobre-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #6b8f7a 0%, #273d2a 100%);
}