body {
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Fondo blanco */
    color: #121212; /* Texto oscuro */
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
}

.container {
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
}

.render {
    width: 250px;
    max-width: 80%;
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-button a {
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #25D366;
    text-decoration: none;
    border: 3px solid #25D366;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 1;
    background-color: #fff;
}

.cta-button a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Border animation */
.cta-button a::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(#25D366, #fff, #25D366, #fff);
    animation: rotate 3s linear infinite;
    z-index: 0;
    opacity: 0.5;
}

.cta-button a::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50px;
    z-index: 1;
}

.cta-button a span, .cta-button a img {
    position: relative;
    z-index: 2;
}

.cta-button a:hover {
    background-color: #25D366;
    color: #198a42;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}