* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fffaf6;
    color: #333;
    line-height: 1.6;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    background-attachment: fixed;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.description {
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta {
    background-color: #d62828;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta:hover {
    background-color: #b51d1d;
}

/* PACOTE */
.pacote {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: url('img/natal.png') right / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.pacote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: brightness(0.5);
    transform: scale(1.1);
    z-index: 0;
}

.pacote h2,
.pacote .card {
    position: relative;
    z-index: 1;
}

.pacote h2 {
    margin-bottom: 25px;
}

.card {
    background: white;
    padding: 30px 30px 50px 30px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h2 {
    text-align: left;
}

.card ul {
    text-align: left;
    list-style: none;
    margin-bottom: 60px;
}

/* GALERIA */
.galeria {
    padding: 60px 30px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 60px;
}

.grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* DEPOIMENTOS */
.depoimentos {
    background-color: #fef2f2;
    text-align: center;
    padding: 60px 30px;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
}

blockquote {
    margin: 20px auto;
    font-style: italic;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

/* LOCAL */
.local {
    text-align: center;
    padding: 60px 30px;
}

.local iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
    margin-top: 15px;
}

/* FINAL */
.final {
    text-align: center;
    padding: 60px 30px 100px 30px;
}

.final h2 {
    margin-bottom: 20px;
}

/* RODAPÉ */
footer {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 20px;
}

.socials a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.socials a:hover {
    text-decoration: underline;
}

/* PALETA DE CORES */
.color-swatch {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
    border: 1px solid #ccc;
}

.color-swatch.red { background-color: #d62828; }
.color-swatch.green { background-color: #1b4332; }
.color-swatch.white { background-color: #fff; border: 1px solid #ccc; }
