:root {
--bg: #f1f1f1;
--blue-mid: #889CAF;
--blue-light: #B7C5D2;
--gray-mid: #96989A;
--gray-light: #BDBFC1;
}

* {
  box-sizing: border-box;
  }


body {
margin: 0;
height: 100vh;
background: var(--bg);
font-family: Georgia, "Times New Roman", serif;
color: var(--blue-mid);

display: flex;
justify-content: center;
align-items: center;
}


.page {
width: 100%;
max-width: 1200px;
height: 100%;

display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

gap: clamp(15px, 2vh, 30px);
padding: clamp(15px, 3vh, 40px) clamp(10px, 3vw, 30px);

text-align: center;
}


.headline {
margin: 0;
font-size: clamp(22px, 3vw, 48px);
letter-spacing: 0.05em;
}

/* LOGO RESPONSIVA INTELIGENTE */
.logo {
position: relative;
width: clamp(220px, 40vw, 500px);
height: clamp(220px, 40vw, 500px);
}

.fundo {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: contain;
animation: girar 25s linear infinite;
}

.g {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: contain;
}


.logo-texto img {
width: 100%;
max-width: clamp(250px, 50vw, 600px);
height: auto;
}


.footer {
display: flex;
flex-direction: column;
align-items: center;
gap: clamp(10px, 1.5vh, 18px);
color: var(--gray-mid);
}

.socials {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: clamp(10px, 2vw, 24px);
}

.social-link {
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: var(--blue-mid);

font-size: clamp(13px, 1.5vw, 18px);
transition: all 0.25s ease;
}

.social-link:hover {
transform: translateY(-2px);
opacity: 0.8;
}

.icon {
width: clamp(18px, 2vw, 24px);
height: clamp(18px, 2vw, 24px);
}

.address {
max-width: 700px;
font-size: clamp(12px, 1.4vw, 16px);
line-height: 1.5;
}


@keyframes girar {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}



@media (max-width: 768px) {

body {
height: 100vh;
overflow: hidden; 
}

.page {
height: 100%;
justify-content: center;
gap: 2vh; 
padding: 2vh 4vw;

}


.headline {
font-size: 4vh;
}


.logo {
width: 45vh;
height: 45vh;
max-width: 90vw;
}


.logo-texto img {
max-width: 70vw;
}

/* SOCIAL */
.social-link {
font-size: 2vh;
}

.social-link i {
font-size: 2.2vh;
}

/* ENDEREÇO */
.address {
font-size: 1.8vh;
line-height: 1.4;
}
}



.social-link i {
  font-size: 20px;
}


.social-link.whatsapp i {
  color: #25D366;
}


.social-link.instagram i {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}