.testimonials {
	margin: 0 auto;
    width: 100%;
    max-width: 900px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 40px;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.slides {
    width: 100%;
}

.slide {
    display: none;
    background: rgba(255,0,4,0.20);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    text-align: center;
    animation: fade .6s ease;
}

.slide.active {
    display: block;
}

.slide p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a2a2a2;
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    color: #BBBBBB;
    margin-bottom: 4px;
}

.author span {
    color: #777;
    font-size: .9rem;
}

.nav1 {
    border: none;
    background: rgba(143,143,143,0.20);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,.12);
    transition: .3s;
    flex-shrink: 0;
	color: #FF0004;
}

.nav1:hover {
    transform: scale(1.08);
}

.prev {
    margin-right: 15px;
}

.next {
    margin-left: 15px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #252525;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: #FF0000;
    transform: scale(1.2);
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 30px 20px;
    }

    .nav1 {
        display: none;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }
}


footer {
      background-color: #000;
      color: #fff;
      padding: 60px 5% 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 280px 1fr 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .logo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .logo h1 {
      color: #e30613;
      font-size: 32px;
      font-weight: 900;
      letter-spacing: -2px;
      margin-bottom: 4px;
    }

    .logo span {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .footer-column h3 {
      color: #e30613;
      margin-bottom: 20px;
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 12px;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .atendimento {
      color: #ccc;
    }

    .atendimento p {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .social-icons {
      margin-top: 25px;
    }

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

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

    .bottom-bar {
      border-top: 1px solid #222;
      margin-top: 50px;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      font-size: 14px;
      color: #888;
    }

    .bottom-bar a {
      color: #e30613;
      text-decoration: none;
    }

    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }