/* app.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* conversas.css */
.container-header-wasoftware.main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: green;
    align-items: center;
    height: 5vh;
}

.container-subheader-conversas {
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 10px;
}

.container-subheader-arquivadas.blocked {
    display: flex;
    justify-content: space-around;
    background-color: lightgrey;
    padding: 10px;
}

.container-footer {
    display: flex;
    justify-content: space-around;
    background-color: green;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.container-footer i {
    color: white;
}

/* home.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #075E54;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.icons span {
    margin-left: 5px;
}

.clone-section, .processing-section {
    text-align: center;
    padding: 20px;
}

.phone-icon, .processing-icon {
    width: 100px;
    margin: 20px 0;
}

h1 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.country-code {
    background: #eee;
    padding: 10px;
    border-radius: 5px 0 0 5px;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0 5px 5px 0;
    flex: 1;
}

.clone-btn {
    background: #026626;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.clone-btn:hover {
    background: #173f26;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.platform-icons span {
    display: inline-block;
    margin: 10px;
    font-size: 18px;
}

.stats-section {
    text-align: center;
    padding: 20px;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 20px;
}

.stats-section .highlight {
    font-weight: bold;
    color: #333;
}

.comments-section {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.comments-section h2 {
    font-size: 16px;
    margin-bottom: 20px;
}

.comment-input {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.comment-input img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.comments {
    margin-top: 20px;
}

.comment {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.comment img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment p {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    flex: 1;
}

.comment-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.comment-actions button {
    background: none;
    border: none;
    color: #075E54;
    cursor: pointer;
    margin-right: 10px;
}

.comment-actions span {
    color: #999;
    font-size: 12px;
}

.progress-bar {
    width: 100%;
    background: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    margin: 20px 0;
    position: relative;
}

.progress {
    height: 100%;
    background: #25D366;
    border-radius: 5px;
}

.steps-section {
    background: #e0f7fa;
    padding: 20px;
    border-radius: 10px;
}

.steps-section ul {
    list-style: none;
    padding: 0;
}

.steps-section li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.steps-section li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* midia.css */
.container-contato-midias {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.media-item {
    margin: 10px;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.media-item img, .media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(7px);
}

/* mensagens.css */
.container-mensagens-main {
    padding: 20px;
    background-color: #f4f4f4;
}

.message {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.message.sent {
    justify-content: flex-end;
}

.message.received {
    justify-content: flex-start;
}

.message .message-content {
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message.sent .message-content {
    background-color: #dcf8c6;
}

.message.received .message-content {
    background-color: #fff;
}

.message img, .message video {
    filter: blur(10px);
}

/* processando.css */
.processing-section {
    text-align: center;
    padding: 20px;
}

.processing-icon {
    width: 100px;
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    background: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    margin: 20px 0;
    position: relative;
}

.progress {
    height: 100%;
    background: #25D366;
    border-radius: 5px;
}

.steps-section {
    background: #e0f7fa;
    padding: 20px;
    border-radius: 10px;
}

.steps-section ul {
    list-style: none;
    padding: 0;
}

.steps-section li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.steps-section li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #1c1e21;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.container-image-header img {
    width: 350px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    align-content: center;
}

.clone-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.clone-section h1 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.country-code {
    padding: 10px 15px;
    background-color: #f0f2f5;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}

#phone-number-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 5px 5px 0;
    flex: 1;
}

.clone-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.clone-btn:hover {
    background-color: #1ebd55;
}

.disclaimer {
    font-size: 12px;
    color: #777777;
    margin-top: 10px;
}

.platform-icons {
    margin-top: 15px;
}

.platform-icons span {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    color: #555555;
}

.stats-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.stats-section p {
    font-size: 16px;
    color: #333333;
}

.highlight {
    font-size: 18px;
    color: #25d366;
}

.container-footer-home-comments {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.container-footer-home-comments h2 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
}

.container-footer-home-comments-input {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #f0f2f5;
    padding: 10px;
    border-radius: 30px;
}

.container-footer-home-comments-input-01 {
    display: flex;
    align-items: center;
}

.container-footer-home-comments-input-01 img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.container-footer-home-comments-input-01 input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 30px;
    background-color: #f0f2f5;
}

.container-footer-home-comments-list {
    display: flex;
    flex-direction: column;
}

.comment-main {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.user-comment-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-comment-user-main {
    background-color: #f0f2f5;
    padding: 10px;
    border-radius: 10px;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    position: relative;
}

.user-comment-user-main strong {
    color: #1877f2;
    font-size: 14px;
}

.user-comment-actions {
    display: flex;
    align-items: center;
    margin-top: 15px; /* Ajuste da margem superior */
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.emoji-container {
    cursor: pointer;
    margin-right: 10px;
    font-size: 18px;
}

.user-comment-actions span {
    color: #777777;
    font-size: 12px;
}
