/* ======== HEADER ======== */
body{
  font-family: Arial, Helvetica, sans-serif;
  background:var(--bg);
  margin:8px;
  color:var(--neutral);
}

.home-header {

    text-align: center;

    padding: 40px 20px;

    -webkit-text-stroke: 0.1px black;

}

.home-main-title {

    font-size: 2.5rem;

    font-weight: 800;

    color: #0078d7;

}

 @media (max-width: 768px) {
 .home-main-title {
 
    font-size: 30px;
 }

 }


.home-solucoes-section {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    box-sizing: border-box;
}

.home-solucoes-titulo {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #222;
}

@media (max-width: 768px) {
 .home-solucoes-titulo {
 
    font-size: 23px;
 }

 }

.home-solucoes-texto {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    
}

@media (max-width: 768px) {
 .home-solucoes-texto {
 
    font-size: 13px;
 }

 }


/* ======== SEÇÃO CALCULADORAS ======== */

.home-calculadoras-section {

    padding: 20px;

    text-align: center;

}

.home-calculadoras-titulo {

    font-size: 1.4rem;

    justify-content: center;

    color: #000000;

    margin-bottom: 40px;

}




/* ======== CARDS ======== */

.home-cards-container {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

}

.home-card {

    width: 230px;

    background: #ffffff;

    border-radius: 12px;

    padding: 15px;

    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);

    cursor: pointer;

    transition: 0.3s ease;

}

.home-card:hover {

    transform: scale(1.05);

}

.home-card-img {

    width: 100%;

    height: 140px;

    object-fit: cover;

    margin-bottom: 10px;

    margin-top:0%;

    border-radius: 12px; 

}

.home-card-text {

    font-size: 1rem;

    color: #000000;

    font-weight: 600;

}

/* ======== MOBILE ======== */

@media (max-width: 768px) {

    .home-cards-container {

        flex-direction: column;

        align-items: center;

    }

}

/* ======== INFORMATIVO ======== */

/* SEÇÃO INFORMATIVA DA HOME */
.home-informativo-section {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Título */
.titulo-texto-info {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    margin-top: 70px;
    line-height: 1.3;
}

/* Texto */
.home-informativo-texto {
    text-align: left;         /* Texto tradicional esquerda → direita */
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 20px;
  
}


/* Opção para deixar mais elegante em telas grandes */
@media (min-width: 900px) {
    .home-informativo-texto {
        font-size: 19px;
        line-height: 1.75;
    }


   
    .titulo-texto-info {
        font-size: 30px;
    }
}

 @media (max-width: 768px) {
 .home-informativo-texto {
font-size: 13px;


 }

    .titulo-texto-info {
        font-size: 20px;
     }


 }

