body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFEEF5;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Link Home */
.home-link-container {
    text-align: left;
    margin-bottom: 20px;
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e06d84;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(224, 109, 132, 0.3);
}

.home-link:hover {
    background-color: #d05a71;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 109, 132, 0.4);
}

.home-icon {
    font-size: 1.1em;
}

.home-text {
    font-family: 'Quicksand', sans-serif;
}

h1, h2 {
    color: #FF66A5;
}

section {
    margin-bottom: 30px;
}

.button-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.exemplo {
    background-color: #FFF4FA;
    padding: 10px;
    border-left: 5px solid #FF66A5;
    margin: 10px 0;
}

/* Estilos do Rodapé */
footer {
    background-color: #ffe9ec;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #555;
}

/* Estilos dos Modais */
.feedback-modal-bg, .feedback-thanks-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.feedback-modal, .feedback-thanks-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    max-width: 500px;
    width: 90%;
    display: none;
}

.feedback-modal.aberto, .feedback-thanks-modal.aberto {
    display: block;
}

.feedback-modal-content, .feedback-thanks-modal-content {
    position: relative;
}

.close-feedback-modal, .feedback-close-thanks {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #e06d84;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.feedback-title {
    color: #e06d84;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.feedback-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #4a4a4a;
}

.feedback-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}

.feedback-stars span {
    font-size: 24px;
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
}

.feedback-stars span.selected,
.feedback-stars span.hover {
    color: #ffd700;
}

.feedback-stars span:not(.selected):not(.hover) {
    color: #ddd;
}

.feedback-nps {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback-nps span {
    width: 35px;
    height: 35px;
    border: 2px solid #e06d84;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: #e06d84;
    transition: all 0.2s;
}

.feedback-nps span.selected, .feedback-nps span:hover {
    background: #e06d84;
    color: white;
}

.feedback-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 2px solid #ffd6dc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
}

.feedback-submit {
    background: #e06d84;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
}

.feedback-submit:hover {
    background: #d05a71;
}

/* Modal de Termos */
.termos-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.termos-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    display: none;
}

.termos-modal.aberto, .termos-modal-bg.aberto {
    display: block;
}

.termos-modal-content {
    position: relative;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Responsividade */
@media (max-width: 600px) {
    .home-link {
        padding: 8px 14px;
        font-size: 0.9em;
    }
    
    .home-text {
        display: none;
    }
    
    .home-icon {
        font-size: 1.2em;
    }
    
    .feedback-modal-content, .feedback-thanks-modal-content {
        padding: 20px;
    }
    
    .feedback-title {
        font-size: 1.3em;
    }
    
    .feedback-label {
        font-size: 0.9em;
    }
    
    .feedback-stars {
        gap: 3px;
    }
    
    .feedback-nps span {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }
    
    .termos-modal-content {
        padding: 15px;
    }
    
    .close-termos-modal {
        top: 8px;
        right: 12px;
        font-size: 1.5em;
    }
}

/* Botões Flutuantes */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    font-size: 0.9em;
}

.share-float {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
}

.share-float.left {
    left: 20px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #e06d84;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9em;
    box-shadow: 0 4px 12px rgba(224, 109, 132, 0.3);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: #d05a71;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 109, 132, 0.4);
}

.share-icon {
    font-size: 1.1em;
}

/* Modal de Compartilhamento */
.share-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.share-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    max-width: 400px;
    width: 90%;
    display: none;
}

.share-modal.aberto {
    display: block;
}

.share-modal-content {
    position: relative;
}

.close-share-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #e06d84;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.share-modal h3 {
    color: #e06d84;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3em;
}

#share-link {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffd6dc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.share-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.copy-link-btn {
    background: #e06d84;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9em;
}

.copy-link-btn:hover {
    background: #d05a71;
}

.whatsapp-share-btn {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9em;
    display: inline-block;
}

.whatsapp-share-btn:hover {
    background: #128C7E;
}

.share-copied-msg {
    text-align: center;
    color: #25D366;
    font-weight: bold;
    margin-top: 10px;
}

/* Responsividade dos botões flutuantes */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .share-float.left {
        left: 15px;
    }
    
    .whatsapp-btn {
        padding: 10px 14px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .share-btn {
        padding: 10px 14px;
    }
    
    .share-btn span:not(.share-icon) {
        display: none;
    }
    
    .share-modal {
        padding: 20px;
    }
    
    .share-modal-actions {
        flex-direction: column;
    }
} 