/* Botões */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-revexa-red);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-revexa-red-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-gray-light);
}

.btn-outline:hover {
    border-color: var(--color-revexa-red);
    color: var(--color-revexa-red);
}

/* Inputs de Formulário */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--color-revexa-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

/* Cards de Produto */
.product-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.product-image-container {
    width: 100%;
    height: 250px;
    background: rgba(0,0,0,0.02);
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items:center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-image-container {
        height: 180px;
    }
}

.product-image {
    transition: transform 0.5s ease;
}

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

.product-media-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(227, 6, 19, 0.15);
    color: var(--color-revexa-red);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: all 0.3s ease;
}

.product-card:hover .product-media-badge {
    background: var(--color-revexa-red);
    color: var(--color-white);
    transform: scale(1.1);
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

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