/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #fff;
    background-color: #000;
}



/* Cabeçalho */
.hero {
    
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #1290CA;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Benefícios */
.benefits {
    background-color: #1c1c1c;
    padding: 20px 0;
}

.benefits h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.benefit-item {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.benefit-item h3 {
    font-size: 1.5em;
    color: #1290CA;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 1.1em;
}

/* Como Funciona */
.how-it-works {
    padding: 60px 0;
    background-color: #222;
}

.how-it-works h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.how-it-works ol {
    font-size: 1.2em;
    margin-top: 20px;
}

.how-it-works li {
    margin-bottom: 15px;
}

/* Depoimentos */
.testimonials {
    padding: 60px 0;
    background-color: #1c1c1c;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial {
    margin-bottom: 30px;
    text-align: center;
}

.testimonial p {
    font-size: 1.2em;
    font-style: italic;
}

.testimonial cite {
    font-size: 1em;
    color: #1290CA;
}

/* Oferta Especial */
.offer {
    padding: 60px 0;
    background-color: #222;
    text-align: center;
}

.offer h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.offer p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.offer strong {
    color: #FF5733;
}

/* Garantia */
.guarantee {
    padding: 30px 0;
    background-color: #1c1c1c;
    text-align: center;
}

.guarantee h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Chamada para Ação Final */
.final-cta {
    background-color: #333333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.final-cta .cta-button {
    background-color: #1290CA;

}

/* Responsividade */
@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

/* Carrossel */
.carousel-section {
    background-color: #1c1c1c;
    padding: 60px 0;
    text-align: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 10;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
    }

    button {
        font-size: 1.2em;
        padding: 8px;
    }
}


/* Cards de Produtos */
.products {
    background-color: #1c1c1c;
    padding: 20px 0;
    text-align: center;
}

.products h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.product-card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #1290CA;
}

.product-card p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ccc;
}

.product-card .cta-button {
    background-color: #1290CA;
    color: #fff;
    padding: 12px 20px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product-card .cta-button:hover {
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
    .product-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .product-cards {
        grid-template-columns: 1fr;
    }
}

/*Página de links*/
.links {
    background-color: #1c1c1c;
    padding: 60px 0;
    text-align: center;
}

.links h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 20px;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.link-button {
    display: inline-block;
    width: 80%;
    max-width: 400px;
    padding: 15px 20px;
    background-color: #1290CA;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.link-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .link-button {
        width: 90%;
    }
}

.carousel-and-about {
    display: flex;
    justify-content: center; /* Alinha os itens horizontalmente */
    align-items: center; /* Alinha os itens verticalmente */
    flex-wrap: wrap;
    gap: 20px;
    padding: 60px 0;
    background-color: #1c1c1c;
    color: #fff;
}

.carousel-container {
    position: relative;
    width: 80%; /* Reduz a largura do carrossel */
    max-width: 300px; /* Limita o tamanho máximo */
    margin: 0 auto; /* Centraliza o carrossel */
    overflow: hidden;
    height: 500px; /* Define uma altura fixa menor */
}

.about-me {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-me h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1290CA;
}

.about-me p {
    font-size: 1.2em;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ccc;
}

.about-me .cta-button {
    margin-top: 20px;
    align-self: start;
}

@media (max-width: 768px) {
    .carousel-container, .about-me {
        max-width: 100%;
    }

    .about-me h2 {
        text-align: center;
    }

    .about-me .cta-button {
        align-self: center;
    }
}


/* Seção de Consultoria */
.top-consultancy {
    background-color: #1c1c1c;
    color: #fff;
    padding: 10px 0;
}

.consultancy-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.consultancy-text {
    flex: 1;
    text-align: left;
    
}

.consultancy-text h1 {
    font-size: 2.5em;
    color: #1290CA;
    margin-bottom: 20px;
}

.consultancy-text p {
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #ccc;
}

.consultancy-text .cta-button {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 1.1em;
    background-color: #1290CA;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.consultancy-text .cta-button:hover {
    background-color: #0056b3;
}

.consultancy-image {
    flex: 1;
    text-align: center;
}

.consultancy-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .consultancy-content {
        flex-direction: column;
        text-align: center;
    }

    .consultancy-text {
        text-align: center;
    }
}

/* Partes adicionais que estava no outro arquivo, deletei e as duas paginas agora apontam pra ca */

  
    .section-teste {
      background-color: #1a1a1a;
      padding: 40px;
      border-radius: 8px;
      margin-bottom: 60px;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    @media (max-width: 700px) {
      .section-teste {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .section-teste .profile-img {
        margin: 0 auto 20px auto;
      }
    }

    .section-teste .profile-img {
      margin-bottom: 0;
    }


    .profile-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      margin-bottom: 20px;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #0a0a0a;
      color: #f5f5f5;
    }

    a {
      color: #1db954;
      text-decoration: none;
    }

    .container {
      max-width: 1000px;
      margin: auto;
      padding:  20px;
    }

    h1,
    h2 {
        font-size: 40px;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

    .hero {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, #111, #1c1c1c);
      border-radius: 8px;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 1.2rem;
      color: #ccc;
    }


    .card {
      background-color: #1a1a1a;
      padding: 20px;
      border-radius: 6px;
      margin-bottom: 20px;
    }

    .card h3 {
      margin-top: 0;
      color: #1db954;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }


  


/* teste */

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    padding: 15px 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-link i {
    font-size: 1.5em;
}

.social-link:hover {
    background-color: #1290CA;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .social-link {
        width: 90%;
    }
}


/* html */

    .before-after-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        margin-top: 24px;
    }
    .before-after-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 220px;
    }
    .before-img, .after-img {
        width: 200px;
        height: 240px;
        object-fit: cover;
        border-radius: 8px;
        margin: 4px;
        border: 2px solid #1290CA;
    }
    .feedback-carousel {
        position: relative;
        max-width: 500px;
        margin: 32px auto 0 auto;
        min-height: 120px;
    }
    .feedback-slide {
        display: none;
        text-align: center;
        font-size: 1.1em;
        padding: 16px;
        background: #f7f7f7;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    }
    .feedback-slide.active {
        display: block;
    }