* {
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #24324a;
  background: #fff;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 1180px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* CABEÇALHO - MENUS */
header {
  display: flex;
  justify-content: flex-end; /* joga o menu pra direita */
  align-items: center;
  padding: 20px 60px; /* apenas um espaçamento lateral */
  background-color: #fff;
  position: relative;
  top: 0;
  z-index: 9;
}

/* LOGO INDEPENDENTE DO CABEÇALHO */
.logo-area {
  display: flex;
  justify-content: flex-start; /* alinha à esquerda */
  align-items: center;
  padding: 25px 80px 0 80px; /* espaçamento superior/lateral */
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.logo {
  height: 160px; 
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin-top: -130px;
}

.logo:hover {
  transform: scale(1.04);
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: #3a4a75;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #1e3163;
}


/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.hero-left {
  flex: 1;
  min-width: 340px;
  max-width: 520px;
  z-index: 2;
}
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(90deg, #395887, #8aaee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: #465a86;
  margin-bottom: 18px;
}
.hero-desc {
  max-width: 460px;;
  font-size: 15px;
  font-weight: 400;
  color: #566080;
  line-height: 1.6;
  margin-bottom: 30px;
}

.icon{
  width: 40px;
}

/* CTA WhatsApp */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: linear-gradient(90deg, #6ef08a 0%, #8ffcbb 100%);
  color: #fff;
  padding: 18px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 18px 34px rgba(78, 200, 128, 0.18);
  width: 100%;
  max-width: 480px;
  justify-content: center;
}
.wh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* CARROSSEL - ajustes finais (sem fundo branco, radius 12 e sombra natural) */
.carousel {
    width: 520px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }
  
  /* reduzemos a largura do "stack" pra as imagens não invadirem a coluna esquerda */
  .stack {
    width: 360px;         /* menor que antes para evitar overlap com o texto */
    height: 360px;
    position: relative;
    user-select: none;
    cursor: grab;
  }
  
  /* Imagens: sem fundo, border-radius 12px, sombra natural via drop-shadow */
  .card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center;
    width: 260px;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
    filter: drop-shadow(0 30px 50px rgba(10, 30, 60, 0.22));
    transition: transform 0.6s cubic-bezier(.22,.9,.2,1), opacity 0.6s, z-index 0.6s;
    transform-style: preserve-3d;
    opacity: 0;
    pointer-events: none;
    background: transparent; /* reforça que não há fundo */
  }
  
  /* centro visível */
  .card.center {
    opacity: 1;
    pointer-events: auto;
    cursor: grab;
  }
  
  /* evita que o texto da esquerda fique sobre as imagens */
  .hero-left {
    position: relative;
    z-index: 3; /* sempre acima do carrossel */
  }
  
  /* o lado direito fica abaixo (visual) para que o texto nunca sobreponha */
  .hero-right {
    position: relative;
    z-index: 1;
  }
  
  
  

  /*SECTION SOBRE */
  .sobre {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .sobre-container {
    max-width: 1200px;
    position: relative;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #395887, #8aaee0) border-box;
    border: 4px solid transparent;
    border-radius: 30px;
    padding: 50px 60px;
    text-align: left;
    color: #2c4a7c;
    line-height: 1.6;
  }
  
  .sobre-container h2 {
    font-size: 2rem;
    color: #4a70b5;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #395887, #8aaee0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .sobre-container p {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }
  
  .sobre-container strong {
    color: #2c4a7c;
    font-weight: 700;
  }
  
  .botao-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #6ef08a 0%, #8ffcbb 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    padding: 15px 30px;
    margin-top: 30px;
    transition: 0.3s;
  }
  
  .botao-whatsapp img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  
  .botao-whatsapp:hover {
    background-color: #20b955;
    transform: scale(1.03);
  }


   /*SECTION banenrs */
  .banners {
    padding: 60px 20px;
    overflow: hidden;
  }
  
  .banners h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #395887, #8aaee0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .banners p {
    font-size: 1rem;
    max-width: 700px;
    text-align: center;
    margin: 20px auto 40px;
    color: #395887;
  }
  
  .carrossel {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .carrossel-track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
  }
  
  .carrossel-track img {
    width: 280px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    flex-shrink: 0;
  }
  
  /* Animação para rolar infinitamente */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }


  /* SEÇÃO SERVIÇOS*/
.servicos-rolante {
  padding: 90px 20px 120px;
  background: #fff;
  text-align: center;
  overflow: visible;
}

.servicos-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 36px;
  background: linear-gradient(90deg, #395887, #8aaee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.servicos-sub{
  padding: 30px 0px;
}

/* wrapper centraliza e limita a largura do stack */
.stack-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 420px; /* altura do componente */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* evita clique fora dos itens */
}

/* stack: área onde os itens ficam posicionados absolutamente */
.stack {
  width: 860px;              /* controla o "alcance" horizontal */
  max-width: 92%;
  height: 360px;
  position: relative;
  pointer-events: auto; /* habilita interação nos itens */
  user-select: none;
}

/* cada cartão */
.stack-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background: linear-gradient(135deg, #476ccf, #7ba6ff);
  color: #fff;
  box-shadow: 0 22px 50px rgba(20,40,80,0.18);
  padding: 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 550ms cubic-bezier(.22,.9,.2,1), opacity 400ms, z-index 0ms;
  transform-origin: center center;
  overflow: hidden;
  cursor: grab;
}

/* ajuste quando é o centro (destaque) */
.stack-item.center {
  box-shadow: 0 28px 70px rgba(20,40,80,0.28);
  cursor: default;
}

/* título e texto do cartão */
.stack-item h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.stack-item p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.95);
  margin: 0 auto;
  max-width: 220px;
}

/* imagem dentro do cartão (focado central) */
.stack-item img {
  width: 250px;
  height: auto;
  margin: 6px auto 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: #fff;
  object-fit: cover;
}

/* responsividade - reduz tamanho e espaçamento */
@media (max-width: 1100px) {
  .stack { width: 720px; height: 330px; }
  .stack-item { width: 300px; height: 330px; padding: 22px; }
  .stack-item img { width: 190px; }
  .stack-wrap { height: 380px; }
}
@media (max-width: 768px) {
  .servicos-title { font-size: 24px; }
  .stack-wrap { height: 480px; }
  .stack { width: 95%; height: auto; display: flex; gap: 20px; position: static; overflow-x: auto; padding: 20px 10px; justify-content: flex-start; }
  .stack-item { position: relative; transform: none; flex: 0 0 75%; margin: 0; height: auto; width: auto; display: block; border-radius: 16px; padding: 18px; }
  .stack-item img { width: 100%; max-width: 360px; margin-top: 12px; }
  /* remove sombras exageradas no mobile */
  .stack-item { box-shadow: 0 10px 30px rgba(20,40,80,0.12); }
}

/* legenda/subtexto */
.servicos-sub {
  max-width: 900px;
  margin: 40px auto 0;
  color: #264078;
  font-size: 15px;
}


/* PLANOS */
.planos {
  background: #fff;
  padding: 80px 0;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #24324a;
  margin-top: -100px;
}

.planos-container h2 {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #395887, #8aaee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  line-height: 1.4;
}

.planos-container h2 span {
  color: #3a4a75;
}

.planos-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plano-card {
  background: linear-gradient(180deg, #4a6bb1 0%, #7e9ed8 100%);
  color: white;
  padding: 40px 20px;
  border-radius: 20px;
  width: 300px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.plano-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.plano-card h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.plano-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.plano-card ul li {
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.price {
  background: linear-gradient(180deg, #bfcde8 0%, #e9eef8 100%);
  color: #24324a;
  border-radius: 15px;
  padding: 15px 10px;
  font-weight: 700;
  margin: 20px 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-width: 150px;
  margin-top: -10px;
}

.price .moeda {
  font-size: 25px;
  margin-right: 5px;
}

.price .valor {
  font-size: 48px;
}

.price .centavos {
  font-size: 18px;
  align-self: flex-end;
}

.badge {
  background: linear-gradient(90deg, #ff6a00, #ff934e);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  position: absolute;
  top: 25px;
  right: 15px;
  margin-top: -15px;
}

.CTA {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: white;
  font-size: 20px;
  padding: 10px 25px;
  border-radius: 15px;
  background: linear-gradient(90deg, #8CF59F, #53E97A);
  box-shadow: 0 3px 10px rgba(83,233,122,0.4);
  transition: all 0.3s ease;
}

.whats{
  width: 25px;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(83,233,122,0.6);
}

.btn-whatsapp img {
  width: 20px;
  height: 20px;
}

.personalizado {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.personalizado p {
  font-weight: 700;
  color: #3a4a75;
}

.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: white;
  font-size: 14px;
  padding: 15px 25px;
  border-radius: 30px;
  background: linear-gradient(90deg, #8CF59F, #53E97A);
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(83,233,122,0.6);
}

.btn-custom img {
  width: 20px;
  height: 20px;
}

/*GARANTIA*/
.garantia {
  padding: 80px 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease-in;
}

.garantia-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.garantia-img img {
  width: 320px;
  height: auto;
  transition: transform 0.6s ease;
  animation: pulse 3s infinite;
}

.garantia-img img:hover {
  transform: rotate(-3deg) scale(1.05);
}

.garantia-texto {
  max-width: 600px;
}

.garantia-texto h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  background: linear-gradient(90deg, #f3cc5a, #faf2d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  margin-bottom: 20px;
}

.garantia-texto p {
  font-family: 'Montserrat', sans-serif;
  color: #1d1d1d;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Animações sutis */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Rodapé */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.footer span {
  color: #d4af37;
  font-weight: 600;
}

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

  .garantia-img img {
    width: 180px;
  }
}

@media (max-width: 320px) {
  .logo-area {
    display: flex;
    justify-content: center; /* alinha à esquerda */
    align-items: center;
    padding: 25px 80px 0 80px; /* espaçamento superior/lateral */
    background-color: #fff;
    position: relative;
    z-index: 10;
  }
  
  .logo {
    height: 250px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: -390px;
  }

  .site-header{
    justify-content: center;
  }

  .navbar ul {
    display: flex;
    gap:15px;
    list-style: none;
    margin: 0;
    padding-top: 170px;
    white-space: nowrap;
  }

  .navbar a{
    font-size: 14px;
  }

  .sobre-container{
    padding: 30px 20px; /* Reduz o espaçamento lateral */
    border-width: 3px;
  }

  .sobre-container h2{
    font-size: 25px;
  }

  .botao-whatsapp {
    font-size: 15px;
    padding: 8px 25px;
  }

  .botao-whatsapp img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .planos-container h2 {
    font-size: 35px;
  }

}

@media (max-width: 375px) {
  .logo-area {
    display: flex;
    justify-content: center; /* alinha à esquerda */
    align-items: center;
    padding: 25px 80px 0 80px; /* espaçamento superior/lateral */
    background-color: #fff;
    position: relative;
    z-index: 10;
  }
  
  .logo {
    height: 250px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: -390px;
  }

  .site-header{
    justify-content: center;
  }

  .navbar ul {
    display: flex;
    gap:15px;
    list-style: none;
    margin: 0;
    padding-top: 170px;
    white-space: nowrap;
  }

  .navbar a{
    font-size: 14px;
  }

  .banners {
    padding: 60px 7px;
    overflow: hidden;
  }

  .banners h1 {
    font-size: 30px;
  }

  .sobre-container{
    padding: 30px 20px; /* Reduz o espaçamento lateral */
    border-width: 3px;
  }

  .sobre-container h2{
    font-size: 25px;
  }

  .botao-whatsapp {
    font-size: 15px;
    padding: 8px 25px;
  }

  .botao-whatsapp img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .planos-container h2 {
    font-size: 35px;
  }

}

@media (max-width: 414px) {
  .logo-area {
    display: flex;
    justify-content: center; /* alinha à esquerda */
    align-items: center;
    padding: 25px 80px 0 80px; /* espaçamento superior/lateral */
    background-color: #fff;
    position: relative;
    z-index: 10;
  }
  
  .logo {
    height: 250px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: -390px;
  }

  .site-header{
    justify-content: center;
  }

  .navbar ul {
    display: flex;
    gap:15px;
    list-style: none;
    margin: 0;
    padding-top: 170px;
    white-space: nowrap;
  }

  .navbar a{
    font-size: 14px;
  }

  .banners {
    padding: 60px 7px;
    overflow: hidden;
  }

  .banners h1 {
    font-size: 30px;
  }

  .sobre-container{
    padding: 30px 20px; /* Reduz o espaçamento lateral */
    border-width: 3px;
  }

  .sobre-container h2{
    font-size: 35px;
  }

  .botao-whatsapp {
    font-size: 18px;
    padding: 10px 22px;
  }

  .botao-whatsapp img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .planos-container h2 {
    font-size: 32px;
  }

  .servicos-title{
    font-size: 30px;
  }

  .btn-custom{
    font-size: 16px;
  }

}

@media (max-width: 440px) {
  .logo-area {
    display: flex;
    justify-content: center; /* alinha à esquerda */
    align-items: center;
    padding: 25px 80px 0 80px; /* espaçamento superior/lateral */
    background-color: #fff;
    position: relative;
    z-index: 10;
  }
  
  .logo {
    height: 250px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: -390px;
  }

  .site-header{
    justify-content: center;
  }

  .navbar ul {
    display: flex;
    gap:15px;
    list-style: none;
    margin: 0;
    padding-top: 170px;
    white-space: nowrap;
  }

  .navbar a{
    font-size: 14px;
  }

  .banners {
    padding: 60px 7px;
    overflow: hidden;
  }

  .banners h1 {
    font-size: 30px;
  }

  .sobre-container{
    padding: 30px 20px; /* Reduz o espaçamento lateral */
    border-width: 3px;
  }

  .sobre-container h2{
    font-size: 35px;
  }

  .botao-whatsapp {
    font-size: 18px;
    padding: 10px 22px;
  }

  .botao-whatsapp img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .planos-container h2 {
    font-size: 32px;
  }

  .servicos-title{
    font-size: 30px;
  }

  .btn-custom{
    font-size: 16px;
  }

}

  
/* responsivo: reduzimos um pouco para tablets/celular */
@media (max-width: 980px) {
  .stack { width: 300px; height: 300px; }
  .card { width: 200px; height: 280px; border-radius: 12px; }

  .stack-wrap { width: 300px; height: 300px; }
  .card2 { width: 200px; height: 280px; border-radius: 12px; }
}

/* Ajuste mobile */
@media (max-width: 980px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .hero-right {
    width: 100%;
    margin-top: 40px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .logo img {
    height: 60px;
  }
  .main-nav {
    display: none;
  }

  /*servicos-rolante*/
  .stack-wrap{

  }

  .stack-item{
    width: 100%;
    margin-top: 10px;
  }
}

/* --------- TESTE ------- */
/* ===========================
   FIX FINAL - manter stack em pilha para telas pequenas (<= 320px)
   Colocar este bloco NO FINAL do style.css (para sobrescrever regras anteriores)
   =========================== */

@media (max-width: 440px) {

/* garante que o wrapper tenha altura suficiente e permita posicionamento absoluto */
.stack-wrap {
  position: relative !important;
  width: 100vw !important; /* pega toda a viewport */
  margin-left: calc(-50vw + 50%) !important; /* centraliza o container real */
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 400px !important;
  padding: 0 !important;
}

  
/* stack interna (onde ficam os cards) */
.stack {
  position: relative !important;
  width: 100vw !important; /* deixa ocupar toda tela */
  max-width: none !important;
  height: 360px !important;
  overflow: visible !important;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}   
  
/* cartões individuais */
.stack-item {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 240px !important;
  height: 300px !important;
  border-radius: 14px !important;
  padding: 16px !important;
  transition: transform 420ms cubic-bezier(.22,.9,.2,1) !important;
  box-shadow: 0 16px 36px rgba(20,40,80,0.14) !important;
  cursor: grab !important;
  overflow: hidden !important;
  opacity: 1 !important;
}

.stack-item.center {
  box-shadow: 0 24px 60px rgba(20,40,80,0.22) !important;
}

/* imagem dentro do card */
.stack-item img {
  width: 180px !important;
  height: auto !important;
  margin: 8px auto 0 !important;
  border-radius: 10px !important;
  display: block !important;
}
}  
  
