/* Adicionando a fonte Poppins ao arquivo CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333;
}

p, label, input, textarea, button {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(to right, #333, #555);
    color: white;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #d4a017;
}

.navbar-brand:hover {
    color: #b38e14;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    color: #f0f0f0;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4a017;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: #d4a017;
    border-radius: 5px;
}

/* Header Section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('images/hero-background.jpg');
}

.hero-content h1 {
    font-size: 3.5em;
    margin: 0;
    color: #d4a017;
}

.hero-content p {
    font-size: 1.5em;
    margin-top: 10px;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #d4a017;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background: #b38e14;
    transform: scale(1.05);
}

/* Services Section */
.services {
    background: #fff;
    padding: 20px;
    text-align: center;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    margin: 5px 0;
    font-size: 1em;
}

/* About Section */
.about {
    background: #f9f9f9;
    padding: 60px 20px;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #d4a017;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.about .icon {
    font-size: 1.5em;
    color: #d4a017;
    margin-right: 10px;
}

.about .card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #333;
    color: #fff;
}

.about .card h3 {
    font-size: 2em;
    color: #d4a017;
    margin-bottom: 10px;
}

.about .card p {
    font-size: 1.1em;
    margin: 0;
    color: #ccc;
}

/* Contact Section */
.contact {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    color: #d4a017;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.contact p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item .icon {
    font-size: 1.5em;
    color: #d4a017;
    margin-right: 10px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #222;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    background-color: #f0f0f0;
}

.contact-form button {
    background: #d4a017;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background: #b38e14;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2em;
    cursor: pointer;
    z-index: 10;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}
.gallery-item {
    width: 100%;
    height: 320px;         /* ajuste aqui se quiser mais alto/baixo */
    overflow: hidden;
    border-radius: 0.5rem;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* corta sem distorcer */
    display: block;
}