/* Configurações Globais */
.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #01191d;
    background-color: #f4f4f4;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
      
}

/* Espaços reservados para imagens */
.image-placeholder {
    background-color: transparent;
  
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: bold;
    border-radius: 8px;
}

/* Cabeçalho */
.header {
    background: #997f48;
  
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#titu_cabecalho{
    color:#ffffff;
}

.logo {
   
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo img {
     width: 200px;
    
    
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    font-family: "Pacifico", cursive;
    font-size: larger;
  font-weight: 400;
  font-style: normal;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.nav ul li a:hover {
    color: #fcfcfd;
}

/* Seção Hero */
.hero {
    width: 100vw;
   
    padding: 80px 0;
    background: #e0f3ab;
     background-image: url(img/fundo2.jpg) ;
     background-size: cover;
   background-repeat: no-repeat;
}

.hero .container {
    height: 254px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.main-image {
    height: 350px;
    width: 100%;
}

.main-image img{
    height: 320px;
}

/* Seção de Features/Cards */
.features {
    padding: 60px 0;
   background-color: #011f1f;
}

.features h1{
    margin-left: 100px;
    margin-bottom: 50px;
    color: #997f48;
   
}

.features .container {
    height: 200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.feature-card h1{
    color: #997f48;
    font-size: larger;
}

.card-img {
    height: 180px;
    margin-bottom: 15px;
}

/* Rodapé */
.footer {
    height: 300px;
    background: #000000;
    

    color: #fff;
    padding: 40px 0;
    text-align: center;
    
}

.footer .social-links {
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.footer .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 0.9rem;
}
#contatos{
    height: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    vertical-align: middle;
}

#contatos p{
    margin-left: 10px;
}
#contatos a{
    text-decoration: none;
}
#assinatura{
    font-size: small;
}

/* Responsividade Básica */
@media (max-width: 800px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features h1{
        margin-top: 200px;
    margin-left: 100px;
    margin-bottom: 50px;
    color: #997f48;
   
}
#cabecalho  {
    display: flex;
    flex-direction:column;
    align-items:flex-start;
    margin-left: 3px;
}
.nav ul {
    display: flex;
    flex-direction:row;
    margin-left: 3px;
}

.nav ul li {
    margin-left: 10px;
}
 
}