* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #FFFFFF;
    color: #111111;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
}

.logo {
    width: auto;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.content {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 16px;
    line-height: 1.3;
}

.content p {
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    margin-bottom: 24px;
    line-height: 1.5;
}

.highlight {
    color: #1FBF63;
    font-weight: 600;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    background-color: #1FBF63;
    color: #FFFFFF;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 191, 99, 0.3);
    width: 100%;
    max-width: 320px;
}

.whatsapp-button:hover {
    background-color: #0D7A1E;
    box-shadow: 0 6px 16px rgba(13, 122, 30, 0.4);
    transform: translateY(-2px);
}

.whatsapp-button:active {
    transform: translateY(0);
}

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

.divider {
    width: 60px;
    height: 3px;
    background-color: #1FBF63;
    margin: 16px auto 24px auto;
}

@media (max-width: 480px) {
    .container {
        padding: 16px;
    }

    .logo {
        width: auto;
        max-width: 120px;
    }

    .content h1 {
        font-size: 24px;
    }

    .content p {
        font-size: 15px;
    }

    .whatsapp-button {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 12px;
    }

    .logo {
        width: auto;
        max-width: 100px;
    }

    .content h1 {
        font-size: 20px;
    }

    .content p {
        font-size: 14px;
    }

    .whatsapp-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}
