/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #cc0808;
    --secondary-blue: #1E90FF;
    --cyan: #00CED1;
    --green: #7CB342;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-color: #555555;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item svg {
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: scale(1.1);
}

/* Main Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-nav a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-blue);
}

.main-nav a:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    background-color: var(--green);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #689F38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-menu.active {
    display: block;
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu nav {
    width: 100%;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-menu nav ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu nav ul li:last-child {
    border-bottom: none;
}

.mobile-menu nav ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: block;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.mobile-menu nav ul li a:hover {
    color: var(--primary-blue);
    background-color: var(--light-gray);
    padding-left: 30px;
}

.mobile-menu .mobile-cta {
    background-color: var(--green);
    color: var(--white) !important;
    border-radius: 8px;
    text-align: center;
    margin: 20px;
    display: block !important;
    padding: 15px 20px !important;
}

.mobile-menu .mobile-cta:hover {
    background-color: #689F38;
    padding-left: 20px !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/header-bg-new.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #689F38;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .cta-button {
        display: none;
    }
    
    .header-content {
        flex-wrap: nowrap;
    }
    
    .logo img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 100px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 15px;
    }
}


/* Services Section */
.services {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 16px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-saiba-mais {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-saiba-mais:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Responsive Services Grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .services {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .service-content h3 {
        font-size: 16px;
    }
    
    .service-content p {
        font-size: 13px;
    }
    
    .service-buttons {
        gap: 10px;
    }
    
    .btn-whatsapp,
    .btn-saiba-mais {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .section-header p {
        font-size: 13px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-content h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .service-content p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .btn-whatsapp,
    .btn-saiba-mais {
        padding: 10px;
        font-size: 11px;
    }
}
.about-company {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}

.btn-saiba-mais {
    background-color: transparent;
    color: #1f2937;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1f2937;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background-color: #1f2937;
    color: #ffffff;
}

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

    .about-buttons {
        justify-content: center;
    }
}
.faq-jd {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

.faq-jd h2 {
  text-align: center;
  color: #0a4fa3;
  margin-bottom: 30px;
}

.faq-item {
  border: 1px solid #0a4fa3;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background-color: #f5f9ff;
  color: #0a4fa3;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }
}
/* Fonte limpa e fácil de ler */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.dicas-servicos {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #ffffff;
}

.dicas-servicos h2 {
  text-align: center;
  color: #0a4fa3;
  font-size: 32px;
  margin-bottom: 10px;
}

.descricao-geral {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 17px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.servico {
  border: 1px solid #0a4fa3;
  border-radius: 8px;
  padding: 20px;
  background-color: #f6faff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.servico h3 {
  color: #0a4fa3;
  font-size: 20px;
  margin-bottom: 10px;
}

.servico p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .dicas-servicos h2 {
    font-size: 26px;
  }

  .descricao-geral {
    font-size: 15px;
  }

  .servico p {
    font-size: 14px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.comentarios {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #ffffff;
}

.comentarios h2 {
  text-align: center;
  color: #0a4fa3;
  font-size: 32px;
  margin-bottom: 10px;
}

.descricao-comentarios {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 17px;
}

.comentario {
  border: 1px solid #0a4fa3;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f6faff;
}

.estrelas {
  color: #f4b400;
  font-size: 20px;
  margin-bottom: 10px;
}

.comentario .texto {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 8px;
}

.comentario .nome {
  font-size: 14px;
  font-weight: 500;
  color: #0a4fa3;
}

@media (max-width: 600px) {
  .comentarios h2 {
    font-size: 26px;
  }

  .descricao-comentarios {
    font-size: 15px;
  }

  .comentario .texto {
    font-size: 14px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.rodape {
  background-color: #0a4fa3;
  color: #ffffff;
  font-family: 'Roboto', Arial, sans-serif;
}

.rodape-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.rodape-coluna h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.rodape-coluna p {
  font-size: 14px;
  line-height: 1.6;
  color: #e6eefc;
}

.rodape-coluna ul {
  list-style: none;
  padding: 0;
}

.rodape-coluna ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #e6eefc;
}

.telefone {
  margin-top: 10px;
  font-size: 15px;
}

.chamada {
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff;
}

.rodape-final {
  background-color: #083d7a;
  text-align: center;
  padding: 15px 10px;
}

.rodape-final p {
  margin: 0;
  font-size: 13px;
  color: #dbe7fb;
}

@media (max-width: 600px) {
  .rodape-container {
    padding: 40px 15px;
  }

  .rodape-coluna h3 {
    font-size: 17px;
  }

  .rodape-coluna p,
  .rodape-coluna ul li {
    font-size: 13px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.tyu {
  background-color: #f6faff;
  color: #0a4fa3;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 60px 20px;
}

.tyu .container {
  max-width: 1200px;
  margin: auto;
}

.tyu h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.tyu .intro {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.tyu .servico {
  margin-bottom: 50px;
}

.tyu .servico h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0a4fa3;
}

.tyu .servico p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

@media (max-width: 768px) {
  .tyu h2 {
    font-size: 28px;
  }
  .tyu .servico h3 {
    font-size: 20px;
  }
  .tyu .servico p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tyu h2 {
    font-size: 24px;
  }
  .tyu .servico h3 {
    font-size: 18px;
  }
  .tyu .servico p {
    font-size: 13px;
  }
}
/* =========================
   Estilo da Section Desentupidora
   ========================= */

section.df {
  background-color: #f9f9f9; /* Fundo leve */
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 20px auto; /* Centraliza no container */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
}

section.df h2 {
  text-align: center;
  color: #222;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

section.df ul {
  list-style: none; /* Remove bullets */
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Colunas responsivas */
  gap: 15px; /* Espaço entre itens */
}

section.df ul li a.df {
  display: block;
  background-color: #007acc;
  color: #fff;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
}

section.df ul li a.df:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}

/* Responsividade adicional */
@media (max-width: 500px) {
  section.df ul {
    grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
  }
}
