body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container-image-header {
    display: flex;
    justify-content: center;
}

.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: 7px;
    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: #1b7e3f;
    color: #fff;
    border: none;
    padding: 10px 15vw;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}

.blur {
    filter:blur(4px);
}

.clone-btn:hover {
    background: #1ebd57;
}

.pulse-button {
    /* Button default styles, customize them to match your button */
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #06800c;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    
    /* Apply the pulse animation */
    animation: pulse 1s infinite;
  }
  
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

.disclaimer {
    font-size: 14px;
    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;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    height: 120px;
}

.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;
}

.fa-brands, .fa-desktop {
    color: #06800c;
    align-self: center;
}


.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;
}

.emoji-container {
    border-radius: 50px;
    border-style: 3px solid;
    margin-top: 50px;
    height: 1vh;
}

.user-comment-actions {
    margin-top: 30px;
}

.container-main-plataformas {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    height: 80px;
}