
/* CORES */

:root {
--verde: #3aa39c;
--verde-escuro: #2c7f79;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

/* HEADER */

header {
background: var(--verde);
padding: 15px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
  height: 42px;
  width: auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.voltar {
color: white;
text-decoration: none;
font-weight: 500;
}




/* CONTEÚDO */

.section {
padding: 50px 30px;
max-width: 1100px;
margin: auto;
}

.section h1 {
color: var(--verde);
margin-bottom: 20px;
}
.hero {
position: relative;
height: 520px;
overflow: hidden;
}

.hero img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
background: linear-gradient(
to top,
rgba(0,0,0,0.65),
rgba(0,0,0,0.15)
);
display: flex;
align-items: flex-end;
}
.gallery-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 54px;
height: 54px;
border: none;
border-radius: 50%;
background: rgba(255,255,255,0.18);
backdrop-filter: blur(8px);
color: white;
font-size: 32px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: 0.3s ease;
z-index: 99999;
}

.gallery-nav:hover {
background: rgba(255,255,255,0.28);
}

.gallery-nav.left {
left: 30px;
}

.gallery-nav.right {
right: 30px;
}
.hero-overlay-content {
max-width: 1100px;
width: 100%;
margin: 0 auto;
padding: 50px 30px;
}

.hero-overlay h1 {
color: white;
font-size: 52px;
font-weight: 700;
margin-bottom: 10px;
}

.hero-overlay p {
color: white;
font-size: 20px;
max-width: 600px;
line-height: 1.5;
}
/* ÍCONES */

.itens {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-top: 30px;
}

.item {
display: flex;
align-items: center;
gap: 14px;
background: white;
padding: 16px 20px;
border-radius: 14px;
box-shadow: 0 8px 20px rgba(0,0,0,0.06);
border: 1px solid rgba(58,163,156,0.10);
font-size: 15px;
font-weight: 500;
transition: 0.3s ease;
}

.item:hover {
transform: translateY(-4px);
box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.item-icon {
width: 46px;
height: 46px;
background: rgba(58,163,156,0.12);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: #3aa39c;
}

.item-icon .material-symbols-outlined {
font-size: 24px;
}

/* GALERIA */

.gallery {
margin-top: 30px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
}

.gallery img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 10px;
}

/* BOTÃO */

.btn {
display: inline-block;
margin-top: 30px;
background: var(--verde);
color: white;
padding: 14px 30px;
border-radius: 6px;
text-decoration: none;
}

.btn:hover {
background: var(--verde-escuro);
}
.gallery img {
cursor: pointer;
transition: 0.3s ease;
}

.gallery img:hover {
transform: scale(1.03);
}

.gallery-modal {
display: none;
position: fixed;
z-index: 99999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.92);
justify-content: center;
align-items: center;
padding: 20px;
}

.gallery-modal img {
max-width: 92%;
max-height: 90%;
border-radius: 14px;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close-modal {
position: absolute;
top: 20px;
right: 30px;
font-size: 46px;
color: white;
cursor: pointer;
font-weight: 300;
}
.share-btn {
display: inline-block;
margin-top: 16px;
background: white;
color: #3aa39c;
padding: 14px 30px;
border-radius: 8px;
border: 2px solid #3aa39c;
cursor: pointer;
font-size: 15px;
font-weight: 600;
transition: 0.3s ease;
}

.share-btn:hover {
background: #3aa39c;
color: white;
}


/* RESPONSIVO */

@media (max-width: 768px) {

header {
padding: 14px 16px;
flex-direction: row;
gap: 10px;
}
.gallery-nav {
width: 42px;
height: 42px;
font-size: 24px;
}

.gallery-nav.left {
left: 12px;
}

.gallery-nav.right {
right: 12px;
}
.logo {
height: 34px;
}

.logo-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.voltar {
font-size: 13px;
}

/* HERO */

.hero {
height: 340px;
}

.hero-overlay-content {
padding: 24px 18px;
}

.hero-overlay h1 {
font-size: 32px;
line-height: 1.15;
}

.hero-overlay p {
font-size: 14px;
max-width: 100%;
}

/* SECTION */

.section {
padding: 30px 16px;
}

/* GRID ITENS */

.itens {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin-top: 22px;
}

.item {
padding: 14px 16px;
font-size: 14px;
}

.item-icon {
width: 40px;
height: 40px;
}

.item-icon .material-symbols-outlined {
font-size: 20px;
}

/* BOTÕES */

.btn,
.share-btn {
display: block;
width: 100%;
text-align: center;
padding: 14px 18px;
font-size: 14px;
}

.share-btn {
margin-top: 12px;
}

/* GALERIA */

.gallery {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}

.gallery img {
width: 100%;
height: 110px;
object-fit: cover;
border-radius: 12px;
}

/* primeira imagem destaque */
.gallery img:first-child {
grid-column: 1 / -1;
height: 240px;
}

/* MODAL */

.close-modal {
top: 12px;
right: 18px;
font-size: 38px;
}

.gallery-modal img {
max-width: 96%;
max-height: 85%;
}

}