:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}
        
* {
    box-sizing: border-box;
}

body {
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.navbar-brand img {
    height: 45px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 12px 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 10px 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    left: 0;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.product-gallery {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: white;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-main-image {
    height: 550px;
    object-fit: contain;
    width: 100%;
    background-color: #f8f9fa;
    cursor: zoom-in;
    padding: 30px;
}

.product-thumbnail {
    height: 90px;
    width: 90px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 5px;
}

.product-thumbnail:hover, .product-thumbnail.active {
    border-color: var(--primary-color);
}

.product-details {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-price-promo {
    color: #c62828;
    font-weight: 700;
    font-size: 2rem;
}

.product-price-original {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.5rem;
}

.product-meta {
    margin-bottom: 25px;
}

.product-meta span {
    display: inline-block;
    margin-right: 20px;
    color: #6c757d;
    font-size: 0.95rem;
}

.product-meta i {
    color: var(--primary-color);
    margin-right: 8px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.product-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ESTILOS PARA PRODUTOS RELACIONADOS - IGUAL CATEGORIA.PHP */
.related-products {
    margin-top: 80px;
}

.related-products .product-card {
    border: none;
    border-radius: calc(var(--border-radius) * 1.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.related-products .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.related-products .product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.related-products .product-card:hover::before {
    opacity: 0.05;
}

.related-products .product-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.related-products .product-card:hover .product-img {
    transform: scale(1.1);
}

.related-products .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.related-products .product-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.related-products .product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
    line-height: 1.5em;
}

.related-products .product-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-products .product-price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.related-products .promo-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-products .product-price-promo {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.4rem;
    white-space: nowrap;
}

.related-products .product-price-original {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1rem;
    white-space: nowrap;
}

.related-products .product-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
    white-space: nowrap;
}

.section-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Modal para zoom da imagem - CORRIGIDO */
#imageModal .modal-dialog {
    max-width: 95vw;
    width: 95vw;
    height: 95vh;
    margin: 2.5vh auto;
}

#imageModal .modal-content {
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    border: none;
}

#imageModal .modal-body {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: var(--border-radius);
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    filter: none !important;
    opacity: 1 !important;
    background-color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Estilos para navegação do modal de imagem */
.btn-nav-prev,
.btn-nav-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-nav-prev:hover,
.btn-nav-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-nav-prev i,
.btn-nav-next i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Contador de imagens */
#imageModal .badge {
    font-size: 0.9rem;
    border-radius: 20px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
}

/* Botão fechar customizado */
#imageModal .btn-close {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 1;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#imageModal .btn-close::before {
    content: "×";
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

#imageModal .btn-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

#imageModal .btn-close:hover::before {
    color: #000;
}

/* Estilos para as opções adicionais */
.options-card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: white;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(0,0,0,0.05);
}

.option-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.option-item {
    margin-bottom: 12px;
    padding: 12px;
    border-radius: var(--border-radius);
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.option-item:hover {
    background-color: #e9ecef;
}

.option-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Estilos para os tamanhos - CORRIGIDOS */
.tamanho-option {
    cursor: pointer;
    position: relative;
}

.tamanho-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    background-color: white;
}

.tamanho-option input:checked + .tamanho-box {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tamanho-option:hover .tamanho-box {
    border-color: var(--accent-color);
    background-color: rgba(0, 123, 255, 0.1);
    transform: scale(1.02);
}

/* Garantir que apenas um radio button por grupo possa ser selecionado */
.tamanho-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tamanho-option input:focus + .tamanho-box {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Estilo para o formulário */
.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-control {
    border-radius: var(--border-radius);
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-color-rgb), 0.1);
}

/* Alertas personalizados */
.alert {
    border-radius: var(--border-radius);
}

/* Seção de garantia */
.guarantee-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Estilos para o modal de opções */
.modal-options .modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.modal-options .modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 25px;
}

.modal-options .modal-title {
    font-weight: 600;
    color: var(--secondary-color);
}

.modal-options .modal-body {
    padding: 25px;
}

.modal-options .modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 20px 25px;
}

.emoticon-btn {
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.emoticon-btn:hover {
    transform: scale(1.1);
}

/* Estilos para lista de desejos */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.toast-container {
    z-index: 1055;
}

#wishlistBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#wishlistBtn .text-danger {
    color: #dc3545 !important;
}

.toast {
    min-width: 300px;
}

/* NOVO: Destaque para campos obrigatórios - CORRIGIDO */
.required-field-highlight {
    position: relative;
    padding: 15px;
    border: 2px solid #dc3545;
    border-radius: var(--border-radius);
    background-color: rgba(220, 53, 69, 0.05);
    animation: pulse-red-container 2s infinite;
}

.required-field-highlight::before {
    content: '⚠️ Campo obrigatório';
    position: absolute;
    top: -12px;
    left: 15px;
    background-color: #dc3545;
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

@keyframes pulse-red-container {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
        border-color: #dc3545;
    }
    70% {
        box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
        border-color: #dc3545;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
        border-color: #dc3545;
    }
}

/* Estilo adicional para melhor feedback visual */
.required-message {
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.required-message i {
    margin-right: 5px;
}

/* Estilo para modals */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 25px;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 20px 25px;
}

.wizard-progress {
    padding: 20px 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #6c757d;
    transition: all 0.3s ease;
    z-index: 2;
}

.wizard-step-label {
    margin-top: 10px;
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wizard-step-line {
    height: 3px;
    background-color: #dee2e6;
    flex: 1;
    margin: 0 -10px;
    margin-top: -25px;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Estado Ativo */
.wizard-step.active .wizard-step-circle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 4px rgba(var(--accent-color-rgb), 0.2);
}

.wizard-step.active .wizard-step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Estado Completado */
.wizard-step.completed .wizard-step-circle {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.wizard-step.completed .wizard-step-circle::before {
    content: "✓";
    font-size: 1.5rem;
}

.wizard-step.completed .wizard-step-label {
    color: #28a745;
}

.wizard-step.completed + .wizard-step-line {
    background-color: #28a745;
}

/* Animação de transição */
.wizard-content {
    animation: fadeIn 0.3s ease-in;
}

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

/* Efeito Hover nos Steps */
.wizard-step:hover .wizard-step-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.wizard-step.completed:hover .wizard-step-circle,
.wizard-step.active:hover .wizard-step-circle {
    transform: scale(1.1);
}

/* Melhorias visuais para os campos */
.wizard-content .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--accent-color-rgb), 0.25);
}

/* Botões do footer com animação */
.modal-footer button {
    transition: all 0.3s ease;
}

.modal-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Resumo com bordas estilizadas */
#resumo-tamanhos, #resumo-gravacao {
    padding: 10px;
    background-color: rgba(var(--accent-color-rgb), 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

/* Animação de pulso para campos obrigatórios */
@keyframes pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.required-field-highlight {
    border: 2px solid #dc3545 !important;
    border-radius: var(--border-radius);
    padding: 15px;
    background-color: rgba(220, 53, 69, 0.05);
    animation: pulse 0.5s ease-in-out;
}

/* Indicador de loading */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilo para tamanhos selecionados */
.tamanho-box.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

 /* Estilos para o modal da Guia de Tamanho */
.guia-tamanho-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: var(--border-radius);
}

.btn-outline-info {
    color: #0dcaf0;
    border: 2px solid #0dcaf0;
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 10px 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline-info:hover {
    background-color: #0dcaf0;
    color: white;
    transform: translateY(-2px);
}

/* Estilo para campos obrigatórios não preenchidos */
.required-field-highlight {
    border: 2px solid #dc3545 !important;
    border-radius: var(--border-radius);
    padding: 15px;
    background-color: rgba(220, 53, 69, 0.05);
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Animação para loading */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para os containers de emoticons */
.emoticons-container {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 15px;
    border: 1px solid #dee2e6;
}

.emoticons-container .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

/* Melhorar aparência dos botões de emoticon */
.emoticon-btn {
    font-size: 1.2rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    min-width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoticon-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

/* Layout responsivo para os campos lado a lado */
@media (max-width: 768px) {
    .emoticons-container {
        margin-top: 10px;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price {
        font-size: 1.6rem;
    }
    
    .tamanho-box {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .product-details {
        padding: 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Modal de imagem responsivo */
    #imageModal .modal-dialog {
        max-width: 100vw;
        width: 100vw;
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    #imageModal .modal-content {
        border-radius: 0;
        height: 100vh;
    }
    
    .btn-nav-prev,
    .btn-nav-next {
        width: 40px;
        height: 40px;
    }
    
    .btn-nav-prev {
        left: 10px !important;
    }
    
    .btn-nav-next {
        right: 10px !important;
    }
    
    #imageModal .btn-close {
        width: 35px;
        height: 35px;
        top: 10px !important;
        right: 10px !important;
    }
    
    #imageModal .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .wizard-step-label {
        font-size: 0.75rem;
    }
    
    .wizard-step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .wizard-step-line {
        margin: 0 -5px;
    }
    
    .modal-footer {
        flex-wrap: wrap;
    }
    
    .modal-footer button {
        margin: 5px 0;
    }
    
    .guia-tamanho-iframe {
        height: 400px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}