/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: none;
    padding: 10px 20px;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    width: 160px;
    align-items: center;
  }
  
  .btn-whatsapp {
    display: flex;
    align-items: center;
    background-color: #e63946;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-whatsapp i {
    margin-right: 5px;
  }
  
  .btn-whatsapp:hover {
    background-color: #d62828;
  }
  
  /* Banner */
  .banner {
    height: 90vh;
    background: url('/img/banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
  }
  
  .banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .banner .content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    color: #fff;
  }
  
  .banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .banner p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn-banner {
    display: inline-flex;
    align-items: center;
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-banner i {
    margin-right: 5px;
  }
  
  .btn-banner:hover {
    background-color: #d62828;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .banner h1 {
      font-size: 2rem;
    }
  
    .banner p {
      font-size: 1rem;
    }
  
    .btn-whatsapp,
    .btn-banner {
      font-size: 14px;
      padding: 8px 15px;
    }
  }
  
  /* Seção de Destaques */
.features {
    background-color: #000;
    padding: 50px 20px;
    text-align: center;
  }
  
  .features .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .feature-item {
    text-align: center;
    animation: fadeIn 1.2s ease;
  }
  
  .feature-item i {
    font-size: 3rem;
    color: #d62828;
    margin-bottom: 10px;
  }
  
  .feature-item p {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
  }
  
  /* Animação de entrada */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .features .container {
      flex-direction: column;
    }
  
    .feature-item i {
      font-size: 2.5rem;
    }
  
    .feature-item p {
      font-size: 1rem;
    }
  }
  
  /* Seção de Estatísticas */
.statistics {
    background-color: #000;
    padding: 50px 20px;
    text-align: center;
  }
  
  .statistics-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease;
  }
  
  .statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeInUp 1.5s ease;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
    color: #e63946;
    font-weight: bold;
  }
  
  .stat-description {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 10px;
  }
  
  /* Animação de entrada */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .statistics-title {
      font-size: 1.4rem;
    }
  
    .statistics-grid {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
  
    .stat-number {
      font-size: 1.8rem;
    }
  
    .stat-description {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .statistics-grid {
      grid-template-columns: 1fr;
    }
  
    .stat-number {
      font-size: 1.6rem;
    }
  
    .stat-description {
      font-size: 0.9rem;
    }
  }
  
  /* Seção de Chamada para Ação (CTA) */
.cta-guincho {
    background-color: #000;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Conteúdo (Texto e Botão) */
  .cta-content {
    flex: 1;
    color: #fff;
    text-align: center;
    animation: ctaFadeInLeft 1.2s ease;
  }
  
  .cta-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .cta-divider {
    width: 50px;
    height: 3px;
    background-color: #fff;
    margin: 10px auto;
  }
  
  .cta-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-text .cta-highlight {
    color: #e63946;
    font-weight: bold;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .cta-button i {
    margin-right: 5px;
  }
  
  .cta-button:hover {
    background-color: #d62828;
  }
  
  /* Imagem */
  .cta-image {
    flex: 1;
    text-align: center;
    animation: ctaFadeInRight 1.2s ease;
  }
  
  .cta-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Animações */
  @keyframes ctaFadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes ctaFadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .cta-guincho {
      flex-direction: column-reverse;
    }
  
    .cta-content {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .cta-title {
      font-size: 1.8rem;
    }
  
    .cta-text {
      font-size: 1rem;
    }
  
    .cta-button {
      font-size: 0.9rem;
      padding: 10px 15px;
    }
  }
  
  /* Seção de Suporte */
.support-section {
    background-color: #000;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Conteúdo (Texto e Botão) */
  .support-content {
    flex: 1;
    text-align: center;
    color: #fff;
    animation: slideInLeft 1.2s ease;
  }
  
  .support-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .support-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .service-item {
    text-align: center;
  }
  
  .service-item i {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .support-divider {
    width: 50px;
    height: 3px;
    background-color: #fff;
    margin: 20px auto;
  }
  
  .support-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .support-text .highlight {
    color: #e63946;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .support-button {
    display: inline-flex;
    align-items: center;
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .support-button i {
    margin-right: 5px;
  }
  
  .support-button:hover {
    background-color: #d62828;
  }
  
  /* Imagem */
  .support-image {
    flex: 1;
    text-align: center;
    animation: slideInRight 1.2s ease;
  }
  
  .support-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Animações */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .support-section {
      flex-direction: column;
    }
  
    .support-content {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .support-title {
      font-size: 1.8rem;
    }
  
    .support-services {
      flex-direction: column;
    }
  
    .support-text {
      font-size: 1rem;
    }
  
    .support-button {
      font-size: 0.9rem;
      padding: 10px 15px;
    }
  }
  
  /* Seção de Clientes Satisfeitos */
.clients-section {
    background-color: #000;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
  }
  
  .clients-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
  }
  
  /* Carrossel de Depoimentos */
  .testimonials-carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 1.2s ease;
  }
  
  .testimonial-item {
    flex: 0 0 80%;
    margin: 0 10px;
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    opacity: 0;
    animation: slideIn 1.2s ease forwards;
  }
  
  .testimonial-text {
    font-size: 1.2rem;
    color: #fff;
    font-style: italic;
  }
  
  .testimonial-name {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    color: #e63946;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Animações do Carrossel */
  @keyframes slideToLeft {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes slideToRight {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .testimonials-carousel {
      flex-direction: column;
    }
  
    .testimonial-item {
      flex: 1;
      width: 100%;
    }
  }
  
  /* Seção de Contato */
.contact-section {
    background: url('/img/fundo2.webp') no-repeat center center;
    background-size: cover;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Sombreado escuro */
    z-index: 1;
  }
  
  .contact-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 2;
  }
  
  .contact-image {
    flex: 1;
    text-align: center;
    animation: slideInLeft 1.2s ease;
  }
  
  .contact-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
  }
  
  .contact-content {
    flex: 1;
    text-align: center;
    animation: slideInRight 1.2s ease;
  }
  
  .contact-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .contact-divider {
    width: 50px;
    height: 3px;
    background-color: #fff;
    margin: 20px auto;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #e63946;
  }
  
  .contact-item:hover {
    color: #e63946;
  }
  
  .contact-item span {
    text-transform: uppercase;
    font-weight: bold;
  }
  
  /* Animações */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-title {
      font-size: 1.6rem;
    }
  
    .contact-info {
      flex-direction: column;
      gap: 10px;
    }
  
    .contact-item {
      font-size: 1rem;
    }
  
    .contact-item i {
      font-size: 1.2rem;
    }
  }
  
  /* Footer */
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
    position: relative;
  }
  
  .footer p {
    margin: 0;
  }
  
  .footer span {
    font-weight: bold;
    color: #e63946;
  }
  
  @media (max-width: 768px) {
    .footer {
      font-size: 0.9rem;
      padding: 15px 0;
    }
  }
  