body {
    margin: 0px;
    padding: 0px;
    /* Adicione box-sizing para uma melhor gestão de layout */
    box-sizing: border-box; 
    overflow-x: hidden;
}

.cardtest-grid {
      display: grid;
    grid-template-columns: 1fr 1fr ; /* one value for each column */
    padding: 0 20px;
   min-height: fit-content; 
   height: 700px;
   align-items: center;
   gap: 30px;
    max-width: 1200px;
   margin: 40px auto;
   width: 1000px;
}




.wrapper {

    display:grid;
    justify-content: center;
min-width: 1024px;
width: 100%;

height: fit-content;
    
    
    background-color:#1e1e1e;
}

/* Header */

/* .header {
    
    text-align: center;

}

.header span {
    display:inline;
}
*/

.cards {

    width: 600px;
    height: fit-content;
   margin:64px;
}

.cards1 {

    width: 1920px;
   
    
    height: fit-content;
    margin-bottom: 64px;
    margin-top: 64px;
}

/* Section 1 */


.section1 {
    display:grid;
    justify-content: center;
    text-align: center;
    max-width: 1920px;
    width: 100%;
   background: #000000;
background: linear-gradient(102deg,rgba(0, 0, 0, 1) 0%, rgba(0, 221, 0, 1) 33%, rgba(0, 0, 0, 1) 69%, rgba(0, 221, 0, 1) 100%);
    max-height: 1920px;
    height: fit-content;
    text-align: center;
}

.section1 a {
color:#ffffff;

}


.section1 h2 {
    max-width: 600px;
    color: #ffffff;
    font-family: 'montserrat', sans-serif;
    margin: auto;
    padding: 16px;
}


.section1 h3 {  
    max-width: 600px;
    font-size: 14px;
    color: #ffffff;
    font-family: 'montserrat' , sans-serif;
    margin:auto;
}

.section1 p {
    font-family: 'montserrat', sans-serif;
    color: #ffffff;
    font-size: 14px;
    max-width: 600px;
    margin: auto;}

.section1 img {
    height:300px;
    width:300px;
    border-radius: 50%;
    margin: 16px;
}



/* Section 2 */

.section2 {         
Display: grid;
justify-content: center;
background-color: #1e1e1e;
height:fit-content;
width: 100%;
padding-top: 32px;
padding-bottom: 32px;

}

.section2 h3
{ text-align: center;
    font-size: 24px;
font-family: 'montserrat', sans-serif;
color: #ffffff;

}

.section2 img {
max-width: 600px;
    width: 100%; 
    height: auto; 
    display: block; /* Essencial para que o transform funcione corretamente */
    
    /* 1. SUAVIZAÇÃO: Garante que a transição de scale dure 0.3 segundos */
    transition: transform 0.3s ease-in-out; 
    
    /* Opcional: cursor pointer para indicar que é interativo */
    cursor: pointer;

}

.section2 img:hover {
    transform: scale(1.05)
}

/* Section 2 Text */

.section2 p {
    font-family:'montserrat';
    color: #00ff00;
}

.section2 h2 {
    font-family: 'montserrat', sans-serif;
    font-size: 24px;
    color: #ffffff;
}

.section2 h4
{
    font-family: 'montserrat', sans-serif;
    font-size: 12px;
    color: #ffffff;
}

.footer {
    text-align: center;
    width: 100%;
    height: fit-content;
    font-family: 'montserrat', sans-serif;

}

.footer p {
    color: #ffffff;
    font-size: 12px;
    padding: 12px;
}
    
