:root {
--primary: #0F1E46;
--accent: #C5A46D;
--light: #f5f5f5;
--text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: 'Inter', sans-serif;
color: var(--text);
}

.container {
width: 90%;
max-width: 1100px;
margin: auto;
}

section {
padding: 75px 0;
}

/* HEADER */
.header {
background: var(--primary);
padding: 5px 0;
position: sticky;
top: 0;
z-index: 10;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo img {
height: 70px;
}

.nav a {
color: white;
margin-left: 25px;
text-decoration: none;
}

.btn-menu {
border: 1px solid white;
padding: 8px 16px;
border-radius: 6px;
}

/* HERO */
.hero {
background: radial-gradient(circle at top left, #1c2f6b, #0F1E46 60%);
color: white;
text-align: center;
padding: 90px 20px 70px;
position: relative;
overflow: hidden;
}

.hero::before {
content: "";
position: absolute;
width: 500px;
height: 500px;
background: rgba(197,164,109,0.15);
border-radius: 50%;
top: -100px;
left: -100px;
filter: blur(120px);
}

.hero h1 {
font-family: 'Playfair Display';
font-size: 42px;
max-width: 750px;
margin: auto;
line-height: 1.3;
}

.hero .sub {
margin-top: 20px;
font-size: 18px;
opacity: 0.9;
max-width: 600px;
margin-inline: auto;
}

.hero-proof {
margin-top: 20px;
font-size: 14px;
opacity: 0.8;
}

.btn-primary {
display: inline-block;
margin-top: 50px;
background: var(--accent);
box-shadow: 0 10px 20px rgba(197,164,109,0.4);
color: white;
padding: 12px 28px;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s ease;
}

.btn-primary:hover {
transform: translateY(-2px) scale(1.03);
box-shadow: 0 15px 30px rgba(197,164,109,0.5);
font-weight: 600;
padding: 14px 34px;
}

/* SOBRE */
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: stretch;
}

.img {
position: relative;
height: 100%;
overflow: hidden;
}

.img img {
width: 100%;
border-radius: 8px;
}

.texto h2 {
font-family: 'Playfair Display';
margin-bottom: 20px;
}

.texto p {
margin-bottom: 15px;
text-align: justify;
}

.sobre2 {
  padding-top: 30px;
  padding-bottom: 40px;
}

/* ANTES 
.sobre2 .img {
  max-width: 300px;
  width: 100%;
  margin-left: auto;
}*/

/* DEPOIS */
.sobre2 .img {
  width: 100%;
  margin-left: auto;
}

/* ANTES 
.sobre2 .carousel {
  aspect-ratio: 3 / 4;
  width: 100%;
}*/

/* DEPOIS */
.sobre2 .carousel {
  width: 100%;          /* remove o aspect-ratio: 3/4 */
}

.sobre2 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* CARROSSEL */
.carousel {
position: relative;
width: 100%;
height: 100%;
}

.carousel img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
border-radius: 8px;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.carousel img.active {
opacity: 1;
}

/* SERVIÇOS */
.servicos {
background: var(--light);
}

.cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 30px;
}

.card {
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
transition: 0.3s;
border-left: 4px solid var(--accent);
}

.card:hover {
transform: translateY(-5px);
}

.cta-center {
text-align: center;
margin-top: 40px;
}

/* PROVA SOCIAL */
.prova-social {
text-align: center;
}

.prova-social .sub {
color: #666;
margin-bottom: 40px;
}

.numeros {
display: flex;
justify-content: space-around;
margin-bottom: 50px;
}

.numeros h3 {
font-size: 40px;
color: var(--primary);
}

.depoimentos {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.depoimento {
background: white;
border: 1px solid #eee;
padding: 25px;
border-radius: 8px;
font-style: italic;
}

.depoimento span {
display: block;
margin-top: 10px;
font-style: normal;
font-weight: 500;
}

/* CONTATO */
.contato {
background: var(--light);
text-align: center;
}

input, textarea {
width: 100%;
padding: 12px;
margin: 10px 0;
border: 1px solid #ccc;
}

button {
background: var(--primary);
color: white;
padding: 12px 30px;
border: none;
border-radius: 6px;
}

/* WHATSAPP */
.whatsapp {
position: fixed;
bottom: 20px;
right: 20px;
background: white;
padding: 12px;
border-radius: 50%;
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
display: flex;
align-items: center;
justify-content: center;
}

.whatsapp img {
width: 24px;
height: 24px;
}

/* FOOTER */
.footer {
background: var(--primary);
color: white;
padding: 25px 0 15px;
}

.footer-content {
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
}

.footer-left img {
height: 80px;
}

.footer-right {
text-align: center;
max-width: 600px;
}

.footer-text {
font-size: 14px;
opacity: 0.8;
margin-bottom: 10px;
}

.footer-links a {
color: white;
margin: 0 10px;
text-decoration: none;
font-size: 14px;
}

.footer-links a:hover {
opacity: 0.7;
}

/* MENU MOBILE */
.menu-toggle {
display: none;
font-size: 28px;
color: white;
cursor: pointer;
}

/* ANIMAÇÃO */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease-out;
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}

/* CITAÇÃO */
.citacao {
margin: 30px auto 0;
max-width: 600px;
font-style: italic;
font-size: 16px;
color: #444;
border-left: 3px solid var(--accent);
padding-left: 20px;
text-align: center;
}

.sobre2 .grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

section {
padding: 60px 0;
}

.hero {
padding: 70px 20px 50px;
}

.hero h1 {
font-size: 30px;
}

.grid,
.cards,
.depoimentos {
grid-template-columns: 1fr;
}

.numeros {
flex-direction: column;
gap: 20px;
}

.texto p {
text-align: center;
}

.sobre .texto {
text-align: center;
}

.img {
height: 400px;
}

.sobre .btn-primary {
display: block;
width: fit-content;
margin: 25px auto 0;
}

.sobre2 .texto {
  order: 1;
  margin-bottom: 10px;
}

.sobre2 .texto {
  max-width: 320px;
  margin: 0 auto;
}

.sobre2 .texto h2 {
  text-align: center;
}

.sobre2 .texto p {
  text-align: center;
}

.sobre2 .img {
  order: 2;
  max-width: 100%;
  margin: 20px auto 0;
}

.sobre2 .grid {
    grid-template-columns: 1fr;   /* ← ADICIONAR ISSO */
  }

/* MENU */
.menu-toggle {
display: block;
}

#menu {
position: absolute;
top: 80px;
right: 20px;
background: var(--primary);
width: 220px;
display: none;
flex-direction: column;
align-items: center;
padding: 15px;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#menu a {
display: block;
margin: 10px 0;
width: 100%;
text-align: center;
}

#menu.active {
display: flex;
}

.footer-content {
flex-direction: column;
gap: 15px;
text-align: center;
}
}
