/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    /* color: #ffffff; */
    line-height: 1.6;
    background-color: #1f1f1f;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 2rem;
  }
  
  .cmi{
    font-size: 64px;
    text-align: center;
  }
  .cmimage{
    width: 400px;
  }
  
  /* Hero Section */
  #hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./source/img/banner.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  #hero .hero-content {
    max-width: 700px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .hero-title span {
    color: #d4a017;
  }
  
  .hero-description {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background: #d4a017;
    color: rgb(0, 0, 0);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #ff9100;
  }
  
  /* ServiÃ§os Section */
  #services .service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .service-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 300px;
  }
  
  .service-item:hover {
    transform: translateY(-10px);
  }
  
  .service-item i {
    font-size: 3rem;
    color: #d4a017;
    margin-bottom: 15px;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  /* Funcionalidades Section */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .feature-item i {
    font-size: 2.5rem;
    color: #d4a017;
    margin-bottom: 15px;
  }
  
  .feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  /* Depoimentos */
  .carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 50px;
  }
  
  .testimonial {
    background: #d4a017;
    color: rgb(0, 0, 0);
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    min-width: 280px;
    min-height: 260px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-style: italic;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 320px;
  }
  
  .testimonial p {
    flex: 1 1 auto;
    margin-bottom: 10px;
  }
  
  .testimonial span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #ac4e01;
  }
  
  /* PreÃ§os */
  .pricing-table {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .pricing-plan {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    flex-grow: 1;
  }
  
  .pricing-plan.recommended {
    border: 2px solid #ff7300;
  }
  
  .pricing-plan h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .pricing-plan .price {
    font-size: 2.5rem;
    color: #ff7300;
    margin-bottom: 20px;
  }
  
  .pricing-plan ul {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .pricing-plan ul li {
    margin-bottom: 10px;
  }
  
  .pricing-plan .btn {
    background: #0ff;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease;
  }
  
  .pricing-plan .btn:hover {
    background: #ff9100;
  }
  
  /* Contato */
  #contact form {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 400px;
    flex-direction: column;
    margin: 0 auto;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
  }
  
  .form-group input,
  .form-group select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  
  .btn {
    grid-column: span 2;
    background: #d4a017;
    color: rgb(0, 0, 0);
    padding: 15px;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #ff9100;
  }
  footer {
    width: 100%;
    color: #06121e;
  }
  footer .footer-content {
    background-color: #000000;
    display: flex;
    justify-content: space-around;
    padding: 3rem 3.5rem;
  }
  footer .footer-content #footer-contacts {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  footer .footer-content #footer-contacts h1 {
    margin-bottom: 0.7rem;
  }
  footer .footer-content #footer-contacts .footer-email {
    display: flex;
    padding-top: 15px;
    gap: 0.5rem;
    align-items: center;
  
  }
  footer .footer-content #footer-contacts .footer-email .fa-envelope {
    font-size: 27px;
    color: #d4a017;
  }
  footer .footer-content #footer-contacts .footer-email p {
    color: #d4a017;
  }
  footer .footer-content #footer-contacts .footer-email p:hover {
    color: #d4a017;
  }
  footer .footer-content #footer-social-media {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  footer .footer-content #footer-social-media .footer-link {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
  }
  footer .footer-content #footer-social-media .footer-link i {
    color: #d4a017;
  }
  footer .footer-content #footer-social-media .footer-link i:hover {
    color: #d4a017;
  }
  footer .footer-content .footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    color: #fff;
  }
  footer .footer-content .footer-list h3 {
    font-size: 27px;
    color: #d4a017;
  }
  footer .footer-content .footer-list .footer-link {
    color: #fff;
  }
  footer .footer-content .footer-list .footer-link:hover {
    color: #d4a017;
  }
  footer .footer-content .footer-logo img {
    max-width: 200px;
  }
  .clients-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .ct1{
    padding-bottom:  40px;
  }
  .clients {
    text-align: center;
    background-color: #282828;
    color: #fff;
  }
  .clients p{
    font-size: 1.2rem;
    padding-bottom: 30px;
  }
  .clients h2{
    font-size: 2.5rem;
    
  }
  .client-card {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 10px #d4a017;
    transition: transform 0.3s;
  }
  
  .client-card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    
  }
  
  .client-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .client-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 252, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .client-card:hover::after {
    opacity: 1;
  }
  @media screen and (max-width: 768px) {
    .zapzap{
        display: none;
    }
    .footer-content {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
    }
    .footer-content #footer-contacts {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: center;
      text-align: center;
    }
  }
  @media screen and (max-width: 767px) {
      .hero-title{
          font-size: 2.8rem;
      }
    .footer-content .footer-logo {
      display: none;
    }
  }
  @media screen and (max-width: 478px) {
    .footer-content .footer-logo {
      display: none;
    }
  }
  @media screen and (max-width: 768px) {
    .cmimage{
      max-width: 250px;
    }
  }
  /* Remova todo o bloco relacionado a #whatsapp-icon e pulseZap */
  
  /* Novo botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: pulse 3s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }}
  .cases{
    display: flex;
    flex-direction: column;
  }
  #details {
    padding: 20px;
}

#details .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#details .card {
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #000;
    
}


#details .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#details .icon {
    font-size: 40px;
    color: #d4a017; /* cor dourada */
    margin-bottom: 10px;
}

#details h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #000;
}

#details p {
    font-size: 0.9em;
    color: #333;
    line-height: 1.4;
    padding-bottom: 30px;
    
}
#details h1{
    justify-content: center;
    text-align: center;
    padding-bottom: 30px;
    font-size: 2rem;
    color: #fff;
}

/* Calculadora CMI */
#calculadora-cmi {
    background: #2c2c2c;
    padding: 32px 0;
}
#calculadora-cmi .container {
    
    margin: 0 auto;
    padding: 0;
    height: auto;
    min-height: 0;
}

/* Ajuste do iframe para acompanhar o form-wizard-cmi */
#calculadora-cmi iframe {
    width: 100%;
   
    
    min-height: 450px;
    max-height: 900px;
    
    margin: 0 auto;
    display: block;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: none;
}

/* Responsivo para o formulário do wizard */
@media (max-width: 700px) {
    #form-wizard-cmi {
        max-width: 96vw;
        padding: 18px 6vw;
        margin: 18px auto;
    }
    #calculadora-cmi iframe {
        max-width: 96vw;
        min-width: 0;
       
        height: auto;
    }
}
 @media (max-width: 480px) {
    #calculadora-cmi iframe {
    
    min-height: 500px;
   
}
} 
@media (max-width: 429px) {
    #calculadora-cmi iframe {
    
    min-height: 520px;
   
}
} 
@media (max-width: 379px) {
    #calculadora-cmi iframe {
    
    min-height: 560px;
   
}
} 
/* Calculadora CMI - layout flex com CTA */
.calculadora-cmi-flex {
    display: flex;
    align-items: stretch;
    gap: 100px;
    
    margin: 0 auto;
    padding: 0 10px;
}
.calculadora-cmi-cta {
    
    color: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.calculadora-cmi-cta h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 14px;
    color: #d4a017;
}
.calculadora-cmi-cta p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #fff;
}
.cta-button-cmi {
    display: inline-block;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1.15rem;
    text-decoration: none;
    margin-bottom: 22px;
    max-width: 300px;
    transition: background 0.2s;
}
.cta-button-cmi i {
    margin-right: 8px;
    font-size: 1.2em;
}
.cta-button-cmi:hover {
    background: #1ebc59;
    color: #fff;
}
.calculadora-cmi-cta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.calculadora-cmi-cta ul li {
    font-size: 1.08rem;
    margin-bottom: 12px;
    color: #fff;
}
.calculadora-cmi-cta ul li i {
    color: #25D366;
    margin-right: 8px;
    font-size: 1.1em;
}
.calculadora-cmi-iframe {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: none;
    min-width: 420px;
    max-width: 540px;
    width: 100%;
    
    margin: 0;
    display: block;
    flex: 1 1 520px;
}

/* Formulário de orçamento - visual integrado */
.orcamento-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    
    font-family: 'Poppins', Arial, sans-serif;
    max-width: 540px;
    min-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.orcamento-form h2 {
    color: #d4a017;
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.6rem;
}
.orcamento-form label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #222;
}
.orcamento-form select,
.orcamento-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1.08em;
    margin-bottom: 12px;
    background: #f7f7f7;
    color: #222;
    transition: border 0.2s;
}
.orcamento-form input:focus,
.orcamento-form select:focus {
    border: 1.5px solid #25D366;
    outline: none;
}
.orcamento-form button {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 0;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}
.orcamento-form button:hover {
    background: #1ebc59;
}
.msg-sucesso {
    color: #218838;
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
}
.msg-erro {
    color: #c82333;
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
}

/* Responsivo */
@media (max-width: 1100px) {
    .calculadora-cmi-flex {
        flex-direction: column;
        gap: 18px;
        max-width: 100vw;
    }
    .calculadora-cmi-cta {
        max-width: 100vw;
        min-width: 0;
        padding: 28px 10px;
    }
    .calculadora-cmi-iframe {
        max-width: 100vw;
        min-width: 0;
        height: 560px;
    }
}
@media (max-width: 700px) {
    .calculadora-cmi-flex {
        flex-direction: column;
        gap: 12px;
        max-width: 100vw;
    }
    .calculadora-cmi-cta {
        max-width: 100vw;
        min-width: 0;
        padding: 18px 6vw;
    }
    .calculadora-cmi-iframe {
        max-width: 100vw;
        min-width: 0;
        height: 520px;
    }
    .orcamento-form {
        max-width: 99vw;
        min-width: 0;
        padding: 18px 6vw;
    }
}
@media (max-width: 480px) {
    .calculadora-cmi-cta {
        padding: 10px 2vw;
    }
    .calculadora-cmi-iframe {
        min-width: 0;
        height: 480px;
    }
    .orcamento-form {
        max-width: 99vw;
        min-width: 0;
        padding: 10px 2vw;
    }
}

/* CTA Assine - Convincente */
.cta-assine-container {
    width: 100%;
    max-width: none;
    border-radius: 0;
    margin: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    background: linear-gradient(90deg, #232323 60%, #292929 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 48px 0;
    flex-wrap: wrap;
}
.cta-assine-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 220px;
    max-width: 280px;
    flex: 0 1 260px;
    justify-content: center;
}
.cta-assine-svg {
    width: 110px;
    height: 110px;
    margin-bottom: 8px;
    display: block;
}
.cta-assine-icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 1.08rem;
    color: #fff;
    width: 100%;
}
.cta-assine-icons span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background: rgba(36,36,36,0.7);
    padding: 8px 16px;
    border-radius: 8px;
}
.cta-assine-icons i {
    color: #d4a017;
    font-size: 1.3em;
}
.cta-assine-texto {
    color: #fff;
    max-width: 540px;
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: flex-start;
}
.cta-assine-texto h2 {
    color: #d4a017;
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
}
.cta-assine-texto p {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #fff;
    text-align: left;
    width: 100%;
}
.cta-assine-texto ul {
    list-style: none;
    margin: 0 0 22px 0;
    padding: 0;
    width: 100%;
}
.cta-assine-texto ul li {
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cta-assine-texto ul li i {
    color: #25D366;
    font-size: 1.2em;
}
.cta-assine-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}
.cta-assine-btns .cta-button-cmi {
    display: inline-block;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1.15rem;
    text-decoration: none;
    margin-bottom: 22px;
    max-width: 500px;
    transition: background 0.2s;
}

.cta-button-cmi.cta-button-cmi-sec {
    background: #d4a017;
    color: #232323;
}
.cta-button-cmi.cta-button-cmi-sec:hover {
    background: #ff9100;
    color: #232323;
}

/* Responsivo */
@media (max-width: 900px) {
    .cta-assine-container {
        flex-direction: column;
        gap: 28px;
        padding: 32px 0;
        width: 100%;
    }
    .cta-assine-visual {
        max-width: 100vw;
        min-width: 0;
    }
    .cta-assine-texto {
        max-width: 100vw;
        min-width: 0;
    }
}
@media (max-width: 550px) {
    .cta-assine-container {
        padding: 24px 16px;
    }
    .cta-assine-visual {
        display: none;
    }
    .cta-assine-svg {
        width: 64px;
        height: 64px;
        margin-bottom: 0;
    }
    .cta-assine-icons {
        gap: 10px;
    }
    .cta-assine-icons span {
        font-size: 1rem;
        padding: 7px 12px;
    }
    .cta-assine-texto h2 {
        font-size: 2rem;
        text-align: center;
    }
    .cta-assine-texto p,
    .cta-assine-texto ul li {
        font-size: 0.98rem;
    }
    .cta-assine-btns .cta-button-cmi {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}
@media (max-width: 480px) {
    .cta-assine-container {
        padding: 18px 10px;
        gap: 10px;
    }
    .cta-assine-svg {
        width: 48px;
        height: 48px;
    }
    .cta-assine-texto h2 {
        font-size: 2rem;
    }
    .cta-assine-icons span {
        font-size: 0.95rem;
        padding: 6px 8px;
    }
    .cta-assine-btns .cta-button-cmi {
        font-size: 1rem;
        padding: 10px 14px;
    }
}
#atendimento-24h {
    background: linear-gradient(90deg, #232323 60%, #292929 100%);
    padding: 48px 0 32px 0;
    width: 100%;
}
.atendimento-24h-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 16px;
}
.atendimento-24h-title {
    color: #ffc32a;
    font-size: 2.2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 36px;
    letter-spacing: 1px;
}
.atendimento-24h-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 40px;
}
.atendimento-24h-item {
    background: #232323;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(211, 208, 37, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 8px;
    transition: box-shadow 0.2s;
}
.atendimento-24h-item:hover {
    box-shadow: 0 6px 18px rgba(208, 211, 37, 0.22);
}
.atendimento-24h-img {
  width: 100%;
    max-width: 300px;
    max-height: 300px;
    border-radius: 12px;
    margin-bottom: 10px;
    object-fit: cover;
   
    display: block;
}
.atendimento-24h-text {
    color: #fff;
    text-align: center;
    margin-top: 8px;
}
.atendimento-24h-text strong {
    color: #ffc32a;
    font-size: 1rem;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-bottom: 4px;
    font-weight: 500;
}
.atendimento-24h-text p {
    font-size: 0.92rem;
    max-width: 300px;
    width: 100%;
    color: #eaeaea;
    opacity: 0.8;
    margin: 0;
}

/* Responsivo */
@media (max-width: 1100px) {
    .atendimento-24h-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        flex-wrap: wrap;
    }
    .atendimento-24h-img {
        max-width: 350px;
        max-height: 350px;
    }
}
@media (max-width: 700px) {
    #atendimento-24h {
        padding: 32px 0 18px 0;
    }
    .atendimento-24h-title {
        font-size: 1.4rem;
        margin-bottom: 22px;
    }
    .atendimento-24h-grid {
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    .atendimento-24h-item {
        padding: 12px 4px;
        margin: 0 15px;
    }
    .atendimento-24h-img {
        width: 100vw;
        max-width: 350px;
        max-height: 350px;
        margin-bottom: 6px;
    }
    .atendimento-24h-text strong {
        font-size: 0.95rem;
        max-width: 350px;
    }
    .atendimento-24h-text p {
        font-size: 0.88rem;
        max-width: 350px;
    }
}@media (max-width: 380px) {
    #atendimento-24h {
        padding: 32px 0 18px 0;
    }
    .atendimento-24h-title {
        font-size: 1.4rem;
        margin-bottom: 22px;
    }
    .atendimento-24h-grid {
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    .atendimento-24h-item {
        padding: 12px 4px;
        margin: 0 15px;
    }
    .atendimento-24h-img {
        width: 100vw;
        max-width: 310px;
        max-height: 310px;
        margin-bottom: 6px;
    }
    .atendimento-24h-text strong {
        font-size: 0.95rem;
        max-width: 310px;
    }
    .atendimento-24h-text p {
        font-size: 0.88rem;
        max-width: 310px;
    }
}