@charset "utf-8";
/* CSS Document */

/************************************************
 * WHATSAPP - PROPOSTA MOBILE
 ************************************************/

/* Esconde o botão "Iniciar conversa" no desktop */
.whats-start {
  display: none;
}


/* =========================================================
   FRASES WHATSAPP
========================================================= */

/* Mobile fica oculto por padrão */
.whatsFraseMobile {
    display: none;
}

.whatsFraseMobile-title {
    display: none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* Frase dinâmica do desktop escondida */
    #whatsFrase {
        display: none !important;
    }

    /* Frase específica do mobile aparece */
    .whatsFraseMobile {
        display: block !important;
    }
	
	/* Frase dinâmica do desktop escondida titulo */
    .whatsFrase-title {
        display: none !important;
    }
	
	/* Frase específica do mobile titulo aparece */
    .whatsFraseMobile-title {
        display: block !important;
    }

}


/************************************************
 * SOMENTE MOBILE
 ************************************************/

@media (max-width: 767px) {
	
	.whats-button {
        display: none !important;
    }

  /* ==========================================
     CONTAINER
  ========================================== */

  #whatsContainer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
    pointer-events: none;
  }


  /* ==========================================
     BOTÃO WHATSAPP
  ========================================== */

  .whats-button {
    position: fixed;
    right: 18px;
    bottom: 18px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: linear-gradient(135deg, #25D366, #1ebe5d);

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

    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    animation: pulse 2s infinite;

    transition: transform 0.3s ease;

    z-index: 9998;

    pointer-events: auto;
  }

  .whats-button img {
    width: 32px;
    height: 32px;
  }


  /* ==========================================
     PAINEL INFERIOR
  ========================================== */

  .whats-bubble {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;

    background: #ffffff;

    padding: 30px 12px 16px;

    border-radius: 22px 22px 0 0;

    box-shadow: 0 -8px 30px rgba(0,0,0,0.18);

    display: block;

    z-index: 10000;

    pointer-events: auto;

    animation: whatsSheetUp 0.4s ease;
}


  /* ==========================================
     ALÇA SUPERIOR
  ========================================== */

  .whats-bubble::before {
    content: '';

    position: absolute;

    top: 16px;
    left: 50%;

    transform: translateX(-50%);

    width: 36px;
    height: 4px;

    background: #dedbd4;

    border-radius: 10px;
  }


  /* Remove a setinha antiga */
  .whats-bubble::after {
    display: none;
  }


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

  .whats-text {
    width: 100%;
    min-width: 0;
   }


  .whats-text strong {
    display: block;

    font-size: 14px;

    color: #12315E;

    font-weight: 700;

    margin-bottom: 10px;

    padding-right: 32px;
}


  .whats-text span {
    display: block;

    width: 100%;

    font-size: 12.5px;

    line-height: 1.45;

    color: #6B7280;

    padding-right: 0;
}


  /* ==========================================
     BOTÃO FECHAR
  ========================================== */

  #closeBubble {
    position: absolute;

    top: 10px;
    right: 10px;

    width: 26px;
    height: 26px;

    min-width: 26px;

    border-radius: 50%;

    border: 1px solid #E4E1D8;

    background: #F6F5F2;

    color: #9CA3AF;

    font-size: 16px;

    line-height: 24px;

    display: flex;

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

    padding: 0;

    cursor: pointer;

    z-index: 2;
}


  /* ==========================================
     BOTÃO "INICIAR CONVERSA"
  ========================================== */

  .whats-start {
    display: flex;

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

    width: 100%;
    height: 40px;

    margin-top: 14px;

    border-radius: 11px;

    background: #22C55E;

    color: #fff !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;

    text-align: center;

    transition: background .2s ease;
  }

  .whats-start:hover {
    background: #1ebe5d;
  }


  /* ==========================================
     ANIMAÇÃO DO PAINEL
  ========================================== */

  @keyframes whatsSheetUp {

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

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

  }


  /* ==========================================
     PULSE DO WHATSAPP
  ========================================== */

  @keyframes pulse {

    0% {
      box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }

    70% {
      box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

  }

}


/************************* BANNER MOBILE INICIO *************************/

/* =========================================================
   MOBILE - NOVO VISUAL DO BANNER
   Não interfere no desktop
========================================================= */

@media (max-width: 767px) {

    #bannerMob {
        background: #ffffff;
        width: 100%;
        overflow: visible;
    }

    #bannerMob .container {
        width: 100%;
        padding: 0 20px;
    }

    #bannerMob .banner-mob-content {
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 0 20px;
    }


    /* =========================
       SELO
    ========================= */

    #bannerMob .banner-mob-selo {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 0px 12px;

        background: #FFF;
        color: #3949ab;

        border-radius: 20px;

        font-size: 11px;
        font-weight: 600;

        line-height: 1;

        margin-bottom: 15px;
    }


    /* =========================
       TÍTULO
    ========================= */

    #bannerMob #cor-texto-titulo {
        margin: 0;
        padding: 0;

        color: #1a4385;

        font-size: 25px;
        line-height: 1.12;

        font-weight: 700;

        text-transform: none;

        max-width: 330px;
    }


    /* =========================
       SUBTÍTULO
    ========================= */

    #bannerMob .banner-mob-subtitulo {
        margin: 11px 0 18px;

        padding: 0;

        color: #1a4385;

        font-size: 14px;
        line-height: 1.45;

        max-width: 290px;
    }


    /* =========================
       CARD DA FOTO
    ========================= */

    #bannerMob .banner-mob-foto {
        width: 100%;
        height: 150px;

        border-radius: 20px;

        background: linear-gradient(
            135deg,
            #eef0ff 0%,
            #f9e9e4 100%
        );

        overflow: hidden;

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

        margin-bottom: 16px;
		margin-top: -10px;
    }

    #bannerMob .banner-mob-foto img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        background: #fff;
    }


    /* =========================
       BOTÕES
    ========================= */

    #bannerMob .banner-mob-ctas {
        width: 100%;

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

        gap: 7px;

        position: relative;

        z-index: 999;
    }


    #bannerMob .banner-mob-btn {
        height: 38px;

        flex: 1;

        min-width: 0;

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

        gap: 6px;

        padding: 0 9px;

        background: #ffffff;

        border: 1px solid #e0ddd7;

        border-radius: 12px;

        color: #082d5c;

        font-size: 12px;
        font-weight: 600;

        text-decoration: none;

        white-space: nowrap;

        box-sizing: border-box;

        transition: background .2s ease,
                    border-color .2s ease;
    }


    #bannerMob .banner-mob-btn:hover,
    #bannerMob .banner-mob-btn:focus {
        color: #082d5c;
        text-decoration: none;
        background: #fafafa;
    }


    /* =========================
       ÍCONES
    ========================= */

    #bannerMob .banner-mob-btn svg {
        width: 12px;
        height: 14px;

        fill: #1a4385;

        flex-shrink: 0;
    }

    #bannerMob .banner-mob-btn i {
        font-size: 12px;
        color: #1a4385;

        margin: 0 !important;
        padding: 0 !important;

        line-height: normal !important;

        background: transparent !important;
    }


    /* =========================
       TABELA
    ========================= */

    #bannerMob .banner-mob-tabela {
        flex: 1;
        min-width: 0;
        position: relative;
    }

    #bannerMob .banner-mob-tabela > .banner-mob-btn {
        width: 100%;
    }

    #bannerMob .banner-mob-seta {
        font-size: 17px;
        line-height: 10px;

        margin-left: 1px;

        position: relative;
        top: -7px;
    }


    /* =========================
       DROPDOWN
    ========================= */

    #bannerMob .banner-mob-dropdown {
        min-width: 190px;

        margin: 6px 0 0 !important;

        left: 50% !important;
        transform: translateX(-50%);

        border: 1px solid #e5e5e5;

        border-radius: 12px;

        padding: 5px 0;

        box-shadow: 0 8px 25px rgba(0, 0, 0, .10);

        z-index: 9999;
    }

    #bannerMob .banner-mob-dropdown li a {
        padding: 9px 14px;

        font-size: 12px;

        color: #082d5c;

        white-space: nowrap;
    }

    #bannerMob .banner-mob-dropdown li a:hover {
        background: #f5f6fb;
        color: #082d5c;
    }

}


/* =========================================================
   CELULARES MENORES
========================================================= */

@media (max-width: 360px) {

    #bannerMob .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #bannerMob .banner-mob-content {
        padding-top: 15px;
    }

    #bannerMob #cor-texto-titulo {
        font-size: 23px;
    }

    #bannerMob .banner-mob-foto {
        height: 135px;
    }

    #bannerMob .banner-mob-btn {
        font-size: 11px;
        padding-left: 5px;
        padding-right: 5px;
        gap: 4px;
    }

}


/************************* BANNER MOBILE FIM *************************/

/************************* ALTURA DO CONTEUDO ABAIXO DO BANNER INICIO *************************/
.altura-conteudo-mob{
   margin-top: 50px;	
}

.altura-conteudo-mob-texo{
   margin-top: 25px;	
}

@media (max-width: 767px) {
.altura-conteudo-mob{
   margin-top: -80px;	
}

.altura-conteudo-mob-texo{
   margin-top: 0px !important;
}

}

/************************* ALTURA DO CONTEUDO ABAIXO DO BANNER FIM *************************/