:root {
    --primary: #4d6b5f;
    --secondary: #c2a97b;
    --light: #f9f9f9;
    --dark: #2d2d2d;

    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: "Roboto Slab", serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: url('../img/capa.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
}

.hero p {
    margin: 20px 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: var(--primary);
}

/* ===== A CASA ===== */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.casa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.casa-grid img {
    width: 100%;
    border-radius: 16px;
    height: 260px;
    object-fit: cover;
}

.section p {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px;
}

.destaques {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.destaques a {
    text-decoration: none;
    color: black;
}

.destaques div {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    flex: 1 1 220px;
}

/* ===== EXPERIÊNCIA ===== */
.experiencia {
    background: url('../img/casal-cafe-da-manha.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.experiencia::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.experiencia-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.experiencia p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.experiencia span {
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.depoimentos h2 {
    color: var(--primary);
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: var(--light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-style: italic;
}

.card strong {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: var(--dark);
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
    background: var(--primary);
    background-image: url('../img/capa-localizacao.jpg');
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.localizacao iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 16px;
    margin: 40px 0;
}

.localizacao p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.localizacao .btn {
    background: var(--secondary);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 60px 15px;
    }

    .experiencia {
        padding: 80px 15px;
    }
}

/* ====== CARROSSEL ====== */
.carrossel-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.carrossel-section h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.carrossel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carrossel-container {
  display: flex;
  transition: transform 0.5s ease;
}

.carrossel img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  flex-shrink: 0;
}

.carrossel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carrossel button:hover {
  background: rgba(0,0,0,0.7);
}

.carrossel .prev { left: 15px; }
.carrossel .next { right: 15px; }

@media (max-width: 768px) {
  .carrossel img { height: 300px; }
  .carrossel-section h3 { font-size: 1.4rem; }
}
