/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    overflow-x: hidden;
}

/* Header */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay escurecendo o fundo */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

/* Logo */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3; /* Garante que o logo fique acima da overlay */
}

.logo img {
    height: 80px;
    filter: none; /* Garante que o efeito escuro não afete o logo */
}


/* Conteúdo principal */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Formulário */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lead-form input,
.lead-form select {
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
}

.lead-form button {
    padding: 12px;
    background: #004080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.lead-form button:hover {
    background: #003366;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

/* Header */
.hero {
    position: relative;
    width: 50%;
    height: 100vh;
    background: url('01.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 0 5%;
}

/* Overlay escurecendo o fundo */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

/* Logo maior */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo img {
    height: 80px;
}

/* Container flexível para PUV e formulário */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
}

/* PUV à esquerda */
.hero-content {
    width: 50%;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Formulário à direita com efeito moderno */
.lead-form {
    width: 40%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.lead-form h2 {
    color: #004080;
    margin-bottom: 15px;
}

.lead-form input,
.lead-form select {
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

.lead-form button {
    padding: 12px;
    background: #004080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.lead-form button:hover {
    background: #003366;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .lead-form {
        width: 90%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .lead-form {
        margin-top: 20px;
    }
}
/* Overlay escurecendo o fundo (exceto o formulário) */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    z-index: 1; /* Mantém a camada abaixo do conteúdo */
}

/* Container flexível para PUV e formulário */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    position: relative; /* Mantém o conteúdo acima da overlay */
    z-index: 2;
}


/* Seção "Por que Escolher o Navio Homero?" */
.why-choose {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 32px;
    color: #004080;
    margin-bottom: 30px;
}

/* Grid dos benefícios */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Itens individuais */
.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

/* Ícones Font Awesome */
.benefit-item i {
    font-size: 40px;
    color: #004080;
    margin-bottom: 15px;
}

/* Título do benefício */
.benefit-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

/* Descrição */
.benefit-item p {
    font-size: 16px;
    color: #666;
}

/* Responsivo */
@media (max-width: 768px) {
    .why-choose h2 {
        font-size: 28px;
    }

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

    .benefit-item {
        padding: 15px;
    }
}
/* Seção "Por que Escolher o Navio Homero?" */
.why-choose {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 32px;
    color: #004080;
    margin-bottom: 30px;
}

/* Grid dos benefícios (3 colunas por linha) */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Itens individuais */
.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

/* Ícones Font Awesome */
.benefit-item i {
    font-size: 40px;
    color: #004080;
    margin-bottom: 15px;
}

/* Título do benefício */
.benefit-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

/* Descrição */
.benefit-item p {
    font-size: 16px;
    color: #666;
}

/* Responsivo */
@media (max-width: 768px) {
    .why-choose h2 {
        font-size: 28px;
    }

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

    .benefit-item {
        padding: 15px;
    }
}

/* Seção "Por que Escolher o Navio Homero?" */
.why-choose {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.why-choose .container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose h2 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Grid de Itens */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* Ícones */
.feature-item i {
    font-size: 40px;
    color: #003366;
    margin-bottom: 10px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Seção "Para Quem é Esse Passeio?" */
.who-for {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.who-for h2 {
    font-size: 32px;
    color: #004080;
    margin-bottom: 30px;
}

/* Grid dos grupos */
.group-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card de cada grupo */
.group-item {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.group-item:hover {
    transform: scale(1.05);
}

/* Imagem do grupo */
.group-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Informações do grupo */
.group-info {
    padding: 20px;
    text-align: left;
    flex: 1;
}

.group-info i {
    font-size: 30px;
    color: #004080;
    margin-bottom: 10px;
}

.group-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.group-info p {
    font-size: 16px;
    color: #666;
}

/* Responsivo */
@media (max-width: 768px) {
    .who-for h2 {
        font-size: 28px;
    }

    .group-list {
        grid-template-columns: 1fr;
    }

    .group-item {
        flex-direction: column;
        text-align: center;
    }

    .group-item img {
        width: 100%;
        height: auto;
    }

    .group-info {
        text-align: center;
        padding: 15px;
    }
}

/* Seção "Como Funciona o Passeio?" */
.how-it-works {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 32px;
    color: #004080;
    margin-bottom: 30px;
}

/* Grid das etapas */
.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card de cada etapa */
.step-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: scale(1.05);
}

/* Imagem da etapa */
.step-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Informações da etapa */
.step-info {
    padding: 20px;
    text-align: left;
    flex: 1;
}

.step-info i {
    font-size: 30px;
    color: #004080;
    margin-bottom: 10px;
}

.step-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.step-info p {
    font-size: 16px;
    color: #666;
}

/* Responsivo */
@media (max-width: 768px) {
    .how-it-works h2 {
        font-size: 28px;
    }

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

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item img {
        width: 100%;
        height: auto;
    }

    .step-info {
        text-align: center;
        padding: 15px;
    }
}

/* Grid das etapas (3 colunas por linha) */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Responsivo */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
}



/* Seção "Conheça o Navio Homero" */
.about-ship {
    background: #f4f4f4;
    padding: 60px 20px;
}

.about-ship .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

/* Texto à esquerda */
.about-content {
    width: 50%;
}

.about-content h2 {
    font-size: 32px;
    color: #004080;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

/* Carrossel de Imagens */
.carousel-container {
    width: 50%;
    position: relative;
    max-width: 800px;
    max-height: 800px;
}

.carousel {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
}

.carousel img {
    width: 100%;
    height: auto;
    display: none;
    border-radius: 8px;
}

/* Exibir apenas a primeira imagem por padrão */
.carousel img:first-child {
    display: block;
}

/* Botões de navegação */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsivo */
@media (max-width: 768px) {
    .about-ship .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        width: 100%;
    }

    .carousel-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Header */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 0 5%;
    overflow: hidden;
}

/* Carrossel de imagens no fundo */
.carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Apenas a imagem ativa será visível */
.carousel img.active {
    opacity: 1;
}

/* Overlay escurecendo o fundo */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    z-index: 1;
}

/* Logo maior */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.logo img {
    height: 80px;
}

/* Container flexível para PUV e formulário */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

/* PUV à esquerda */
.hero-content {
    width: 50%;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Formulário à direita */
.lead-form {
    width: 40%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.lead-form h2 {
    color: #004080;
    margin-bottom: 15px;
}

.lead-form input,
.lead-form select {
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

.lead-form button {
    padding: 12px;
    background: #004080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.lead-form button:hover {
    background: #003366;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .lead-form {
        width: 90%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .lead-form {
        margin-top: 20px;
    }
}


/* Seção "FAQ - Perguntas Frequentes" */
.faq {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 32px;
    color: #004080;
    margin-bottom: 30px;
}

/* Estilo das perguntas */
.faq-item {
    max-width: 800px;
    margin: 0 auto 10px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Botão da pergunta */
.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    text-align: left;
    border: none;
    background: #004080;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #003366;
}

/* Ícone de + ou - */
.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

/* Estilo da resposta (inicialmente oculta) */
.faq-answer {
    padding: 0 15px;
    background: white;
    color: #333;
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* Quando a resposta estiver visível */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}

/* Gira o ícone ao abrir */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsivo */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
/* Respostas do FAQ (inicialmente ocultas) */
.faq-answer {
    padding: 0 15px;
    background: white;
    color: #333;
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

/* Quando a resposta estiver visível */
.faq-item.active .faq-answer {
    padding: 15px;
}


/* Seção "Conheça o Navio Homero" */
.about-ship {
    background: #f4f4f4;
    padding: 60px 20px;
}

.about-ship .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

/* Texto à esquerda */
.about-content {
    width: 50%;
}

.about-content h2 {
    font-size: 32px;
    color: #004080;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

/* Carrossel de Imagens */
.carousel-container {
    width: 50%;
    max-width: 800px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.carousel {
    display: flex;
    width: 500%;
    animation: slide 10s infinite ease-in-out;
}

.carousel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Animação do carrossel */
@keyframes slide {
    0% { transform: translateX(0%); }
    20% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    45% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    70% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    95% { transform: translateX(-300%); }
    100% { transform: translateX(0%); }
}

/* Responsivo */
@media (max-width: 768px) {
    .about-ship .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        width: 100%;
    }

    .carousel-container {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .carousel img {
        height: 300px;
    }
}


/* Seção "Conheça o Navio Homero" */
.about-ship {
    background: #f4f4f4;
    padding: 60px 20px;
}

.about-ship .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

/* Texto à esquerda */
.about-content {
    width: 50%;
}

.about-content h2 {
    font-size: 32px;
    color: #004080;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

/* Ajuste do Carrossel */
.carousel-navio-container {
    width: 50%;
    max-width: 800px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.carousel-navio {
    display: flex;
    width: 100%; /* Agora ocupa apenas a largura necessária */
}

.carousel-navio img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0; /* Garante que as imagens não diminuam */
}

/* Ajuste na animação do carrossel */
@keyframes slideNavio {
    0%, 20% { transform: translateX(0%); }
    25%, 45% { transform: translateX(-100%); }
    50%, 70% { transform: translateX(-200%); }
    75%, 95% { transform: translateX(-300%); }
    100% { transform: translateX(0%); } /* Retorna para a primeira sem espaço extra */
}

/* Aplicando a animação com tempo ajustado */
.carousel-navio {
    animation: slideNavio 20s infinite ease-in-out;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-ship .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        width: 100%;
    }

    .carousel-navio-container {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .carousel-navio img {
        height: 300px;
    }
}

/* FOOTER */
.footer {
    background: #0c1325;
    color: white;
    padding: 40px 20px;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Logo do Footer */
.footer-logo img {
    width: 120px;
}

/* Informações de Contato */
.footer-contact {
    text-align: left;
}

.footer-contact h3 {
    color: #f8b400;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-contact p {
    font-size: 16px;
    margin: 5px 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #f8b400;
}

/* Ícones das Redes Sociais */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 22px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f8b400;
}

/* Créditos */
.footer-bottom {
    text-align: center;
    background: #0c1325;
    padding: 15px 0;
    margin-top: 20px;
}

.footer-bottom a {
    color: #f8b400;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: white;
}



.scroll-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #003366;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.scroll-button:hover {
    background-color: #0055aa;
}
html {
    scroll-behavior: smooth;
}


/* Estilo para a página obrigado */
.obrigado-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
}

.mensagem-obrigado h1 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 20px;
}

.mensagem-obrigado p {
    font-size: 18px;
    color: #444;
}
