*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #0d0d0d, #1a1a40);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-blend-mode: overlay;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('fundo2.jpg'); 
    background-size: cover;
    background-position: center;
    filter: blur(8px); 
    z-index: -1; 
    opacity: 0.7; 
}


.content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px; 
    flex: 1;
}


.container {
    max-width: 100px;
    min-width: 700px;
    width: 100%;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1;
    margin-top: 15px;
}


.side-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-bottom: 4px solid #1fc210; 
}

.Logo{
    max-width: 550px;
    width: 70%;
    height: auto;
    border-radius: 12px;
}

.hero-section {
    padding-bottom: 20px;
}
.hero-section h1 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 10px;
    display: block;
    margin-top: -70px;
}
.hero-section p {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 30px;
    
}

.custom {
    display: block; 
    width: 100%;
    padding: 15px;
    background-color: #1fc210;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(55, 90, 127, 0.4);
    transition: all 0.3s ease;
    margin-top: 10px;
    animation: pulse 1.5s infinite;
    text-decoration: none;
    margin-top: -40px;
}
.custom:hover {
    background-color: #0b66cf;
    box-shadow: 0 6px 15px rgba(2, 172, 129, 0.6);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.privacy {
    font-size: 1.4rem;
    color: #808080;
    margin-top: 15px;
}

footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    clear: both;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    align-items: center;
    gap: 10px; 
    margin-top: 1rem;
}

.social-links svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;

}

.social-links a:hover {
    color: #555555;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; 
    }
    
    .container {
        padding: 20px;
        min-width: auto;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .side-image {
        max-width: 100%;
    }
    
    .custom {
        font-size: 1rem;
        padding: 10px;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .container{
        padding: 3px;
        min-height: 22rem;
        min-width: 350px;
    }

    .hero-section h1 {
        font-size: 0.5rem;
    }

    .hero-section p {
        font-size: 0.5rem;
    }
    

    .custom {
        font-size: 0.5rem;
        padding: 10px;
    }

    .privacy {
        font-size: 0.5rem;
    }

    .footer-content p {
        font-size: 10px;
      
    }
    
}