/* REVIEWS SECTION */
/*
╔══════════════════════════════════════════════════════════╗
║                                                          ║
║   Yunna & CO. | Estudio Criativo                         ║
║   Transformando ideias em experiências online            ║
║                                                          ║
║   Contato: contato@yunnaestudio.com                      ║
║   Website: https://yunnaestudio.com                      ║
║   Todos os direitos reservados © 2025                    ║
║                                                          ║
╚══════════════════════════════════════════════════════════╝
*/




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

body {
    background: #dfe6ec;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 350px;
    background: #447c9b;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

header h1 {
    font-size: 60px;
    letter-spacing: 5px;
}

header p {
    margin-top: 10px;
}

/* SECTION PROBLEMAS */
.problemas {
    margin-bottom: -30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card img {
    width: 80%;
    border-radius: 10px;
    margin-top: 10px;
}

.card i{
    color: #b91212;
}

.atencao{
    color: #b91212;
}

.lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lista i {
    color: red;
}

.item {
    font-size: 16px;
    background: white;
    padding: 15px;
    border-radius: 10px;
}


.titulo {
    font-weight: bold;
    font-size: 22px;
}

.titulo span {
    color: #e74c3c;
font-weight: bold;
}

.icone-erro {
    color: #e74c3c; /* vermelho mais elegante */
    margin-right: 8px;
}


/* CTA */
.cta {
    text-align: center;
    margin-top: 50px;
}

.cta button {
    margin-bottom: 50px;
    background: #447c9b;
    border: none;
    padding: 35px 95px;
    border-radius: 10px;
    color: white;
    cursor: pointer;

    font-family: 'Comfortaa', sans-serif;
font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}


/* PARCEIROS */
.parceiros {
    background: #447c9b;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.parceiros img {
    width: 80px;
   
}

/* AVALIAÇÕES */
.avaliacoes {
    padding: 60px 20px;
    text-align: center;
}

.cards-avaliacao {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}



.avaliacao {
    background: white;
    padding: 20px;
    border-radius: 15px;
    max-width: 250px;
}

/* FOOTER */
footer {
  background-color: #447c9b;
  color: #fff;
}

/* CONTAINER PRINCIPAL */
.rodape-topo {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 50px 20px 10px 50px;
    flex-wrap: wrap;

    max-width: 1200px;
    margin: 0 auto; /* 👈 ISSO resolve */
}


@media (max-width: 768px) {
    .rodape-topo {
        flex-direction: column;
                gap: 42px;
    }
}


/* COLUNAS */
.rodape-topo div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* LOGO */
.rodape-topo img {
  width: 250px;
}

/* TÍTULOS */
.rodape-topo h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

/* LINKS */
.rodape-topo a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.rodape-topo a:hover {
  opacity: 0.8;
}

/* ÍCONES */
.rodape-topo i {
  font-size: 22px;
}

/* PARTE INFERIOR */
.rodape-inferior {
    margin-top: 40px;
    width: 100%;
    text-align: center;
    padding: 15px 1px 1px 1px;
    font-size: 13px;
    color: #fff;
}
/* RESPONSIVO */
@media (max-width: 768px) {
    header h1 {
        font-size: 35px;
    }

    .problemas {
        flex-direction: column;
        align-items: center;
    }

    .cards-avaliacao {
        flex-direction: column;
        align-items: center;
    }
}
.logo-texto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


@media (max-width: 768px) {
    .logo-texto  {
        flex-direction: column;
    }
}



.titulo-principal {
    font-family: 'Comfortaa', sans-serif;
    font-weight: bold;
    font-size: 70px;
    margin: 0;
}

.subtitulo {
    text-align: left;
    font-family: 'Comfortaa', sans-serif;
    font-weight: normal;
    font-size: 25px;
    margin: 0;
}

.xis {
    color: #b91212;
    font-weight: 400;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: aparecer 1s ease forwards;
}

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


.rodape-topo h1{
    font-family: 'Comfortaa', sans-serif;
    font-weight: bold;
    font-size: 50px;
    margin: 0;
}

.rodape-topo h2{
    text-align: left;
    font-family: 'Comfortaa', sans-serif;
    font-weight: normal;
    font-size: 15px;
    margin: 0;
}




.cards-horizontal {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 768px) {
    .cards-horizontal {
        flex-direction: column;
    }
}
.card {
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}


@media (max-width: 768px) {
    .card {
              width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}
}


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

/* imagem + degradê */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  position: relative;
}

.card::before {
  content: "";
  position: relative;
    width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 60%, #fff 100%);
  top: 0;
  left: 0;
}

.card-content {
  padding: 20px;
  position: relative;
}

.icon {
  width: 40px;
  height: 40px;
  background: #e6f0ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;
}

.card-content h3 {
  margin: 0 0 8px;
  color: #1e293b;
}

.card-content p {
  color: #64748b;
  font-size: 14px;
}




.cards-vertical {
  margin: 1px auto;
  display: flex;
  flex-direction: column;
}

.row-card {
  max-height: 150px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

.row-card.reverse {
  flex-direction: row-reverse;
}

/* container da imagem */
.image {
  width: 100%;
  position: relative;
}

.image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* 🔥 DEGRADÊ IGUAL AO MOCKUP */
.image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, #ffffff 100%);
}

/* quando invertido */
.row-card.reverse .image::after {
  left: 0;
  right: auto;
  background: linear-gradient(to left, rgba(255,255,255,0) 0%, #ffffff 100%);
}

.content {
  width: 50%;
  padding: 30px;
}

.icon {
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: #6e7279;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.icon2 {
    margin-left: 90px;
    margin-top: -240px;
    position: absolute;
    width: 42px;
    height: 42px;
    background: #2f4f63;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
.icon2 {
    margin-left: 115px;
    margin-top: -240px;
    position: absolute;
    width: 42px;
    height: 42px;
    background: #2f4f63;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
}

.content h3 {
  margin: 0 0 10px;
  color: #2f4f63;
}

.content p {
  color: #2f4f63;
  font-size: 15px;
}





.clientes {
  text-align: center;
  color: #fff;
}

.clientes h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.clientes p {
  opacity: ;
  margin-bottom: 50px;
}

/* carousel */
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.carousel-track {
  display: flex;
  gap: 30px;
  padding: 20px;
  width: max-content; /* 👈 ESSENCIAL */
}
.carousel-wrapper {
overflow: visible; /* 👈 aqui limita */
  max-width: 900px;
}
/* Chrome, Edge, Safari */
.carousel-container::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.carousel-container {
  scrollbar-width: none;
}

/* IE antigo (opcional) */
.carousel-container {
  -ms-overflow-style: none;
}

/* CARD DOS LOGOS */



.logo-card {
  position: relative;
  overflow: visible;
}

/* nome escondido */
.logo-name {
  position: absolute;
  bottom: 80%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  background: #1e293b;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;

  opacity: 0;
  transition: 0.3s;
}

/* efeito ao passar o mouse */
.logo-card:hover .logo-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.logo-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 20px 30px;
  min-width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: 0.3s;
}

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


.logo-card img {
  max-height: 50px;
}




/* BOTÕES */
.btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.btn:hover {
  background: rgba(255,255,255,0.25);
}


/* animação */
@keyframes aparecerSuave {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* aplica na logo */
.logo-texto {
  opacity: 0;
  animation: aparecerSuave 1s ease forwards;
}


.titulo-principal {
  opacity: 0;
  animation: aparecerSuave 1s ease forwards;
}

.subtitulo {
  opacity: 0;
  animation: aparecerSuave 1s ease forwards;
  animation-delay: 0.3s;
}




.rodape-topo h1,
.rodape-topo h2 {
  opacity: 0;
  transform: translateY(20px);
  animation: subirFade 0.8s ease forwards;
}

.rodape-topo h2 {
  animation-delay: 0.3s; /* entra depois */
}

/* animação */
@keyframes subirFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.redes-sociais {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icones-redes {
  display: flex;
  gap: 15px;
}

.icones-redes a {
  font-size: 22px;
  color: #fff;
  transition: 0.3s;
}

.icones-redes a:hover {
  transform: translateY(-3px);
}.icones-redes {
  display: flex;
  flex-direction: row !important;
  gap: 15px;
}

.icones-redes a {
  display: inline-flex !important;
}



.logo-card {
  position: relative;
  z-index: 5;
}




/* container */
.carousel-container {
  width: 950px;
  overflow-x: auto;
  overflow-y: visible;
}
/* 👇 permite tooltip aparecer pra cima */
.carousel-wrapper {
  overflow: visible;
}

.logo-card {
  position: relative;
  z-index: 2;
}





/* Caixa escondida inicialmente */
.chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
}

/* Cabeçalho */
.chat-header {
    background: #2b2f2c;
    color: white;
    padding: 12px;
    font-weight: bold;
}

/* Conteúdo */
.chat-body {
    padding: 15px;
}

.chat-body p {
    margin: 0 0 10px;
    font-size: 14px;
}

/* Botões */
.chat-option {
    display: block;
    background: #f1f1f1;
    padding: 10px;
    margin-top: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
}

.chat-option:hover {
    background: #e0e0e0;
}

/* Botão flutuante */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2b2f2c;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card-link{
    text-decoration:none;
    color:inherit;

    display:flex;
} 
.posts-button-area {
    max-width: 1030px;
    margin: 25px auto 0 auto;

    display: flex;
    justify-content: flex-end;
}



.posts-button{
    text-decoration:none;
}


.posts-button {
    background: transparent;
    border: none;
    cursor: pointer;

    font-family: 'Comfortaa', sans-serif;
    font-size: 22px;
    font-weight: bold;

       color: #1e293b;

    transition: 0.3s;
}

.posts-button:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .posts-button-area {
        justify-content: center;
        padding-right: 0;
    }

    .posts-button {
        font-size: 18px;
    }
}




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

.clima-gallery-custom{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;

padding: 1px 5%;
}



/* ========================= */
/* CONFIG GERAL */
/* ========================= */

.clima-img-left,
.clima-img-center,
.clima-img-right{

    position:relative;
    overflow:hidden;

    border-radius:30px;

    transition:.4s ease;


}



/* IMAGENS */

.clima-img-left img,
.clima-img-center img,
.clima-img-right img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}



/* ========================= */
/* ESQUERDA */
/* ========================= */

.clima-img-left{

    width:26%;
    height:360px;

    opacity:.85;

    z-index:2;

    transform:
    scale(.95)
    translateX(85px);

}



/* ========================= */
/* CENTRAL */
/* ========================= */

.clima-img-center{

    width:40%;
    height:460px;

    z-index:5;

margin: -50px -140px;

    transform:
    translateY(-10px);
                    

}



/* ========================= */
/* DIREITA */
/* ========================= */

.clima-img-right{

    width:26%;
    height:360px;

    opacity:.85;

    z-index:2;

    transform:
    scale(.95)
    translateX(-85px);

}


/* ========================= */
/* HOVER */
/* ========================= */

/* clima-img-left:hover,
.clima-img-center:hover,
.clima-img-right:hover{

    transform:
    translateY(-10px);

} */



/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media(max-width:980px){

    .clima-gallery-custom{

        flex-direction:column;

        gap:20px;
    }

    .clima-img-left,
    .clima-img-center,
    .clima-img-right{

        width:100% !important;

        height:320px !important;

        margin: -50px !important;

        transform:none !important;

    }

}











/* ========================= */
/* BENEFITS */
/* ========================= */

.clima-benefits {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clima-benefit-item2 {
    border-radius: 10px;
    padding: 10px;
    /* background: #ffffff6b; */
    position: absolute;
    z-index: 999;
    display: flex;
    gap: 18px;
    margin-top: 50px;
    margin-bottom: -70px;
}

.clima-benefit-item3 {
    MARGIN-LEFT: -850PX;
    MARGIN-TOP: 320PX;
    border-radius: 10px;
    padding: 10px;
    background: #ffffff6b;
    position: absolute;
    z-index: 999;
    display: flex;
    gap: 18px;
    transform: rotate(-90deg);
}

/* ITEM */

.clima-benefit-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 38px;
}



/* REMOVE BORDA ÚLTIMO */

.clima-benefit-item:last-child{
    border-right:none;
}

.clima-benefit-icon2 {
    min-width: 68px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}


/* ICON */

.clima-benefit-icon {
    min-width: 68px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}



/* TEXT */

.clima-benefit-text h3 {
    text-align: left;
    font-family: 'Comfortaa', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #447c9b;
    line-height: 1.1;
    margin-bottom: 4px;
}

.clima-benefit-text h3 span{
    color:#447c9b;
}



/* PARÁGRAFO */
.clima-benefit-text p {
    text-align: left;
    font-family: 'Comfortaa', sans-serif;
    font-size: 15px;
    color: #676e79;
    line-height: 1.3;
}

.clima-benefit-icon2 i {
    font-size: 45px;
    color: #447c9b;
}
.clima-benefit-icon i {
    font-size: 45px;
    color: #447c9b;
}
/* RESPONSIVO */

@media(max-width:980px){

    .clima-benefits{

        flex-direction:column;
    }

    .clima-benefit-item{

        width:100%;

        border-right:none;
        border-bottom:1px solid #e8e8e8;
    }

    .clima-benefit-item:last-child{
        border-bottom:none;
    }

}











































/* ====================================== */
/* SECTION */
/* ====================================== */

.google-reviews{

    width:100%;

    background:#447c9b;

    padding:1px 7%;

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

    gap:60px;

    overflow:hidden;
}



/* ====================================== */
/* LEFT */
/* ====================================== */

.reviews-score{

    width:32%;

    color:#fff;
}



/* MINI */

.google-mini{

    display:flex;
    align-items:center;
    gap:10px;

    font-size:15px;

    opacity:.8;

    margin-bottom:20px;
}

.google-mini i{

    color:#fff;

    font-size:18px;
}



/* NOTA */

.reviews-score h2{

    font-size:60px;

    line-height:1;

    font-weight:800;

    margin-bottom:15px;
}



/* ESTRELAS */

.stars{

    color:#FFD84D;

    font-size:34px;

    letter-spacing:4px;

    margin-bottom:20px;
}



/* TEXTO */

.reviews-score p{

    font-size:18px;

    line-height:1.6;

    opacity:.92;

}



/* ====================================== */
/* RIGHT */
/* ====================================== */

.reviews-carousel{

    width:745px;

    overflow:hidden;

    position:relative;
}

/* TRACK */

.reviews-track{

    display:flex;

    gap:25px;

    transition:transform .8s ease;
}


/* ====================================== */
/* CARD */
/* ====================================== */

.review-card{

    width:360px;

    flex-shrink:0;

    background:#fff;

    border-radius:28px;

    padding:30px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);
}

/* USER */

.review-user{

    display:flex;
    align-items:center;

    gap:15px;

    margin-bottom:20px;
}



/* FOTO */

.review-user img{

    width:58px;
    height:58px;

    border-radius:50%;

    object-fit:cover;
}



/* NOME */

.review-user h4{

    color:#081221;

    font-size:18px;

    margin-bottom:4px;
}



/* DATA */

.review-user span{

    color:#64748b;

    font-size:14px;
}



/* STARS */

.review-stars{

    color:#FFD84D;

    font-size:22px;

    margin-bottom:18px;
}



/* TEXTO */

.review-card p{

    color:#334155;

    font-size:16px;

    line-height:1.7;
}



/* ====================================== */
/* ANIMAÇÃO */
/* ====================================== */

@keyframes slideReviews{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}



/* ====================================== */
/* RESPONSIVO */
/* ====================================== */

@media(max-width:980px){

    .google-reviews{

        flex-direction:column;

        gap:50px;
    }

    .reviews-score{

        width:100%;

        text-align:center;
    }

    .reviews-score p{

        margin:auto;
    }

    .reviews-carousel{

        width:100%;
    }

    .reviews-score h2{

        font-size:90px;
    }

}



/* ====================================== */
/* ÁREA BENEFÍCIOS COMPLETA */
/* ====================================== */

.clima-benefits-area{
    width:100%;
    max-width:1200px;

    margin:0 auto;

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

    padding:40px 20px 20px;
}



/* ====================================== */
/* TEXTO SUPERIOR */
/* ====================================== */

.clima-hero-text {
    margin-top: 50px;
    width: 100%;
    max-width: 720px;
    text-align: left;
}

.clima-hero-text h2{
    font-size:64px;
    line-height:1.05;
    font-weight:300;

    color:#3c4653;

    margin-bottom:30px;
}

.clima-hero-text h2 span{
    color:#447c9b;
    font-weight:700;
}

.clima-line{
    width:80px;
    height:4px;

    background:#447c9b;

    border-radius:999px;

    margin-bottom:30px;
}

.clima-hero-text p{
    font-size:30px;
    line-height:1.4;

    color:#4b5563;

    max-width:650px;
}

.clima-hero-text p span{
    color:#447c9b;
    font-weight:700;
}



/* ====================================== */
/* BENEFÍCIOS */
/* ====================================== */

.clima-benefits{
    width:100%;
    max-width:1100px;

margin: 10px auto 30px auto;
    display:flex;
    justify-content:center;
    align-items:center;
}



/* ====================================== */
/* BOX MODELO */
/* ====================================== */

.modelo-box{
    width:100%;
    max-width:820px;

    margin:0 auto;

    background:#edf1f4;

    border:2px solid #cfd6dd;

    border-radius:24px;

    padding:28px 40px;

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

    gap:40px;
}



/* LEFT */

.modelo-left{
    display:flex;
    align-items:center;
    gap:24px;
}

.modelo-left img{
    width:85px;
    height:auto;
    object-fit:contain;
}

.modelo-info small{
    font-size:15px;
    color:#5d6672;
    letter-spacing:1px;
}

.modelo-info h3{
    font-size:52px;
    line-height:1;

    color:#447c9b;
    font-weight:800;
}



/* DIVISOR */

.modelo-divider{
    width:1px;
    height:90px;

    background:#c7ced6;
}



/* RIGHT */

.modelo-right{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.modelo-right p{
    text-align:center;

    font-size:20px;
    line-height:1.5;

    color:#4b5563;

    margin-bottom:20px;
}



/* CORES */

.modelo-colors{
    display:flex;
    gap:18px;
}

.color{
    width:38px;
    height:38px;

    border-radius:50%;

    border:2px solid #b8c0c8;
}

.azul{
    background:#2d79a9;
}

.branco{
    background:#f6f6f6;
}

.cinza{
    background:#8d9299;
}



/* ====================================== */
/* RESPONSIVO */
/* ====================================== */

@media(max-width:768px){

    .clima-hero-text{
        text-align:center;
    }

    .clima-line{
        margin:0 auto 30px auto;
    }

    .clima-hero-text h2{
        font-size:42px;
    }

    .clima-hero-text p{
        font-size:22px;
    }

    .clima-benefits{
        flex-direction:column;
    }

    .modelo-box{
        flex-direction:column;
        gap:30px;

        padding:30px 20px;
    }

    .modelo-divider{
        width:100%;
        height:1px;
    }

    .modelo-left{
        flex-direction:column;
        text-align:center;
    }

    .modelo-info h3{
        font-size:42px;
    }

}