









@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideImages {
    0%, 25% {
        background-image: url('img/foto3.jpeg'); /* Substitua 'imagem1.jpg' pelo caminho da sua primeira imagem */
        
    }
    50%, 75% {
        background-image: url('img/foto7.jpg'); /* Substitua 'imagem2.jpg' pelo caminho da sua segunda imagem */
       
    }
    /* Adicione mais etapas conforme necessário para mais imagens */
    100% {
        background-image: url('img/foto2.png'); /* Volta para a primeira imagem para criar um loop contínuo */
        
    }
}

@font-face {
    font-family: 'fonte1';
    src: url('fontes/Barking\ at\ Stars\ Straight.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte2';
    src: url('fontes/Brampton\ Serif\ Demo.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte3';
    src: url('fontes/Chomixi3D-Regular.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte4';
    src: url('fontes/Crimen\ en\ Levante.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte5';
    src: url('fontes/Double\ Tracker.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte6';
    src: url('fontes/Faster\ Stroker.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte7';
    src: url('fontes/Good\ Explorer.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte8';
    src: url('fontes/GraffitiYouth-Regular.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte9';
    src: url('fontes/Improbable.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte10';
    src: url('fontes/Mega\ Surprise.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte11';
    src: url('fontes/New\ York\ Hardcore.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte12';
    src: url('fontes/Pentagono\ Grunge.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte13';
    src: url('fontes/Ranmor.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte14';
    src: url('fontes/SilvercrushDEMO.otf') format('opentype');
  }
/* Adicione seu estilo personalizado aqui */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #07293f42;
}



/* --- REGRA 1: FIXA O HEADER NO TOPO ABSOLUTO --- */
header {
    background-color: #1111118f;
    padding: 3px;
    position: fixed; /* MUDANÇA AQUI! */
    top: 0;          /* MUDANÇA AQUI! */
    width: 100%;     /* MUDANÇA AQUI! */
    z-index: 1001;   /* MUDANÇA AQUI! (Valor alto) */
    height: 70px;    /* MUDANÇA AQUI! (Definindo a altura estável no header) */
}

/* --- REGRA 2: REMOVE PROPRIEDADES DE POSICIONAMENTO DA NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px rgb(57, 55, 55);
    /* REMOVIDO: position: fixed; */
    /* REMOVIDO: z-index: 1000; */
    background-color: #333;
    width: 100%;
    /* REMOVIDO: height: 10%; ou height: 70px; (usaremos a altura do header) */
    height: 100%; /* Ocupa 100% da altura do HEADER */
    padding: 0 5px; /* Adicione um padding interno se precisar */
}

.logo img {
    height: 45px;
    border-radius: 10px; 
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1); /* Ajuste conforme necessário */
}
.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #fff;
    margin-left: 20px;
    font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
}

.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    letter-spacing: 3px;
    margin-right: 20px;
    font-size: 15px;
    font-family: 'fonte7', Tahoma, Geneva, Verdana, sans-serif;
    border-bottom: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: border-bottom 0.3s ease;
}

.navbar li:hover {
    border-bottom: 2px solid #00aaff;
}
.navbar li.active {
    background-color: rgba(255, 191, 0, 0.2); /* Cor de fundo para o item ativo */
}

.navbar a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 22px;
    transition: color 0.3s ease;
}
.navbar a:hover {
    color: #ffbf00;
}


.hero-section {
    position: relative;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    height: 700px; 
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 88% 85%, 78% 92%, 70% 88%, 58% 96%, 40% 90%, 25% 93%, 15% 85%, 0 80%);
    
    border-bottom: 20px solid rgb(0, 0, 0); /* Borda sombreada na parte inferior */
  
    padding-top: 70px; 

}



.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #075c83, #111);
    background-size: cover;
    background-position: center;
    animation: slideImages 15s linear infinite;
    opacity: 0.8; /* Reduz a opacidade da imagem */
}

.hero-content {
    text-align: left;
    margin-left: 70px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 5px;
    animation: revealText 3s forwards;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3); /* Ajusta a sombra do texto */
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-family: 'fonte4', Tahoma, Geneva, Verdana, sans-serif;
}
.btn {
    display: inline-block;
    padding: 15px 25px;
    background-color: #0a6ae7;
    color: #fff;
    max-height: 25px;
    margin-right: 25px;
    height: 25px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-family: 'fonte7', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease; /* Adiciona transições para os efeitos */
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(231, 198, 10, 0.8);
    color: #ffbf00;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }

  
.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.background-image {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
}



.title-container {
    width: 98%;
    text-align: right;
    margin-bottom: 10px;
    font-size: 18px;
}

.title {
    font-size: 2.5em;
    margin-bottom: 10px;
    padding: 30px;
    font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 5px;
    animation: revealText 3s forwards;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3); /* Ajusta a sombra do texto */
    color: #0f92e3;
}

.features-section {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 50px 0;
    margin: 30px;
}

.feature-card {
    flex: 1 1 100px;
    flex: 1;
    background-color: #fff;
    border: 2px solid #f2c00c;
    border-radius: 20px;
    margin: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'fonte', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(7, 137, 237, 0.787);
}

.feature-content {
    padding: 20px;
}

.feature-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Adicione uma classe específica para os títulos */
.feature-title {
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #0974f7;
    margin-bottom: 15px;
    font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease-in-out; /* Adiciona uma transição suave */
}

.feature-title:hover {
    color: #ffbf00; /* Aumenta a escala do título quando o mouse passa sobre ele */
}


footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
}



/* Adicione estas regras no seu arquivo de estilo ou no bloco de estilo dentro do head */
.faq-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}
.faq-title {
    color: #090909; /* Apenas o título em azul */
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}


.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    cursor: pointer;
    padding: 15px;
    background-color: #3498dba6;
    color: #272626;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    position: relative;
    font-size: 22px;
    font-family: 'fonte9', Tahoma, Geneva, Verdana, sans-serif;
     /* Adiciona posição relativa para conter o ícone */
}

.faq-question:hover {
    background-color: #2980b9;
}

.question-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #fda137;
    border-radius: 5px;
    margin-top: 10px;
    animation: fadeIn 0.5s ease-in-out; 
    font-size: 20px;
    font-family: 'fonte', Tahoma, Geneva, Verdana, sans-serif;/* Adiciona animação de fade-in */
}

/* Adiciona estas regras no seu arquivo de estilo ou no bloco de estilo dentro do head */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px); /* Adiciona movimento para cima */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Estilos CSS para a seção de assistência */
.assistance-section {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinhar ao topo */
    padding: 30px;
    background-color: #3498db;
    font-size: 18px;
}

.image-container {
    padding-right: 30px;
}

.repair-details {
    flex: 1;
}

.repair-options {
    display: flex;
    flex-direction: column; /* Exibir opções em coluna */
}

.repair-option {
    cursor: pointer;
    background-color: #ffffff44;
    border: 1px solid #ff9d2d;
    border-radius: 5px;
    padding: 10px;
    color: #272626;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
    font-size: 20px;
    font-family: 'fonte9', Tahoma, Geneva, Verdana, sans-serif;
}

.repair-option:hover {
    background-color: #e0e0e0;
}



/* Estilos para o popup */
.popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e78a1067;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    font-size: 20px;
}

.popup-content {
    margin-bottom: 20px;
}

.close-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.close-button:hover {
    background-color: #0056b3;
}
.assistance-title {
    color: #090909; /* Apenas o título em azul */
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
}
















/* === Seção Reciclagem === */
.recycling-section {
    background-color: #fd9400ab;
    padding: 50px;
    text-align: center;
}

.rec-title {
    color: #090909;
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 20px;
    font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
}

.recycling-info {
    max-width: 900px;
    margin: 0 auto;
}

.recycling-info p {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 20px;
}

.recycling-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    width: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 30px;
}

.step:hover {
    transform: translateY(-5px);
}

.step img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.step p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
}

.step:hover img {
    transform: scale(1.1);
}

.call-to-action {
    margin-top: 40px;
}

.btn-recycle {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    font-size: clamp(16px, 3vw, 20px);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.btn-recycle:hover {
    background-color: #0056b3;
}


/* === Popup  reciclagem=== */
.popup, .overlay {
    display: none;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1000;
    text-align: left;
}

.popup button {
    background-color: #007BFF;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #0056b3;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}

/* === Responsivo === */

/* Tablets */
@media (max-width: 1024px) {
    .step {
        width: 45%;
    }
}

/* Celulares */
@media (max-width: 767px) {
    .recycling-section {
        padding: 20px 10px;
    }
    .recycling-steps {
        flex-direction: column;
        gap: 15px;
    }
    .step {
        width: 100%;
    }
    .step img {
        max-width: 70px;
        max-height: 70px;
    }
    .btn-recycle {
        width: 100%;
        padding: 10px 15px;
    }
}

















/* Seus estilos gerais aqui */

.footer {
    background-color: rgb(71, 71, 71);
    color: #fff;
    padding: 50px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-size: 20PX;
}

.footer-section {
    flex: 1 1 300px;
    margin: 0 20px;
    text-align: center;
}

.footer-section h3 {
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding: 30px;
    color: #2383dd;
    font-family: 'fonte9', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 20px;
    font-family: 'fonte9', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section ul li {
    margin-bottom: 30px;
    font-family: 'fonte9', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'fonte9', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-social-icons {
    margin-top: 20px;
}

.footer-social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 80px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: #ec933b;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
}












/* 🔥 AJUSTES PARA CELULARES (até 767px) */
@media (max-width: 767px) {

    /* HEADER MOBILE */
    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between; /* Faz logo ficar à esquerda e menu à direita */
        align-items: center;
        padding: 5px 10px;
        height: 55px;
        position: relative;
    }
    
    

    /* LOGO + NOME !! ALINHADOS DIREITO */
    .logo {
        display: flex;
        align-items: center;
        gap: 11px;
    }

    .logo img {
        height: 45px;
        margin: 0; /* REMOVE espaço errado */
    }

    .logo h1 {
        font-size: 20px;
        margin: 0;
        padding: 0;
    }

    /* 🔥 HAMBÚRGUER — AGORA À DIREITA */
    .hamburger {
        display: block;
        font-size: 32px;
        cursor: pointer;
        margin-right: 10px;   /* Encosta no canto direito */
        margin-left: 0;
    }

    /* 🔒 Esconder menu no mobile */
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 15px;
        background: #0f0f0fc0;
        padding: 10px 0;
        border-radius: 10px;
        position: absolute;
        top: 55px; /* Abaixo do navbar */
        left: 0;
        z-index: 999;
    }

    /* 🔓 Quando abrir */
    .navbar ul.active {
        display: flex;
    }

    .navbar li {
        margin: 12px 0;
        font-size: 18px;
    }

  
    header {
        height: 55px;
    }
    
    .hero-section {
        padding-top: 65px; 
    }
}
    .hero-content {
        margin-left: 20px;
        width: 90%;
    }
    .hero-content h1 {
        font-size: 1.8em;
    }

    .features-section {
        padding: 30px 0;
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        width: 90%;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    .feature-title {
        font-size: 1.6em;
    }
    .feature-content img {
        max-width: 100%;
        height: auto;
    }

    .faq-section {
        padding: 60px 10px;
    }
    .faq-title {
        font-size: 28px;
    }
    .faq-question {
        font-size: 20px;
    }
    .faq-answer {
        font-size: 18px;
    }

    .assistance-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 10px;
    }
    .repair-details {
        margin-top: 20px;
    }
    .repair-option {
        font-size: 18px;
    }

    .recycling-section {
        padding: 30px 10px;
    }
    .rec-title {
        font-size: 24px;
    }
    .recycling-info p {
        font-size: 16px;
    }
    .recycling-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .step {
        width: 80%;
        text-align: center;
    }
    .step img {
        width: 70px;
        height: 70px;
    }
    .btn-recycle {
        width: 100%;
        padding: 10px;
        font-size: 18px;
    }

    .popup {
        width: 80%;
        padding: 15px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin-bottom: 20px;
        text-align: center;
    }
    .footer-section h3 {
        font-size: 28px;
    }
    .footer-section ul li {
        font-size: 18px;
    }
    .footer-social-icons a {
        font-size: 60px;
    }
    .footer-bottom p {
        font-size: 16px;
    }
}

/* 🔥 DESKTOP: ESCONDER O HAMBÚRGUER */
@media (min-width: 768px) {
    .hamburger {
        display: none !important;
    }
}

