    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Albert Sans', sans-serif;
        background-color: black;
        color: white;
    }

    header {
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    font-family: 'EB Garamond', sans-serif;
    }

    .navbar-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    }

    .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .logo-img {
    width: 40px;
    height: auto;
    }

    .logo span {
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    }

    /* Menu desktop */
    nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    }

    nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    }

    /* Hamburger button (hidden on desktop) */
    .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    }

    .hamburger span {
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s ease;
    }

    /* Responsive */
    @media (max-width: 768px) {
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #111;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 20px;
        text-align: left;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        font-size: 1rem;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    nav.active {
        display: flex;
    }
    }



    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden; /* importante para o vídeo não ultrapassar os limites */
    }


    .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    }

    .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    }

    .hero-content img.logo-img {
    width: 300px;
    margin-bottom: 12px;
    }

    .hero-content p.subtitle {
    font-size: 0.8rem;
    color: #f0c040;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    }

    .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    }

    .hero-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    }

    .hero-form input,
    .hero-form button {
    padding: 12px 18px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    }

    .hero-form input {
    flex: 1 1 200px;
    max-width: 300px;
    }

    .hero-form button {
    background-color: #c62828;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }

    .hero-form button:hover {
    background-color: #a51f1f;
    }

    .video-link {
    margin-top: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    color: white;
    display: inline-block;
    transition: opacity 0.3s;
    }

    .video-link:hover {
    opacity: 0.8;
    }

    .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    }
    .scroll-indicator::before,
    .scroll-indicator::after {
    content: none !important;
    display: none !important;
    }


    @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
    }

    @media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .navbar-container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-form {
        flex-direction: column;
    }
    }

    .stats {
    background-color: #f9f9fb;
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 20px;
    text-align: center;
    }

    .stat h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1c1f2a;
    margin-bottom: 8px;
    }

    .stat p {
    color: #5b5e69;
    font-size: 0.95rem;
    line-height: 1.4;
    }

    @media (max-width: 768px) {
    header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-form {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    }

    .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    }


    .agenda {
    padding: 100px 40px;
    text-align: center;
    color: #000;
    background: #fff;
    position: relative;
    }

    .agenda h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
    }

    .agenda p {
    color: #000;
    margin-bottom: 40px;
    font-size: 1.1rem;
    }

    /* Carousel */
    .agenda-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* antes 20px */
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    }

    /* Mostra apenas 3 cards visíveis */
    .cards {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow: hidden;
    width: calc((240px * 3) + (20px * 2));
    position: relative; /* necessário para setas absolutas */
    }

    /* Cada link/card completo */
    .card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 240px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    }

    /* Apenas a imagem */
    .card {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    }

    .card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    }

    /* Texto separado por baixo da imagem */
    .card-text {
    margin-top: 12px;
    text-align: center;
    background-color: #c62828; /* vermelho forte */
    color: white;
    padding: 12px;
    border-radius: 6px;
    min-height: 100px; /* opcional, para uniformizar a altura */
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .card-text h3 {
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0 0 4px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        color: white; /* <-- forçado para garantir contraste */
    }

    .card-text p {
        font-size: 0.85rem;
        color: #f5f5f5; /* tom mais claro que branco puro */
        margin: 0;
    }

    .history {
    background-color: #f9fafc;
    padding: 80px 60px;
    }

    .history-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    }

    .history-left,
    .history-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    }

    .history-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    }

    .history-text .subtitle {
    font-size: 0.95rem;
    color: #555;
    max-width: 400px;
    }

    .img-top,
    .img-bottom {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    }

    .history-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    }

    .history-content p{
    margin-bottom:10px
    }

    .btn-history {
    display: inline-block;
    margin-top: 30px;
    background-color: #c62828;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    }

    .btn-history:hover {
    background-color: #a31f1f;
    }

    @media (max-width: 768px) {
    .history-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .history-left,
    .history-right {
        align-items: center;
    }

    .img-top,
    .img-bottom {
        height: auto;
        max-width: 100%;
    }

    .history-text h2,
    .history-text .subtitle {
        text-align: center;
    }
    }


        .visits {
    background-color: #1e1e1e;
    padding: 80px 60px;
    color: white;
    }

    .visits-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
    }

    .visits-text {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }


    .visits-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    }

    .visits-text p {
    font-size: 1rem;
    color: #c9c9c9;
    margin-bottom: 30px;
    }

    .visits-text ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    }

    .visits-text li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 1.3rem;
    color: #e0e0e0;
    }

    .visits-text .icon {
    font-size: 1.2rem;
    color: #4caf50;
    flex-shrink: 0;
    }

    .visits-image {
    position: relative;
    flex: 1;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    }

    .carousel-wrapper {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    }
    .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
    }

    .slide {
    min-width: 100%;
    box-sizing: border-box;
    }

    /* Logo dentro da área de texto das visitas */
    .visits-logo {
    margin-top: 30px;
    width: 100%;
    max-width: 40%;
    height: auto;
    object-fit: contain;
    }

    /* Uniformizar altura entre imagens e vídeo no carrossel */
    .slide img,
    .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    }
    
    .visits-image {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-height: 700px;
        max-width: 600px;
    }

    .visits-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    }

    .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 2;
    }

    .arrow.left {
    left: -16px; /* podes reduzir ainda mais se quiseres colar */
    }

    .arrow.right {
    right: -16px;
    }


    .btn-reservar {
    background-color: #c62828;
    color: white;
    padding: 10px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    }
        .footer {
    background-color: #f9f9fb;
    padding: 60px 20px;
    text-align: center;
    }

    .footer-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    }

    .contacts {
    text-align: left;
    }

    .contacts h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1c1f2a;
    }

    .contacts p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
    }

    .contacts a {
    color: #f4a600;
    text-decoration: none;
    }

    .footer-logos {
        display: flex;
        flex-direction: row; /* lado a lado */
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .footer-logos img {
        max-width: 120px;
        height: auto;
        opacity: 0.9;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .footer-logos img:hover {
        transform: scale(1.05);
        opacity: 1;
    }

    @media (max-width: 768px) {
        .footer-logos {
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 20px;
        }

        .footer-logos img {
            max-width: 100px;
        }
    }


    hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px auto;
    width: 80%;
    }

    .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    }

    .dev-info {
    font-size: 0.95rem;
    color: #555;
    }

    .dev-info a {
    color: #c62828;
    text-decoration: none;
    font-weight: 600;
    }

    .social-icons {
    display: flex;
    gap: 16px;
    }

    .social-icons img {
        width: 24px;
        height: 24px;
        opacity: 0.8;
        transition: opacity 0.3s;
    }

    .social-icons img:hover {
        opacity: 1;
    }

    @media (max-width: 768px) {
        .footer-bottom {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 10px;
        }
    }
