/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    background-color: #0f0f0f;
    color: #eee;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HEADER
========================= */

header {
    background: #3a0912;
    padding: 15px 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar img {
    height: 130px;
}

/* Links */
.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 30px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #D4A95B;
}


/* =========================
   HERO
========================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url("https://images.pexels.com/photos/6077326/pexels-photo-6077326.jpeg?auto=compress&cs=tinysrgb&w=1600")
                center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    color: #d4a95b;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 25px;
}

.btn-hero {
    display: inline-block;
    background: #d4a95b;
    color: #111;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-hero:hover {
    opacity: 0.9;
}

/* =========================
   SEÇÕES
========================= */
section {
    padding: 70px 0;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    color: #d4a95b;
    margin-bottom: 10px;
    position: relative;
}

section h2::after {
    content: "";
    width: 90px;
    height: 3px;
    background: #d4a95b;
    display: block;
    margin: 10px auto 0;
}

section p {
    color: #ccc;
}

/* ===================================
 COLUNAS SOBRE
====================================== */

#sobre {
  background: #3a0912;
  color: #fff;
  padding: 60px 20px;
}

#sobre h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #D4A95B;
}

/* ===== IMAGEM + TEXTO GRANDE ===== */

.sobre-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 90px;
}

.sobre-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-img img {
  width: 100%;
  max-width: 390px; /* ↓ diminui aqui */
  height: auto;
  border-radius: 3px;
}

.sobre-textos {
  flex: 1;
  text-align: left;
  line-height: 1.8;
  font-size: 18px;   /* tamanho padrão bom */
}

/* ===== GRID VISÃO MISSÃO VALORES ===== */

.sobre-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  text-align: left; /* <-- ESSENCIAL */
}

.bloco h3 {
  color: #D4A95B;
  margin-bottom: 15px;
}

.bloco p {
  font-size: 19px;   /* aumenta um pouco */
  line-height: 1.8;
}
/* =========================
   ÁREAS
========================= */

.areas-grid {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.area-card {
    background: #111;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 500;
    width: 220px;
    
}

.area-card:hover {
    border-color: #d4a95b;
    transform: translateY(-4px);
}

/* =========================
   FOOTER ORGANIZADO
========================= */

footer {
    background: #090909;
    color: #ccc;
    padding-top: 60px;
    border-top: 1px solid #1f1f1f;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Colunas */
.footer-col {
    width: 33%;
}

/* Alinhamentos individuais */
.footer-col:nth-child(1) {
    text-align: left;
}

.footer-col:nth-child(2) {
    text-align: center;
}

.footer-col:nth-child(3) {
    text-align: right;
}

.footer-col h3,
.footer-col h4 {
    color: #d4a95b;
    margin-bottom: 10px;
}

.footer-col p {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding: 18px;
    font-size: 0.85rem;
    border-top: 1px solid #1f1f1f;
    color: #777;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1024px) {
    .logo-container img {
        height: 50px;
    }

    .nav-menu ul {
        gap: 18px;
    }
}

@media (max-width: 860px) {

    .navbar-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 12px;
    }

    .btn-agendar {
        width: 100%;
    }

    .btn-agendar a {
        display: block;
    }
}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .logo-container img {
        height: 45px;
    }
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        text-align: center;
    }
}
