
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #000000;
    --off-white: #faf8f1;
    --marrom-terroso: #8e6e46;
    --cinza-escuro: #434642;
    --branco: #ffffff;
    --whatsapp-green: #25D366;
}

html {
    scroll-behavior: smooth;
}


meta[name="theme-color"] {
    content: var(--marrom-terroso);
}


::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--marrom-terroso);
    border-radius: 10px;
    border: 2px solid var(--off-white);
}

::-webkit-scrollbar-thumb:hover {
    background: #7a5d3e;
}


html {
    scrollbar-width: thin;
    scrollbar-color: var(--marrom-terroso) var(--off-white);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--preto);
    background-color: var(--off-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.header {
    background-color: var(--branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--marrom-terroso);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--preto);
    margin: 3px 0;
    transition: 0.3s;
}


.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--branco) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--marrom-terroso);
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--marrom-terroso);
    color: var(--branco);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 110, 70, 0.3);
}

.cta-button:hover {
    background-color: #7a5d3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 110, 70, 0.4);
}

.cta-button i {
    font-size: 1.3rem;
}

.phone-number {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 1rem;
}


.sobre {
    padding: 80px 0;
    background-color: var(--branco);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-description {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
    line-height: 1.8;
}

.sobre-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--off-white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--marrom-terroso);
    min-width: 30px;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--preto);
}


.eventos {
    padding: 80px 0;
    background-color: var(--off-white);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.evento-item {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.evento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.evento-item i {
    font-size: 3rem;
    color: var(--marrom-terroso);
    margin-bottom: 1rem;
}

.evento-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--preto);
}


.estrutura {
    padding: 80px 0;
    background-color: var(--branco);
}

.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.estrutura-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--off-white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.estrutura-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.estrutura-item i {
    font-size: 2rem;
    color: var(--marrom-terroso);
    min-width: 40px;
}

.estrutura-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--preto);
}


.localizacao {
    padding: 80px 0;
    background-color: var(--off-white);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.endereco h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 1rem;
}

.endereco p {
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.localizacao-description p {
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    line-height: 1.6;
}

.mapa {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mapa iframe {
    border-radius: 15px;
}


.contato {
    padding: 80px 0;
    background-color: var(--branco);
}

.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contato-item i {
    font-size: 2.5rem;
    color: var(--marrom-terroso);
    min-width: 50px;
}

.contato-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 0.5rem;
}

.contato-info a {
    color: var(--marrom-terroso);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-all;
    line-height: 1.4;
}

.contato-info a:hover {
    color: #7a5d3e;
}

.contato-info p {
    color: var(--cinza-escuro);
    font-size: 1rem;
}


.footer {
    background-color: var(--preto);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-logo-white {
    filter: brightness(0) invert(1);
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--marrom-terroso);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--cinza-escuro);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}


.avaliacoes {
    padding: 80px 0;
    background-color: var(--off-white);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.rating-summary .stars {
    display: flex;
    gap: 0.2rem;
}

.rating-summary .stars i {
    color: #ffd700;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    font-weight: 500;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.avaliacao-item {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--marrom-terroso);
}

.avaliacao-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cliente-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 0.3rem;
}

.evento-tipo {
    background-color: var(--marrom-terroso);
    color: var(--branco);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.avaliacao-header .rating {
    display: flex;
    gap: 0.2rem;
}

.avaliacao-header .rating i {
    color: #ffd700;
    font-size: 1rem;
}

.avaliacao-header .rating .far {
    color: #ddd;
}

.avaliacao-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
    font-style: italic;
}

.avaliacao-data {
    font-size: 0.9rem;
    color: var(--marrom-terroso);
    font-weight: 500;
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--branco);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-nav ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }

    .estrutura-grid {
        grid-template-columns: 1fr;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }

    .avaliacao-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .rating-summary {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
}


.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 1.8rem;
}

.floating-whatsapp .phone-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--preto);
    color: var(--branco);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
}


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--marrom-terroso);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(142, 110, 70, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #7a5d3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 110, 70, 0.4);
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


body {
    cursor: pointer;
}


@media (max-width: 768px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp i {
        font-size: 1.6rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        left: 15px;
    }
    
    .phone-tooltip {
        display: none;
    }
}