*   {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
}

p, ul li, input, button, nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.2px;
    color: #4b5563;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    /*background: #f7f7f7;*/
    /*box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);*/
    z-index: 999;
    padding:6px 0px !important;
    background-color: rgb(248, 249, 250) !important;
    box-shadow:
-12px 0 30px rgba(0, 0, 0, 0.10),
    12px 0 30px rgba(0, 0, 0, 0.10);
}

/* ESCONDE O HEADER */
header.hide {
    transform: translateY(-100%);
}

/* Classe de estilo para ajuste da margem top dos menus na ação de scroll up*/
.scroll-ajuste {
    scroll-margin-top: 70px;
}

/* NAV */

.container-fluid {
    padding: 0 20px;
}

.navbar-brand {
    padding: auto;
}

.nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo {
    font-weight: 700;
    color: #25D366;
    font-size: 1.3rem;
    width: 100%;
    /*max-width: 120px;*/
    max-width: 220px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s;          
}

.nav a:hover {
    color: #222;
}

/* ===== HERO ===== */
.hero {
    padding-top: 0px;
    /*min-height: 85vh;*/
    display: flex;
    align-items: center;
    background: #f9fafb;
    justify-content: center;   
    padding: 35px 5px;       
}

.bg-body-tertiary {
    background-color: rgb(248, 249, 250) !important;
    padding: 0px;
}

.carousel {
    /*max-width: 1080px !important;*/
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.hero-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

.hero img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    max-width: 900px;
    margin: 0 auto;
}

/* ==== main ====*/
main {
    padding: 0px 0px;      
}

/* ===== SEÇÕES ===== */
section {
    /*padding: 90px 0;*/
    padding: 90px 0 0px 0;
}

h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
}

/* ===== SOBRE ===== */

.about {
    padding: 20px 0px 40px;
}

.about p {
    max-width: 800px;
    margin: auto;
    text-align: justify;
    color: #666;
    line-height: 1.8;
}

/* ===== SERVIÇOS ===== */

.servicos {
    /*padding: 0px 0px 20px;*/
    background-color: #f9fafb;
    width: 100%;
    /*max-width: 2000px !important;*/
    /*max-width: 1200px;*/
    padding: 20px 0px 40px;
}

.servicos p {
    max-width: 800px;
    margin: auto;
    text-align: justify;
    color: #666;
    line-height: 1.8;
}

.services-grid-principal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
    width: 100%;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    max-width: 100px;
    margin: 0 auto 0px;
    display: block;
}

.card h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #111827;
}

/* LISTA HORIZONTAL */
.services-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    background: rgba(235, 208, 121, .6);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
}

.card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 20px;
}

.card p {
    color: #666;
    /*font-size: 0.95rem;*/
}

/* ===== GALERIA ===== */

.galeria {    
    padding: 20px 0px 40px;
}

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

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.carousel {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    /*background: #fff;*/
}

/* =========================
   GALERIA DE VÍDEOS
  ========================= */

.videos {
    padding: 20px 0px 40px;
    /*background: #fff;*/
}

.videos-desc {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
    color: #6b7280;
}

.videos-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ececec;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}

.video-wrapper {
    position: relative;

    width: 100%;

    padding-top: 56.25%;

    overflow: hidden;
}

.video-wrapper video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.video-content {
    padding: 22px;
}

.video-content h3 {
    font-size: 1.3rem;

    margin-bottom: 12px;

    color: #111827;
}

.video-content p {
    color: #6b7280;

    line-height: 1.7;
}

/* ===== DEPOIMENTOS ===== */
/*.depoimentos {
    padding: 20px 0px 40px;
}*/

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

.test {
    background: #f9f9f9;
    /*padding: 25px;*/
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
}

.stars {
    color: #D1A752;
    /*margin-bottom: 10px;*/
}

.test p {
    margin-bottom: 0px;
}

/* ===== CONTATO ===== */
.contato {
    padding: 20px 0px 40px;
}

main {
    position: relative;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.88)
        ), url('../imagens/bg_principal.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}


main h2 {
    color: #1e293b;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}


#contato input,
#contato textarea {
    background: rgba(255,255,255,0.85);

    border: 1px solid rgba(0,0,0,0.08);

    border-radius: 14px;

    transition: all .3s ease;
}

#contato input:focus,
#contato textarea:focus {
    border-color: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34,197,94,0.15);

    outline: none;
}





























.contact {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: auto;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
}

input,
textarea {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
}

.msg_erro {
    text-align: left;
    float: left;
    color: #f00;
    margin-top: -8px;
    width: 100%;
}

.hide {
    display: none;
}

#btnWhatsapp {
    margin-top: 20px;
}

/* =========================
* SWIPER (Galeria)
  ========================= */

    section h1 {
        margin: 0 auto;
        text-align: center;
    }

    /*.container {
        max-width: 1300px;
        margin: auto;
    }*/

    .titulo {
        text-align: center;
        margin-bottom: 40px;
    }

    .titulo h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .titulo p {
        color: #777;
    }

    /* Tabs */

    .tabs {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 35px;
    }

    .tab-btn, .tab-btn1 {
        border: none;
        padding: 14px 14px;
        border-radius: 8px;
        background: white;
        cursor: pointer;
        transition: 0.3s;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }

    .tab-btn:hover, .tab-btn1:hover {
        transform: translateY(-2px);
    }

    .tab-btn.active, .tab-btn1.active {
        background: #1f2937;
        color: white;
    }

    /* Conteúdo */

    .categoria, .categoria1 {
        display: none;
    }

    .categoria.active, .categoria1.active {
        display: block;
    }

    .swiper {
        padding-bottom: 40px;
    }

    .card_ {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        margin: 26px 0px;
    }

    .card_:hover {
        transform: translateY(-5px);
    }

    .card_ img {
        width: 100%;
        /*height: 320px;*/
        object-fit: cover;
        cursor: pointer;
        max-width: 600px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .card-content p {
        color: #666;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .btn-orcamento {
        display: inline-block;
        background: #111827;
        color: white;
        text-decoration: none;
        padding: 12px 18px;
        border-radius: 10px;
        transition: 0.3s;
    }

    .btn-orcamento:hover {
        background: #374151;
    }

    /* Lightbox */

    .lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.9);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 999;
        padding: 80px;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }

    .lightbox.active {
        display: flex;
    }

    .fechar {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        cursor: pointer;
    }

    /* Setinhas Swiper */

    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
        background: rgba(17, 24, 39, 0.9);
        border-radius: 50%;
        color: white;
        transition: 0.3s;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: #374151;
        transform: scale(1.05);
    }

    /* Ícone menor */

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
        font-weight: bold;
    }

    /* Mostrar apenas no desktop */

    @media (max-width: 767px) {
        .swiper-button-prev,
        .swiper-button-next {
            display: none;
        }
    }

/* =========================
   GOOGLE REVIEWS
========================= */

.google-reviews {
    /*padding: 0px 20px;*/
    padding: 20px 0px 40px;
    background: #f9fafb;
    margin: 0 auto;
}

/*.container {
    max-width: 1300px;
    margin: 0 auto;
}*/

/* Header */

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.reviews-header img {
    width: 70px;
}

.reviews-info h2 {
    font-size: 2.8rem;
    color: #111827;
    margin-bottom: 10px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.rating {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
}

.stars {
    color: #fbbf24;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.reviews-rating p {
    color: #6b7280;
    margin-bottom: 0px;
}

.reviews-info h5 {
  text-align: left;
}

/* Grid */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(320px, 1fr)
    );
    gap: 25px;
}

/* Card */

.review-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: 0.35s;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Top */

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #111827;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.avatar img {
  width: 55px;
  height: 55px;
}

.user h4 {
    color: #111827;
    margin-bottom: 5px;
}

.user span {
    color: #6b7280;
    font-size: 14px;
}

.google-icon {
    width: 28px;
}

/* Texto */

.review-card p {
    color: #4b5563;
    line-height: 1.8;
    margin-top: 15px;
}

/* Botão */

.reviews-button {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.reviews-button a {
    display: inline-block;
    background: #111827;
    color: white;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.reviews-button a:hover {
    background: #1f2937;
    transform: translateY(-3px);
}

/* =========================
   FOOTER
========================= */

/* ===== FOOTER ===== */
    .footer{
    background:#111;
    color:#fff;
    padding: 50px 20px 30px;
  }

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

  .footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    margin-bottom:50px;
  }

  .footer-brand h2{
    font-size:2rem;
    margin-bottom:20px;
    color:#D1A752;
    margin-left: 0px;
    padding-left: 0px;
    text-align: left;
  }

  .footer-brand p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:30px;
    max-width:450px;
  }

  .whatsapp-btn{
    display:inline-block;
    background:#D1A752;
    color:#222;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
  }

  .whatsapp-btn:hover{
    background:#b5872d;
    color:#fff;
    transform:translateY(-3px);
  }

  .footer-links {
    text-align: center;
  }

  .footer-social {
    text-align: center;
  }

  .footer-links h3,
  .footer-social h3{
    margin-bottom:25px;
    font-size:1.2rem;
  }

  .footer-links ul{
    list-style:none;
    text-align: center;
    padding-left: 0px;
  }

  .footer-links ul li{
    margin-bottom:15px;
  }

  .footer-links ul li a{
    color:#bbb;
    text-decoration:none;
    transition:0.3s ease;
  }

  .footer-links ul li a:hover{
    color:#D1A752;
  }

  .social-icons{
    display:flex;
    gap:15px;
    text-align: center;
    justify-content: center;
  }

  .social-icons a{
    width:40px;
    height:40px;
    background:#222;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    text-decoration:none;
    font-size:1.2rem;
    transition:0.3s ease;
  }

  .social-icons a:hover{
    background:#f1f2f3;
    transform:translateY(-4px);
  }

  .social-icons-mail {
    background-color: #f1f2f3 !important; 
    border-radius: 8px !important;
    opacity: .8;
  }

  .social-icons-mail:hover {
    opacity: 1;
  }

  .gmail-icon {
    width: 31px;
    height: 31px; 
    min-width: 31px;
  }

  .footer-bottom{
    border-top:1px solid #222;
    padding-top:25px;
    text-align:center;
  }

  .footer-bottom p{
    color:#888;
    font-size:0.95rem;
  }

  .social-icons img {
    width: 105%;
    border-radius: 10px;
  }

  /* =========================
  * WHATSAPP FLOAT BUTTON
  ========================= */

  .whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    background:#25d366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:38px;
    text-decoration:none;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    z-index:999;
    animation:pulse 1.5s infinite;
  }

  @keyframes pulse{
      0%{
        transform:scale(1);
      }
      50%{
        transform:scale(1.08);
      }
      100%{
        transform:scale(1);
      }
  }

  /* =========================
  * JANELA MODAL GALERIA
  ========================= */

  /* Modal - centralização real */
  .modal {
    display: none; /* estado inicial oculto */
    position: fixed;
    z-index: 999;
    inset: 0;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  /* Imagem no modal */
  .modal-conteudo {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
  }

  /* Animação suave */
  @keyframes zoomIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Botão fechar moderno */
  .fechar {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);

    color: #fff;
    font-size: 24px;
    font-weight: bold;

    cursor: pointer;
    transition: 0.3s;
  }

  /* Hover elegante */
  .fechar:hover {
    background: rgba(255,255,255,0.3);
    /*transform: rotate(90deg) scale(1.1);*/
  }


/* =========================
* TERMO DE GARANTIA
  ========================= */

/* BOTÃO */

.garantia-btn-wrapper {
    text-align: left;
    margin: 40px 0;
}

.btn-garantia {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #D1A752 0%, #E7C46E 100%);
    color: #111827;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-garantia:hover {
    transform: translateY(-4px);
    /*box-shadow: 0 18px 40px rgba(209,167,82,0.35);*/
}


/* MODAL */

.garantia-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

/* Ativo */

.garantia-modal.active {
    display: flex;
}

/* Conteúdo */

.garantia-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 30px;
    padding: 25px;
    position: relative;
    max-height: 90vh;
    /*overflow-y: auto;*/
    overflow-y: auto;
    /* Firefox */
    scrollbar-width: none;
    /* IE e Edge antigo */
    -ms-overflow-style: none;
    animation: modalFade 0.35s ease;
}

/* Chrome, Safari e Edge */

.garantia-modal-content::-webkit-scrollbar {
    display: none;
}

/* Animação */

@keyframes modalFade {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* Fechar */

.garantia-fechar {
    position: sticky;
    top: 0px;
    margin-left: auto;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;
    color: #111827;

    font-size: 34px;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);

    transition: 0.3s;

    z-index: 20;
}

.garantia-fechar:hover {
    transform: scale(1.08);
    background: #111827;
    color: white;
}

/* Header */

.garantia-header {
    text-align: center;
    margin-bottom: 20px;
}

.garantia-grid p, .garantia-grid ul li, .garantia-grid h3 {
    color: #6b7280;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

.garantia-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: #f4e3aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garantia-icon img {
    width: 60px;
}

.garantia-tag {
    display: inline-block;
    background: #111827;
    color: white;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
}

.garantia-header h2 {
    font-size: 3rem;
    color: #111827;
    margin-bottom: 20px;
}

.garantia-header p {
    color: #6b7280;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

/* Grid */

.garantia-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(240px, 1fr)
    );
    gap: 25px;
}

/* Card */

.garantia-item {
    background: #f9fafb;
    border-radius: 22px;
    padding: 30px;
    border: 1px solid #ececec;
    transition: 0.3s;
}

.garantia-item:hover {
    transform: translateY(-4px);
    background: white;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.garantia-item h3 {
    margin-bottom: 15px;
    color: #111827;
}

.garantia-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Footer */

.garantia-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #ececec;
    text-align: center;
}

.garantia-footer p {
    color: #9ca3af;
    line-height: 1.7;
}

/* Responsivo */

@media(max-width:992px) {

    .footer-content{
      grid-template-columns:1fr;
      text-align:center;
    }

    .footer-brand p{
      margin:auto auto 30px;
    }

    .social-icons{
      justify-content:center;
    }

  }

  /* RESPONSIVO */
@media (max-width: 768px) {

    .contact {
        padding: 25px;
    }

    .nav {
        justify-content: center;
        padding: 10px 20px;
    }

    .hero {
        min-height: auto;
        background-color: transparent;
        padding-top: 0px;
        padding: 0px;
    }

    .hero img {
        box-shadow: none;
    }

    .menu {
        margin-top: 15px;
    }

    .card {
        padding: 25px 18px;
    }

    .card h3 {
        font-size: 1.6rem;
    }

    .services-list {
        gap: 10px;
    }

    .services-list li {
        font-size: 0.95rem;
        padding: 8px 14px;
    }

    section {
      padding: 0px;
      
    }

    main {
      /*padding: 20px 20px;*/
      padding: 20px 0px;
    }

    .titulo h1 {
        font-size: 2rem;
    }

    /*.card img {
        height: 240px;
    }*/

    .lightbox {
        padding: 20px;
    }

    .nav a {
      margin: 0 2px;
      font-size: 15px;
    }

    .reviews-button {
        text-align: center;
        margin-top: 30px;
    }

    .footer{
      padding:60px 20px 25px;
    }

    .footer-brand h2{
      font-size:1.7rem;
    }

    .container {
      /*padding: 5px 0px;*/
      padding: 15px 25px;
    }

    .titulo h5 {
      margin-top: 15px;
    }

    .carousel {
      margin-top: 5px;
    }

    .garantia-modal-content {
        padding: 35px 25px;
    }

    .garantia-header h2 {
        font-size: 2rem;
    }

    .google-reviews {
        padding: 20px 20px;
        margin: 15px 0px;
        justify-content: center;
    }

    .review-card {
      text-align: center;      
    }

    .reviews-grid {
      grid-template-columns: none;
      justify-content: center;
    }

    .reviews-info h2 {
        font-size: 2rem;
    }

    .rating {
        font-size: 1.6rem;
    }

    .reviews-info h5 {
      text-align: center;
    }

    .user span {
      text-align: left;
      float: left;
    }

    .garantia-btn-wrapper {
        text-align: center;
    }

    .footer-brand h2 {
        text-align: center;
    }

    .logo {
        max-width: 190px;
    }

    .container-fluid {
        padding: 0 20px;
    }

    main h2 {
        color: #1e293b;
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 40px;
        text-align: center;
    }

    p, ul li, input, button, nav a {
        font-family: 'Poppins', sans-serif;
        font-size: .97rem !important;
        font-weight: 400;
        line-height: 1.9;
        letter-spacing: 0.2px;
        color: #4b5563;
    }

    .navbar-toggler {
        font-size: 1.30rem !important;
    }

    .tab-btn, .tab-btn1 {
        padding: 10px 10px;
    }

    .tabs {
        margin-bottom: 15px;
    }

    #depoimentos .container {
        padding: 15px 10px;
    }

    .garantia-texto p, .garantia-texto h3, .garantia-texto ul li, .garantia-header p {
        text-align: left;
    }

    .garantia-grid ul {
        padding-left: 1rem !important;
    }
}


