* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif,'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --cor-principal: #111111;
    --cor-acento: #0071e3;
    --cor-fundo-claro: #f5f5f7;
    --cor-texto-mutado: #6e6e73;
}

body {
    background-color: #dcd4d4;
    color: var(--cor-principal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

:link:hover {
  outline: dotted rgb(167, 156, 7);
}

.foo:hover {
  background:rgb(167, 156, 7);
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--cor-principal);
    font-weight: 500;
}

.btn-nav {
    border: 1px solid var(--cor-principal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 850px;
}

/* CSS ESSENCIAL PARA O ANIME.JS TRABALHAR AS LETRAS */
.ml11 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.ml11 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml11 .letter {
    display: inline-block;
    line-height: 1em;
    opacity: 0; /* Começam totalmente ocultas */
}

.hero p {
    font-size: 1.30rem;
    color: var(--cor-texto-mutado);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fade-elemento {
    opacity: 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--cor-acento);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

/* Serviços */
.services {
    padding: 100px 8%;
    background-color: var(--cor-fundo-claro);
    text-align: center;
}

.services h2 {
    font-size: 2.3rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card:hover {
  background-color: rgb(193, 192, 180);
  font-size: 17px;
    opacity: 100;
}

footer {
    text-align: center;
    padding: 40px;
    color: var(--cor-texto-mutado);
}


.animation-wrapper {
  width: 70%;
  padding-bottom: 30%;
}

.stagger-visualizer {
  position: absolute;
  width: 900px;
  height: 40px;
  transform-origin: bottom;
}

.stagger-visualizer .dots-wrapper {
  transform: translateZ(0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.stagger-visualizer .dot {
  position: relative;
  z-index: 1;
  width: 23px;
  height: 23px;
  margin: 16px;
  background-color: currentColor;
  border-radius: 50%;
}

@media (min-width: 740px) {
  .stagger-visualizer .dot {
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF 8%, #D3CDC6 100%);
  }
}

.stagger-visualizer .cursor {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 37px;
  height: 37px;
  margin: 9px;
  background-color: currentColor;
  border-radius: 50%;
}





.carrosel {
  list-style: center;
  width: min(200vw, 50rem);
  max-width: 200rem;
  display: flex;
  overflow-x: auto;
  overflow-y: auto;
  padding-bottom: 1rem;
}

.apresentacao {
  display: center;
  justify-content: center;
  align-items: center;

  span {
     justify-content: center;
   
  }

  img {
    display: block;
    justify-content: center;
    z-index: -2;
  }
}




.wrapper {
   display: flex;
  justify-content: flex-end; /* Alinha à direita */
  align-items: flex-start;   /* Alinha ao topo (mais para cima) */
}

.cta {
  display: block;
  padding: 10px 45px;
  margin-top: 15%; /* Garante que não há espaço extra acima do botão */
  /* ... restante código igual ... */
}

.cta {
    display: block;
    padding: 10px 45px;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
    color: white;
    background: #807f81;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
  margin-left: auto;
}
    

.cta:focus {
   outline: none; 
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #FBC638;
}

.cta svg:nth-child(2) {
    transition: 0.5s;
    margin-right: 300px;
}

.cta:hover  svg:nth-child(2) {
    transition: 0.5s;
    margin-right: 300px;
}

  svg {
    transform: skewX(15deg) 
  }

  svg:nth-child(2) {
    width: 300px;
    position: absolute;
    top:5%;
  }
  
/**************SVG****************/

path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #FBC638;
    }
    100% {
        fill: white;
    }
}

/* FORMULÀRIO LETS TALK */

.contact-section{

    position:relative;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    padding:80px 20px;

    background:
    radial-gradient(circle at top left,#3a393a33,transparent 40%),
    radial-gradient(circle at bottom right,#41414133,transparent 40%),
    #484848;

}

/* Blurs */

.blur{

    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;

}

.blur1{

    width:320px;
    height:320px;

    background:#094938;

    top:-80px;
    left:-80px;

}

.blur2{

    width:280px;
    height:280px;

    background:#034a29;

    right:-80px;
    bottom:-80px;

}

.contact-card{

    position:relative;
    z-index:2;

    width:100%;
    max-width:1150px;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:50px;

    padding:55px;

    border-radius:30px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.subtitle{

    color:#ffffff;

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

}

.contact-info h2{

    margin:20px 0;

    font-size:3rem;

    color:white;

}

.contact-info p{

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:40px;

}

.socials{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.socials a{

    display:flex;
    align-items:center;
    gap:15px;

    text-decoration:none;

    color:white;

    padding:16px 22px;

    border-radius:14px;

    background:rgba(255,255,255,.06);

    transition:.35s;

}

.socials a:hover{

    background:#919192;

    transform:translateX(8px);

}

.socials i{

    font-size:22px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    border-radius:14px;

    border:none;

    outline:none;

    background:rgba(76, 76, 76, 0.08);

    color:white;

    font-size:16px;

    transition:.3s;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#c5dacd;

}

.contact-form input:focus,
.contact-form textarea:focus{

    box-shadow:0 0 0 2px #8c8f54;

    background:rgba(255,255,255,.12);

}

.contact-form button{

    margin-top:10px;

    padding:18px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    color:white;

    font-size:17px;

    font-weight:600;

    background:linear-gradient(135deg,#18642b,#075024);

    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(187, 197, 122, 0.35);

}

@media(max-width:900px){

.contact-card{

grid-template-columns:1fr;

}

.contact-info h2{

font-size:2.3rem;

}

}







