
body {
    font-family: 'Poppins', sans-serif;
    background-color: #d5d5d5;
}

a{
    text-decoration: none;
}

/* Image Header */
.image-header {
    position: relative;
    padding: 15px;
}

.service-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 25px;
}

.top-button {
    position: absolute;
    top: 25px;
    background: #d5d5d5;
    color: #1c1c1c;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}

.back-btn {
    left: 25px;
}

.cart-btn {
    right: 25px;
}

/* Content */
.content-area {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    margin-top: -30px;
    padding: 20px;
    width: 95%;
    margin: auto;
}

.service-title {
    font-weight: 600;
    font-size: 18px;
}

.counter-box {
    background: #f2f2f2;
    border-radius: 12px;
    padding: 5px 10px;
}

.counter-box i {
    cursor: pointer;
    font-size: 12px;
}

.info-icons {
    font-size: 13px;
    color: #777;
}

.info-icons i {
    color: #affc18;
    margin-right: 5px;
}

.description-title {
    font-weight: 600;
    margin-top: 15px;
}

.description-text {
    font-size: 13px;
    color: #1c1c1c;
}

/* Bottom Buttons */
.bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 15px;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.05);
}

.btn-chat {
    border: 2px solid #f39c12;
    color: #f39c12;
    border-radius: 30px;
}

.btn-buy {
    background: #f39c12;
    color: white;
    border-radius: 30px;
}





/* ===========================
   AFFILIATE CARD
=========================== */

.affiliate-card {

    max-width: 100%;

    background: rgba(255, 255, 255, 0.5);

    padding: 22px;

    border-radius: 22px;

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.06);

    transition: 0.3s;

}

/* Hover Card */

.affiliate-card:hover {

    transform: translateY(-3px);

    box-shadow: 
        0 14px 30px rgba(0,0,0,0.08);

}

/* Title */

.affiliate-title {

    font-weight: 600;

    font-size: 18px;

    margin-bottom: 6px;

}

/* Text */

.affiliate-text {

    font-size: 13px;

    color: #1c1c1c;

    margin-bottom: 10px;

}

/* Feedback Copiado */

.copy-feedback {

    position: absolute;
    top: 4.5rem;
    right: 3rem;
    font-size: 12px;

    color: #28a745;

    margin-top: 6px;

    display: none;

    font-weight: 500;

    opacity: 0;

    transform: translateY(-5px);

    transition: 0.3s;

    

}

/* Mostrar mensagem */

.copy-feedback.show {

    display: block;

    opacity: 1;

    transform: translateY(0);

}

/* ===========================
   BUTTONS
=========================== */

.affiliate-btn-copy {

    border-radius: 30px;

    border: 2px solid #1c1c1c;

    color: #1c1c1c;

    font-weight: 500;

    transition: 0.25s;

}

.affiliate-btn-copy:hover {

    background: #affc18;

    color: #1c1c1c;

    transform: scale(1.02);

}

/* BUY BUTTON */

.affiliate-btn-buy {

    border-radius: 30px;

    background: #affc18;

    color: #1c1c1c;

    font-weight: 500;

    transition: 0.25s;

}

.affiliate-btn-buy:hover {

    background: #1c1c1c;

    color: #affc18;
    border: solid 2px #1c1c1c;

    transform: scale(1.02);

}

/* Copy message */

.copy-message {

    display: none;

    color: #28a745;

    font-size: 12px;

    margin-top: 8px;

}