/* CSS RESET */

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

body {
    font-family: Verdana;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.cabecalho{
    width:100%;
    min-height:700px;
    background-image:url("/images/Homeplantas.png");
    background-size:cover;
    background-position:center;
    color:#FFF;
}


/* MENU */

.menu{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 80px;
}

.menu ul{
    list-style:none;
    display:flex;
    gap:25px;
}

.menu a{
    font-size: 20px;
    text-decoration:none;
    color:white;
    font-weight:bold;
}

.menu a:hover{
    opacity:0.7;
}


/* TEXTO DO CABEÇALHO */

.texto_cabecalho{
    max-width:700px;
    margin:150px 0 0 80px;
    font-size:25px;
}

.texto_cabecalho h2{
    font-size:45px;
    margin-bottom:20px;
}

.texto_cabecalho p{
    line-height:1.6;
}


/* SEÇÃO CUIDADOS */

.cuidados{
    background:#4f6f5d;
    color:white;
    text-align:center;
    padding:70px 100px;
    font-size:25px;
}

.cuidados h2{
    margin-bottom:20px;
}

.cuidados p{
    margin-bottom:30px;
}


/* CARDS */

.cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:40px;
}

.card{
    background:white;
    color:#333;
    padding:25px;
    width:260px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    text-align:center;
}

.card img{
    width:40px;
    margin-bottom:10px;
}

/* SEÇÃO ESPÉCIES */

.especies{
    background:#a8c08f;
    text-align:center;
    padding:70px 40px;
    color:#FFF;
}

.especies h2{
    margin-bottom:10px;
    font-size:35px;
}

#sub_titulo{
    font-size: 25px;
    color:#FFF;
    margin-bottom:40px;
}

.especies h3{
    color:#252424;
    text-align:center;
    margin:10px 0;
    font-size: 25px;
}

.especies p{
    margin:0 10px 15px 10px;
    color:#677E73;
}


/* PLANTAS */

.plantas{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.planta{
    display: block;
    width: 30%;
    background:white;
    width:410px;
    border-radius:10px;
    overflow:hidden; /* recorta o conteúdo que excede */
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.planta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.planta img{
    width:100%;
    height:auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.planta h3{
  margin-bottom: 10px;
  color: #49785e;
}

.planta p{
    font-size: 25px;
    margin:0 10px 15px 10px;
}


/* MANUSEIO E CUIDADOS GERIAS */

.manuseio{
    background:#F2EDE3;
    text-align:center;
    padding:70px 20px;
}

.manuseio h2{
    margin-bottom:10px;
    font-size: 35px;
}

.manuseio p{
    margin-bottom:30px;
    font-size: 25px;
}

.dicas{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.dica{
    color: #677E73;
    background:white;
    padding:25px;
    width:320px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.dica h3{
    font-size: 30px;
    margin-bottom:10px;
    color: #000;
    margin-top: 10px;
}


/* RODAPÉ */

.rodape {
  background-color: #49785e; 
  color: #FFF;                 
  padding: 40px 20px;             
  text-align: center;             
}

.rodape h1 {
  font-size: 35px;
  margin-bottom: 12px;
}

.rodape p {
  font-weight: 400;
  font-size: 25px;
  max-width: 480px;
  margin: 0 auto;
}