:root {
  --font-default: Montserrat, sans-serif;
  --font-primary: Montserrat, sans-serif;
  --font-secondary: Montserrat, sans-serif;
}

:root {
  --color-default: #2c2c2e;
  --color-whatsapp: #0cb940;
  --color-primary: #9b7e60;
  --color-secondary: #d1a77d;
  --gradient: linear-gradient(45deg, #9b7e60, #d1a77d);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-primary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Imgs
--------------------------------------------------------------*/
.img-logo {
  margin: 0 auto;
  border-radius: 0px;
  width: 351px;
  height: 86px;
}

#img-mockup-1 {
  border-radius: 10px
}

#img-mockup-2 {
  border-radius: 10px
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0 0 0 / 32%), rgb(0 0 0 / 54%)), url(../img/banner-pensao-por-morte.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 0;
}

#hero::after {
  background: #f7f7f7;
}


#hero .container {
  padding-top: 25px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: normal;
  color: #fff;
}

#hero h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

#hero h3 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100%;
    text-align: center;
    margin-top: 0px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-whatsapp {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Btn Get Ebook
--------------------------------------------------------------*/
.btn-get-whatsapp {
  font-weight: 500;
  font-size: 20px;
  margin: 0 auto;
  color: #fff;
  background: var(--color-whatsapp);
  padding: 10px 30px 10px 30px;
  border-radius: 13px;
  border: 0px;
  font-weight: 600;
}

.btn-get-whatsapp:hover {
  border: 0px;
  background-color: #128c7e;
  color: #fff !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.section-title h3 {
  font-weight: 500;
  font-size: calc(0.8rem + .6vw) !important;
  line-height: 1.6rem;
  margin-top: 30px;
  /* color: var(--color-primary); */
  /* font-family: "Poppins", sans-serif; */
}



.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  margin-top: 30px;
}



/*--------------------------------------------------------------
# Sec1
--------------------------------------------------------------*/


.sec1 .content ul {
  list-style: none;
  padding: 0;
}

.sec1 .content ul li {
  padding-left: 28px;
  position: relative;
}

.sec1 .content ul li+li {
  margin-top: 10px;
}

.sec1 .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--color-primary);
  line-height: 1;
}

.sec1 .content p:last-child {
  margin-bottom: 0;
}

.sec1 .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  margin-top: 25px;
  width: 100%;
  text-align: center;
}

.sec1 .icon-box .icon {
  margin-bottom: 10px;
}

.sec1 .icon-box .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.sec1 .icon-box .icon img {
  margin: 0 auto;
  transition: 0.3s;
  width: 72px;
}

.sec1 .icon-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 800;
}

.sec1 .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.sec1 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.sec1 .icon-box:hover {
  transform: translateY(-10px);
}

.sec1 .icon-box:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Sec2
--------------------------------------------------------------*/

.sec2 .content ul {
  list-style: none;
  padding: 0;
}

.sec2 .content ul li {
  padding-bottom: 10px;
}

.sec2 .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1b4d80;
}

.sec2 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Sec3
--------------------------------------------------------------*/
.sec3 {
  background: linear-gradient(rgb(0 0 0), rgb(2 2 2 / 68%)), url(../img/banner-pensao-por-morte.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}


.section-3 .content {
  padding: 0px 0px 0 0px;
}

.section-3 .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.section-3 .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.section-3 .content p {
  font-size: 15px;
  color: #848484;
}

.section-3 .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.section-3 .accordion-list {
  padding: 0;
}

.section-3 .accordion-list ul {
  padding: 0;
  list-style: none;
}

.section-3 .accordion-list li+li {
  margin-top: 15px;
}

.section-3 .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.section-3 .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.section-3 .accordion-list span {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.section-3 .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.section-3 .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.section-3 .accordion-list .icon-show {
  display: none;
}

.section-3 .accordion-list a.collapsed {
  color: #343a40;
}

.section-3 .accordion-list a.collapsed:hover {
  color: var(--color-secondary);
}

.section-3 .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.section-3 .accordion-list a.collapsed .icon-close {
  display: none;
}



/*--------------------------------------------------------------
# section-4
--------------------------------------------------------------*/

.section-4 .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  margin-top: 25px;
  width: 100%;
  text-align: center;
}

.section-4 .icon-box .icon {
  margin-bottom: 10px;
}

.section-4 .icon-box .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.section-4 .icon-box .icon img {
  margin: 0 auto;
  transition: 0.3s;
  width: 72px;
}

.section-4 .icon-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 800;
}

.section-4 .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.section-4 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.section-4 .icon-box:hover {
  transform: translateY(-10px);
}

.section-4 .icon-box:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: transparent linear-gradient(122deg, rgb(0 24 63) 0%, #003468 100%) 0% 0% no-repeat padding-box;
  background-size: cover;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--color-primary);

}

footer {
  background: var(--color-default) 0% 0% no-repeat padding-box;
  text-align: center;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 15px;
}

.btn {
  color: #fff;
  background-color: #003468;
  border: 3px solid #003468;
}

.btn:hover {
  color: #003468;
  background-color: #fff;
  border: 3px solid #003468;
}

.modal-header {
  background: #003468;
  color: #fff;
}

/*--------------------------------------------------------------
# WhatsApp Flutuante
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 40px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 3px 3px 4px #999;
  color: #fff !important;
}

.whatsapp-icon {
  margin-top: 15px;
}

/*--------------------------------------------------------------
# Sobre NÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³s
--------------------------------------------------------------*/
.sobre-nos .content {
  padding: 0px 0px 0 0px;
}

.sobre-nos .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.sobre-nos .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.sobre-nos .content p {
  font-size: 15px;
  color: #848484;
}

.sobre-nos .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.sobre-nos .accordion-list {
  padding: 0;
}

.sobre-nos .accordion-list ul {
  padding: 0;
  list-style: none;
}

.sobre-nos .accordion-list li+li {
  margin-top: 15px;
}

.sobre-nos .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.sobre-nos .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.sobre-nos .accordion-list span {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.sobre-nos .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.sobre-nos .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.sobre-nos .accordion-list .icon-show {
  display: none;
}

.sobre-nos .accordion-list a.collapsed {
  color: #343a40;
}

.sobre-nos .accordion-list a.collapsed:hover {
  color: var(--color-secondary);
}

.sobre-nos .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.sobre-nos .accordion-list a.collapsed .icon-close {
  display: none;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: var(--color-primary);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-primary);
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-primary);
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--color-primary);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--color-primary);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-secondary);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

:root {
  --font-default: Montserrat, sans-serif;
  --font-primary: Montserrat, sans-serif;
  --font-secondary: Montserrat, sans-serif;
  /* --color-1: #05DAC3; */
  /* --color-1: #00efee; */
  --color-1: #06dac3;
  /*--color-2: #005a78;*/
  --color-2: #ce4242;
  --color-3: #ffffff;
  --color-4: #000820;
  --color-5: #1c1c1b;
  --color-whatsapp: #0cb940;
  --font-size-h1-desktop: 2.625rem;
  --font-size-h1-mobile: 1.895rem;
  --font-size-h1-fullhd: 3.625rem;
  --font-size-h2-desktop: 2rem;
  --font-size-h2-mobile: 1.8rem;
  --font-size-h2-fullhd: 2.75rem;
  --font-size-h3-desktop: 1.5rem;
  --font-size-h3-mobile: 1.4rem;
  --font-size-h3-fullhd: 2.8rem;
  --font-size-h4-desktop: 1.2rem;
  --font-size-h4-mobile: 1.2rem;
  --font-size-h4-fullhd: 1.6rem;
  --font-size-p-desktop: 0.89rem;
  --font-size-p-mobile: 1.125rem;
  --font-size-p-fullhd: 1.3rem;
}
  
section {
  padding: 60px 0px 60px 0px;
}

.section-header {
  padding: 0px 0px 10px 0px;
  position: relative;
}

.section-header h2 {
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0;
  z-index: 2;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  color: var(--color-3);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

body {
  font-family: var(--font-default);
  color: var(--color-5);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

h1 {
  font-size: var(--font-size-h1-desktop);
  font-weight: bold;
  width: 100%;
}

h2 {
  font-size: var(--font-size-h2-desktop);
}

h3 {
  font-size: var(--font-size-h3-desktop);
}

h4 {
  font-size: var(--font-size-h4-desktop);
}

p {
  font-size: var(--font-size-p-desktop);
}

.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fw-400 {
  font-weight: 400;
}

#section-240205-0906 .box {
  box-shadow: 0 1px 1px 1px rgba(56, 60, 67, 0.12);
  padding: 15px;
  height: auto;
  position: relative;
  border-radius: 15px;
  min-height: 350px;
  background: var(--color-3);
}

#section-240205-0906 .box-header{
display: flex;
}

#section-240205-0906 .box-header img {
  margin-bottom: 15px;
  margin-right: 15px;
}

#section-240205-0906 .box-body {
  margin-bottom: 15px;
}

#section-240205-0906 .box-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
}

#section-240205-0906 .header-title-left {
  text-align: left;
  margin-bottom: 25px;
  border-left: 4px solid var(--color-1);
}

#section-240205-0906 .header-title-left strong {
  color: var(--color-1);
}

#section-240205-0906 .swiper-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
  padding: 30px;
}


@media (min-width: 1920px) and (min-height: 1080px) {
  #section-240205-0906 .box {
      height: 560px;
  }

  #section-240205-0906 .box-header img {
      width: 100px;
      height: auto;
  }
}

@media (max-width: 1024px) {

  .sobre-nos .content,
  .sobre-nos .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .sobre-nos .img {
    min-height: 400px;
  }

  .sobre-nos .content {
    padding-top: 30px;
  }

  .sobre-nos .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .sobre-nos .img {
    min-height: 200px;
  }
}

@media (pointer: coarse) {
  .btn-get-whatsapp {
    font-size: 12px;
  }

  .section-title h2 {
    font-size: 21px;
    margin-bottom: 0px;
    padding-bottom: 30px;
  }
}