
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #d4a574;
    --accent-color: #f5e6d3;
    --dark-text: #2c3e50;
    --light-text: #ffffff;
    --light-bg: #f9f7f4;
    --border-color: #e0d5c7;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:'Raleway', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
font-family: 'Raleway', sans-serif;
font-weight: 50;
letter-spacing: 0.12em;
}

.section-title {
    font-size: 2.0rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 100;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.section-description {
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #134556;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-text);
}

.btn-secondary:hover {
    background-color: #c99563;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: right;
    gap: 10px;
}

.logo-text {
    font-family: 'Raleway', serif;
    align-items: right;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0px;
    padding-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.4) 0%, rgba(212, 165, 116, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--light-text);
    margin-top: 40rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-description {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-closing {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ============================================
   ACCOMMODATIONS SECTION
   ============================================ */

.accommodations {
    padding: 80px 0;
    background-color: #ffffff;
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.suite-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suite-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.suite-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.suite-card:hover .suite-image img {
    transform: scale(1.05);
}

.suite-content {
    padding: 2rem;
}

.suite-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.suite-description {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.suite-amenities {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ============================================
   GASTRONOMY/EXPERIENCES SECTION
   ============================================ */

.gastronomy {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.experience-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-image svg {
    width: 100%;
    height: 100%;
}

.experience-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.experience-description {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    min-height: 250px;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* ============================================
   RESERVATION SECTION
   ============================================ */

.reservation {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a7a95 100%);
    color: var(--light-text);
}

.reservation .section-title {
    color: var(--light-text);
}

.reservation .section-subtitle {
    color: var(--accent-color);
}

.reservation-form {
    max-width: 600px;
    margin: 3rem auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--light-text);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

.form-group select option {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.reservation-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.img-center-responsive {
    display: block;
    width: 15vw;       /* 15% da largura da viewport */
    max-width: 150px;  /* limite para não ficar grande em telas grandes */
    min-width: 80px;   /* limite para não sumir em telas pequenas */
    margin: 0 auto;    /* centraliza */
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full-width {
    flex: 100%;
}

input, select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3e50;
    font-size: 14px;
}

/* SELECT CUSTOMIZADO */
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    background-color: #f9fafb;
    font-size: 14px;
    color: #2c3e50;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;

    /* Ícone de seta */
    background-image: url("data:image/svg+xml;utf8,<svg fill='%232c3e50' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* HOVER */
.form-group select:hover {
    border-color: #3498db;
    background-color: #ffffff;
}

/* FOCO */
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* OPÇÕES (limitado por navegador, mas ajuda) */
.form-group select option {
    color: #2c3e50;
    background: #ffffff;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .form-group select {
        font-size: 16px;
    }
}






/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-items {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f0e8e0;
}

.faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background-color: #fafaf8;
    color: var(--dark-text);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--light-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .suites-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 12px 32px;
        font-size: 0.95rem;
    }

    .about,
    .accommodations,
    .gastronomy,
    .testimonials,
    .reservation,
    .contact,
    .faq {
        padding: 40px 0;
    }

    .suite-image {
        height: 200px;
    }

    .testimonials-carousel {
        min-height: 300px;
    }
}

.header {
    display: flex;
    justify-content: space-between; /* separa esquerda e direita */
    align-items: center; /* alinha verticalmente */
    width: 100%;
}

header, .navbar {
    position: fixed; /* ou absolute */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; /* maior que tudo */
}


/* Logo à esquerda */
.logo-text {
    font-weight: bold;
    font-size: 20px;
}

/* Menu à direita */
.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* Links */
.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}


.what-they-say .testimonials {
  background-image: url(../images/testimonial-bg.png);
  background-repeat: no-repeat;
  background-size: 815px 560px;
  background-position: center center;
  border-radius: 7.5px;
}

@media (min-width: 992px) {
  .what-they-say .testimonials {
    background-position: center right;
  }
}

.what-they-say .col-lg-6 {
  padding: 0px;
}

.what-they-say .carousel {
  padding: 100px 0px;
}

.what-they-say .testimonial-item {
  padding: 60px;
  margin: 20px;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-radius: 7.5px;
  border-bottom-right-radius: 0px;
  position: relative;
}

.what-they-say .testimonial-item img {
  max-width: 80px;
  border-radius: 50%;
  margin-right: 20px;
  float: left !important;
}

.what-they-say .testimonial-item .icon {
  position: absolute;
  left: 30px;
  top: -20px;
  fill: #B36944;
}

.what-they-say .testimonial-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
}

.what-they-say .testimonial-item span {
  font-size: 14px;
  color: #7a7a7a;
  display: block;
  margin-bottom: 8px;
}

.what-they-say .testimonial-item p {
  margin-top: 25px;
  margin-bottom: 0px;
}

.what-they-say .testimonial-item:after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100%;
  height: 10px;
  border-bottom-left-radius: 7.5px;
  border-bottom-right-radius: 7.5px;
  z-index: -2;
  background-color: #B36944;
}

.what-they-say .testimonial-item:before {
  content: '';
  position: absolute;
  right: -10px;
  bottom: -5px;
  width: 10px;
  height: 100%;
  border-top-right-radius: 7.5px;
  border-bottom-right-radius: 7.5px;
  z-index: -2;
  background-color: #B36944;
}

.what-they-say .carousel-indicators {
  bottom: 40px;
}

.what-they-say .carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: #7a7a7a;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
  opacity: 0.5;
  margin: 0px 5px;
  padding: 0px;
  border-radius: 50%;
}

.what-they-say .carousel-indicators .active {
  opacity: 1;
  background-color: #B36944;
}
.map-container {
    width: 100%;
    height: 400px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.social-media {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 24px;
    color: #333;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #c59d5f; /* cor elegante */
    transform: scale(1.2);
}

.social-media {
    flex: 1;
    min-width: 280px;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: transparent;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c59d5f;
}

/* BOTÃO */
.contact-form button {
    padding: 10px;
    border: none;
    background: #c59d5f;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #a8844c;
}

/* REDES SOCIAIS */
.social-icons {
    margin-top: 25px;
    display: flex;
    gap: 18px;
}

.social-icons a {
    font-size: 25px;
    color: #777;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #c59d5f;
    transform: translateY(-2px);
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

/* CARD PRINCIPAL */
.experience-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* BLOCOS INTERNOS */
.contact-block {
    margin-bottom: 25px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

/* TÍTULOS */
.contact-block h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ÍCONES */
.contact-block h4 i {
    color: #c59d5f;
    font-size: 14px;
}

/* TEXTOS */
.contact-block p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 2px 0;
}

/* GRID */
.faq-grid {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* COLUNA ESQUERDA */
.faq-left {
    flex: 1;
    min-width: 300px;
}

.welcome-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.welcome-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.welcome-text {
    padding: 25px;
}

.welcome-text h3 {
    margin-bottom: 10px;
}

.welcome-text p {
    color: #666;
    font-size: 14px;
}

/* FAQ DIREITA */
.faq-items {
    flex: 1;
    min-width: 300px;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #eee;
}

/* BOTÃO */
.faq-question {
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* TEXTO ocupa tudo */
.faq-question span {
    flex: 1;
    text-align: left;
}

/* ÍCONE sempre colado à direita */
.faq-icon {
    margin-left: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c59d5f;
    position: relative;
    transition: 0.3s;
}

/* ÍCONE SOL */
.faq-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c59d5f;
    position: relative;
    transition: 0.3s;
}

/* RAIOS DO SOL */
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #c59d5f;
}

/* horizontal */
.faq-icon::before {
    width: 24px;
    height: 2px;
    top: 7px;
    left: -4px;
}

/* vertical */
.faq-icon::after {
    width: 2px;
    height: 24px;
    left: 7px;
    top: -4px;
}

/* ANIMAÇÃO */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* RESPOSTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    padding-bottom: 15px;
    color: #666;
    font-size: 14px;
}

/* ABERTO */
.faq-item.active .faq-answer {
    max-height: 200px;
}


.footer {
    
    
    padding-top: 50px;
    font-size: 16px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* COLUNAS */
.footer-col {
    flex: 1;
    min-width: 200px;
    color: #fff;
}

/* LOGO */
.footer-logo {
    width: 120px;
}

/* TÍTULOS */
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 15px;
}

/* MENU */
.footer-menu {
    list-style: none;
    padding: 0;
    
}

.footer-menu li {
    margin: 2px 0px;
    text-align: left;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    font-size: 14px;
}

.footer-menu a:hover {
    color: #c59d5f;
}

/* BASE */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: #c59d5f;
    text-decoration: none;
}


.galeria-mosaico {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 10px;
  padding: 10px;

  /* 🔥 ESSA LINHA RESOLVE O PROBLEMA */
  grid-auto-flow: dense;
}

.item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Mosaico dinâmico */
.item:nth-child(3n) {
  grid-row: span 2;
}

.item:nth-child(4n) {
  grid-column: span 2;
}

.item:nth-child(7n) {
  grid-column: span 2;
  grid-row: span 2;
}

/* Responsivo */
@media (max-width: 768px) {
  .galeria-mosaico {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    grid-auto-rows: 140px;
  }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 60%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.controles button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 40px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 8px;
}

#prev {
  left: 30px;
}

#next {
  right: 30px;
}

.controles button:hover {
  background: rgba(255,255,255,0.4);
}





.poetic-text {
    background: #f9fbfd;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #d6e4f0;
    text-align: center;
}

/* TEXTO PRINCIPAL */
.poetic-text .quote {
    font-size: 16px;
    color: #4a5a6a;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* FRASE FINAL */
.poetic-text .signature {
    font-size: 16px;
    color: #4a5a6a;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* DETALHE SUTIL */
.poetic-text::before {
    content: "“";
    font-size: 40px;
    color: #d6e4f0;
    display: block;
    line-height: 0;
    margin-bottom: 10px;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .poetic-text {
        padding: 20px;
    }

    .poetic-text .quote {
        font-size: 15px;
    }
}