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

body, html {
    font-family: 'Rokkitt', sans-serif;
    color: #33190e;
    background-color: #f5f5f5;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Header */
.site-header {
    background-color: #f9f9f9;
    padding: 1rem 0;
    position: relative;
    border-bottom: 4px solid #ef7a28;
}

.logo img {
    height: 60px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.menu ul li a {
    text-decoration: none;
    color: #33190e;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #ef7a28;
}

/* Background padrão das páginas */
.page-bg {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
}

.main-content{
    width: 80%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin: 0 auto;
    padding: 20px;
}

.page-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

/* Carousel */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    flex-shrink: 0;
}

.carousel-buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-buttons button {
    width: 10px;
    height: 10px;
    background: #fff;
    border: none;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.carousel-buttons button.active {
    opacity: 1;
    background: #ef7a28;
}

/* Botões principais */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-buttons a {
    padding: 1rem 2rem;
    background-color: #ef7a28;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-buttons a:hover {
    background-color: #d86b20;
}

/* Conteúdo texto + imagem */
.content-section {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.content-section img {
    width: 15%;
    border-radius: 10px;
}

.content-section .text {
    width: 80%;
}

/* Opiniões */
.opinions {
    margin-top: 3rem;
}

.opinions h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.opinion-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
}

.opinion-card {
    min-width: 30%;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Formulário */
.comment-form {
    margin-top: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.comment-form button {
    background-color: #ef7a28;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.comment-form button:hover {
    background-color: #d86b20;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: white;
    padding: 2rem 0;
}

.site-footer .container {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.social-icons img {
    width: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.contact-info {
    margin-top: 1rem;
}

/* Mapa */
.map-section {
    margin-top: 3rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.map-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
