/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Declarações @font-face para Museo Sans */
@font-face{
    font-family: "Museo Sans Regular";
    src: url("e70e707b3caa577ee8616a665b26a9da.eot");
    src: url("e70e707b3caa577ee8616a665b26a9da.eot?#iefix")format("embedded-opentype"),
        url("e70e707b3caa577ee8616a665b26a9da.woff")format("woff"),
        url("e70e707b3caa577ee8616a665b26a9da.woff2")format("woff2"),
        url("e70e707b3caa577ee8616a665b26a9da.ttf")format("truetype"),
        url("e70e707b3caa577ee8616a665b26a9da.svg#Museo Sans Regular")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

body {
    font-family: 'Museo Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Seção Hero */
.hero {
    width: 100%;
    height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logosobre {
	max-width: 350px;
    width: 100%;
    height: auto;
	text-align: center;
	margin: auto;
	margin-bottom:  50px;
	display: block;
}

.icone-img {
	max-width: 56px;
    width: 100%;
    height: auto;
	text-align: center;
	margin: auto;
	margin-bottom:  10px;
	display: block;
}

.icone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #2e4e4b;
  transition: all 0.3s ease;
}

.icone i {
  font-size: 2rem;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.icone span {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.icone:hover i {
  color: #98cb5a;
  transform: scale(1.1);
}

.icone:hover span {
  color: #98cb5a;
}

.slogan {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    line-height: 1.3;
	letter-spacing: 1px;
	margin-top: 30px;
}

/* Seção Sobre */
.about {
    width: 100%;
    padding: 80px 20px;
    background-color: #e8dcc8;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2rem;
    color: #2d4e4b;
    margin-bottom: 30px;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    color: #2d4e4b;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.about strong {
    color: #2d4e4b;
    font-weight: 700;
}

/* Seção de Contato */
.contact {
    width: 100%;
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2rem;
    color: #2d4e4b;
    margin-bottom: 50px;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2d4e4b;
    margin-bottom: 15px;
}

.contact-item a {
    font-size: 1.1rem;
    color: #2d4e4b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.contact-item a:hover {
    color: #45a049;
    border-bottom: 2px solid #45a049;
}

/* Rodapé */
footer {
    width: 100%;
    padding: 20px;
    background-color: #2d4e4b;
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
}


/* Seção Tipos de Grama */
.grass-types {
    width: 100%;
    padding: 80px 20px;
    background-color: #f5f5f5; /* Cor de fundo similar à de Contato para alternar */
    text-align: center;
}

.tagline {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding-bottom: 20px;
    border-bottom: 2px solid #2d4e4b;
    display: inline-block;
}

.tagline h2 {
    font-size: 1.8rem;
    color: #2d4e4b;
    font-weight: 600;
}

.grass-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.grass-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grass-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.grass-column h3 {
    font-size: 1.5rem;
    color: #2d4e4b;
    margin-bottom: 15px;
}

.highlights {
    margin-bottom: 15px;
    color: #2d4e4b;
    min-height: 50px; /* Garante alinhamento mesmo com 1 ou 2 destaques */
	
}

.highlights p {
    margin-bottom: 5px;
}

.highlights strong {
    font-weight: 600;
}

.description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
	text-align: left;
}

.contact {
    background-color: #e8dcc8; /* Trocando a cor para criar contraste */
}

/* Seção Tagline com Fundo */
.tagline-section {
    width: 100%;
    padding: 60px 20px;
    background-image: url('background.jpg'); /* Mesma imagem do hero */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito parallax */
    position: relative;
    text-align: center;
}

.tagline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Sobreposição para escurecer */
    z-index: 1;
}

.tagline-content {
    position: relative;
    z-index: 2;
}

.tagline-content h2 {
    font-size: 2.5rem;
    color: #ffffff; /* Cor do texto alterada para branco */
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}



/* Responsividade */
@media (max-width: 768px) {
    .slogan {
        font-size: 1.8rem;
    }

    .logo {
        max-width: 200px;
    }

    .about h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .about p {
        font-size: 1rem;
        text-align: left;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero::before {
        background-color: rgba(0, 0, 0, 0.4);
    }
	
	.grass-content {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
        gap: 50px;
    }

    .tagline h2 {
        font-size: 1.5rem;
    }
	
	
	
}

@media (max-width: 480px) {
    .slogan {
        font-size: 1.4rem;
    }

    .logo {
        max-width: 150px;
    }

    .about,
    .contact {
        padding: 40px 15px;
    }

    .about h2,
    .contact h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 0.95rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item a {
        font-size: 1rem;
    }
	
	.grass-content {
        grid-template-columns: 1fr; /* 1 coluna em celulares */
        gap: 40px;
    }

    .grass-types {
        padding: 40px 15px;
    }

    .tagline {
        margin-bottom: 40px;
    }

    .tagline h2 {
        font-size: 1.3rem;
    }
	
}

