:root {
    --color-primary: #8A6FBF;        /* roxo principal (header, botões, títulos) */
    --color-primary-dark: #6B4E9E;   /* roxo mais escuro (hover, banners) */
    --color-primary-light: #B9A3E3;  /* roxo claro (fundos suaves) */
    --color-secondary: #D6C9F0;      /* lilás claro (fundo seção clube) */
    --color-linear-gradient: linear-gradient(90deg, #8871AB 0%, #AD95D1 100%); 

    --color-white: #FFFFFF;
    --color-bg-light: #F5F4F7;       /* fundo cinza claro (cards, faq) */
    --color-bg-gray: #E4E4E4;        /* fundo seção planos/banner */
    --color-text-dark: #2E2A33;      /* texto principal */
    --color-text-muted: #6E6875;     /* texto secundário/parágrafos */
    --color-border: #DADADA;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 0;
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-text-content {
    position: absolute;
    top: 0;
    right: 12%;
    height: 100%;
    width: 420px;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    z-index: 3;
    color: var(--color-white);
}

.hero-text-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3.7px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-text-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.2px; 
    word-spacing: normal;
    line-height: 1.0; 
}

.btn-hero {
    display: inline-block;
    width: fit-content;
    background: var(--color-white);
    color: var(--color-primary-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 10px;
    margin-top: 20px;
}

/* About */

.about {
    padding: 150px 0 100px; 
}

.card-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: end;
}

.card-seg {
    position: relative;
    padding-bottom: 32px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-seg::before {
    content: "";
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-gray);
    z-index: 0;
}

.card-seg > a {
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 40px;
}

.card-seg img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.card-text {
    position: relative;
    z-index: 2;
    padding: 24px 40px 0;
}

.card-text h2 {
    color: var(--color-primary);
    font-family: 'Cera Pro', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.card-hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;

    transform: translateY(15px);
    pointer-events: none;

    transition:
        max-height 0.55s ease,
        opacity 0.4s ease,
        transform 0.45s ease,
        margin-top 0.45s ease;
}

.card-hover-content p {
    color: var(--color-text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-hover-content .btn-card {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: 'Cera Pro', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
}

.card-seg:hover,
.card-seg.ativo {
    transform: translateY(-50px);
    z-index: 5;
}

.card-seg:hover .card-hover-content,
.card-seg.ativo .card-hover-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
    transform: translateY(0);
    pointer-events: auto;
}

/* Obito */

.obito {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 70px;
    text-align: center;
    margin-bottom: 100px;
}
 
.obito svg {
    font-size: 28px;
    color: var(--color-primary);
}
 
.obito h3 {
    font-family: 'Cera Pro', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #977FB2 ;
}

h3 span {
    font-family: 'Cera Pro', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #977FB2;
    margin-top: 40px;
}
 
.obito-phone {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #977FB2;
}
 
/* PLANOS EMPRESARIAIS */

.planos-empresariais {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  left: 0;
  right: 0;
  transform: none;
  aspect-ratio: 612 / 410;
  background: var(--branco);
}
 
.foto-corporativa {
  position: absolute;
  left: 25.8%;
  top: 1.2%;
  width: 71.9%;
  height: 67%;
  object-fit: cover;
  z-index: 1;
}
 
.banner {
  position: absolute;
  left: -5%;
  top: 5.3%;
  width: 54%;
  height: 51%;
  z-index: 2;
}
 
.banner-roxo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
 
.banner-texto {
  position: absolute;
  left: 30%;
  bottom: 30%;
  width: 62%;
  z-index: 1;
}
 
.banner-texto h2 {
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  font-family: 'DM Sans', sans-serif;
}
 
.banner-texto p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(10px, 0.95vw, 12.5px);
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

 
.planos-lista {
  position: absolute;
  left: 20%;
  top: 71%;
  width: 40%;
  height: 26%;
  display: flex;
  align-items: flex-start;
  z-index: 1;
}
 
.plano {
  flex: 1;
  padding-right: 32px;
}
 
.divisor {
  width: 1px;
  align-self: stretch;
  background: #d9d7de;
  margin: 4px 24px 0 0;
}
 
.plano-titulo {
  margin: 0 0 6px;
  font-size: 32px;
  font-weight: 700;
  color: #977fb2;
  font-family: 'DM Sans', sans-serif;
}
 
.plano-vidas {
  margin: 0 0 14px;
  font-size: 23px;
  color: #977fb2;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
 
.plano-preco {
  margin: 0 0 6px;
  font-size: 29px;
  font-weight: 700;
  color: #7F8185;
  font-family: 'DM Sans', sans-serif;
}
 
.plano-preco .moeda {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: middle;
  font-family: 'DM Sans', sans-serif;
}
 
.plano-obs {
  margin: 0;
  font-size: clamp(11px, 1vw, 13px);
  color: #BBBEBF;
  font-family: 'DM Sans', sans-serif;
}
 
/* ===== FORMULÁRIO DE CONTATO ===== */
 
.formulario-contato {
  position: absolute;
  left: 61%;
  top: 58%;
  width: 31%;
  height: 40%;
  background: #e6e7e8;
  padding: 20px 22px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(30, 20, 50, 0.08);
}
 
.formulario-titulo {
  margin: 0 0 14px;
  font-size: 30.72px;
  font-weight: 700;
  color: #977fb2;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
}
 
.formulario-contato form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.formulario-contato input {
  width: 85%;
   margin: 0 auto;
  border: 1px solid #e3e1e8;
  border-radius: 10px;
  background: var(--color-white);
  padding: 9px 18px;
  font-family: inherit;
  font-size: clamp(12px, 2vw, 14px);
  color: #4a4750;
  font-family: "DM Sans", sans-serif;
}
 
.formulario-contato input::placeholder {
  color: #b5b2bc;
}
 
.formulario-contato input:focus {
  outline: 2px solid var(--roxo-claro);
  outline-offset: 1px;
}
 
.formulario-contato button {
  margin-top: 15px !important;
  border: none;
  border-radius: 8px;
  background: #977FB2;
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: clamp(11px, 1vw, 13px);
  padding: 7px 12px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  width: 85%;
  margin: 0 auto;
}
 
.formulario-contato button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-4px);
}
 
/* FUNERAL */

.funeral {
    padding: 60px 20px;
    text-align: center;
}

.funeral-text-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: #6c4f9c;
    font-size: 43px;
    margin-bottom: 8px;
}

.funeral-text-content p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #7F8185;
    margin-bottom: 40px;
}

.card-funeral {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.card-funeral-item-middle {
    flex: 1;
    padding: 36px 40px;
    text-align: left;
    background: linear-gradient(180deg, #b89ae4, #8063ac);
    max-width: 300px;
}

.card-funeral-item {
    flex: 1;
    max-width: 300px;
    padding: 36px 40px;
    text-align: left;
    background: #fff;
    border: 1px solid #8A74A4;
    border-radius: none;
}

.card-funeral-item-one {
    flex: 1;
    max-width: 300px;
    padding: 36px 40px;
    text-align: left;
    background: #E6E7E8;
}

.card-funeral-item-middle {
    background: linear-gradient(180deg, #b89ae4, #8063ac);
    color: #fff;
    z-index: 2;
    border: none;
}

.card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #a18cb9;
    margin-bottom: 12px;
}

.card-title-middle {
    color: #e9d5ff;
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cifrao {
    display: inline;
    font-size: 1rem;
    color: #7e8084;
    vertical-align: bottom;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.card-funeral-item-middle .cifrao {
    color: #fff;
    display: inline;
    font-size: 1rem;
    vertical-align: bottom;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.valor {
    display: inline;
    font-size: 2.2rem;
    font-weight: 700;
    color: #7e8084;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.card-funeral-item-middle .valor {
    color: #fff;
}

.btn-card {
    display: block;
    text-align: center;
    background: #a18cb9;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px;
    border-radius: 4px;
    margin: 25px 0;
    font-family: 'DM Sans', sans-serif;
}

.card-funeral-item-middle .btn-card {
    background: #fff;
    color: #6c4f9c;
}

.btn-card:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

.card-funeral-item-middle .btn-card:hover {
    background: var(--color-primary-light);
    color: #fff;
    transform: translateY(-4px);
}

.planos {
    font-size: 0.85rem;
    color: #7e8084;
    line-height: 1.5;
    margin-bottom: 12px;
    padding-top: 12px;
    font-family: 'DM Sans', sans-serif;
    border-top: 1px solid #e5e1eb;
}

.card-funeral-item .btn-card + .planos,
.card-funeral-item-middle .btn-card + .planos {
    border-top: none !important;
    padding-top: 0;
}

.card-funeral-item .planos{
    border-top: 1px solid rgb(167, 164, 164);
}

.card-funeral-item-middle .planos {
    color: #f0ecf7;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.card-funeral-item, .card-funeral-item-middle, .card-funeral-item-one {
    transition: transform 0.3s ease;
}
 
/* CLUBE CORPe */

.clube-corpe {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    margin-top: 40px;
}

.clube-corpe-bg {
    width: 100%;
    height: auto;
    display: block;
}

.clube-corpe .container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.clube-corpe-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    height: 100%;
    color: var(--color-white);
}

.clube-corpe-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
 
.clube-corpe-text-content {
    flex: 1 1 400px;
}
 
.clube-corpe-text-content img {
    width: 100%;
    display: block;
}
 
.clube-corpe-text-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    max-width: 320px;
    margin-bottom: 160px;
    margin-left: 150px;
    opacity: 0.9;
    color: var(--color-primary);
}
 
.clube-corpe-text-content h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: -20px !important; 
    margin-bottom: 24px;
    margin-left: 152px;
    word-spacing: -1px !important;
}
 
.clube-corpe-text-content .btn-hero {
    background: var(--color-white);
    color: var(--color-primary-dark);
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    margin-left: 150px;
    margin-top: 50px;
    letter-spacing: 0;
    word-spacing: 2px;
    gap: 4px;
    font-size: 14px;
}

.btn-hero:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}
 
.clube-corpe-content-right {
    flex: 1 1 1px;
    display: flex;
    flex-direction: column;      
    align-items: flex-start;     
    justify-content: center;
    gap: 24px;                 
    flex-wrap: wrap;
}
 
.clube-corpe-content-right > p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    max-width: 160px;
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;  
}
 
.clube-corpe-content-right ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
 
.clube-corpe-content-right ul li {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-primary);
}
 
/* FAQ */

.faq{
    display: flex;
    width: 100%;
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    appearance: none;
}

.saiba-mais {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.saiba-mais h1{
    color: var(--color-primary-dark);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 16px;
}

.sub{
    color: var(--color-text-muted);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 40px;
}

.faq-item{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;  
    border-radius: 8px;
    border: 0.757px solid #E5E7EB;
    background: #FFF;
    margin-bottom: 20px;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style: none;
}

.faq-item summary{
    padding: 16px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 18.161px;
}

.faq-item[open] summary {
    padding: 24px 16px 16px 16px;
}

.faq-item p{
    padding: 0 16px 24px 16px;
    color: #7F8185;
    font-family: "Inter", sans-serif;
    font-size: 12.107px;
    font-weight: 400;
    line-height: 19.674px;
}

.arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.3496 9.45874L7.56611 5.67524L3.78261 9.45874' stroke='%23D6C9F0' stroke-width='1.26117' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item .arrow {
    transform: rotate(180deg);
}

.faq-item[open] .arrow {
    transform: rotate(0deg);
}

.card-duvidas{
    display: flex;
    width: 100%;
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    appearance: none;
    box-sizing: border-box;
    padding: 24px 120px;
    gap: 16px;
    align-self: stretch;
    border-radius: 12.107px;
    border: 0.757px solid #E5E7EB;
    background: #FFF;
    margin-top: 40px;
}

.card-duvidas h2{
    color: var(--color-primary);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.188px;
}

.duvidas{
   color: var(--color-text-dark);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.161px; 
}

.btn-fale-conosco{
    display: flex;
    padding: 8px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 7.567px;
    background: var(--color-secondary);
    border: none;
    outline: none;
    cursor: pointer;
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 12.107px;
    font-style: normal;
    font-weight: 600;
    line-height: 18.161px;
    white-space: nowrap;
}

.btn-fale-conosco:hover{
    transform: translateY(-0.5px);
    box-shadow: 0 4.407px 6.61px -2.501px rgba(0, 0, 0, 0.458);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.reveal-visivel {
  opacity: 1;
  transform: translateY(0);
}

#retorno {
    display: none;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    text-align: center;
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {

    .hero-container {
        min-height: 430px;
    }

    .hero-image img {
        object-position: 53% center;
    }

    .hero-text-content {
        position: absolute;
        bottom: 20px;
        right: 15px;
        left: auto;
        width: 50%;
        max-width: 320px;
        background: transparent;
        padding: 0;
    }

    .btn-hero {
        font-size: 10px;
        padding: 6px 12px;
        border-radius: 70px;
        white-space: nowrap;
        margin-right: 70px;
    }

    .hero-text-content h3 {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .hero-text-content p {
        margin-bottom: 16px;
    }

    .hero-text-content .btn-hero {
        margin-top: 8px;
    }


    .container {
        padding: 0 20px;
    }

        .about {
        padding: 60px 0 60px;
    }

    .card-about {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .card-seg > a {
        margin: 0 20px;
    }

    .card-text {
        padding: 20px 20px 0;
    }

    .card-seg::before {
        top: 130px;
    }

        .obito {
        padding: 40px 20px;
        margin-bottom: 60px;
    }

    .obito h3 {
        font-size: 20px;
    }

    .obito-phone {
        font-size: 30px;
    }

    .planos-empresariais {
        aspect-ratio: unset;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        padding: 0;
    }

    .visual-area {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .foto-corporativa {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .formulario-contato {
        order: 2;
    }

    .planos-lista {
        order: 3;
    }

    .divisor {
        display: block;
    }

    .banner {
        position: relative;
        inset: auto;
        order: 1;
        z-index: 2;
        width: 100%;
        height: auto;
    }

    .banner-roxo {
        display: block;
        width: 80%;
        height: auto;
        object-fit: cover;
    }

    .banner-texto {
        position: absolute;
        left: 7%;
        top: 10%;
        width: 84%;
    }

    .banner-texto h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .banner-texto p {
        font-size: 12px;
        line-height: 1.5;
    }

    .planos-lista {
        position: static;
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .divisor {
        display: none;
    }

    .foto-corporativa {
        position: relative;
        inset: auto;
        order: 2;
        z-index: 1;
        width: 100%;
        height: 300px;
        margin-top: -50%;
    }

    .formulario-contato {
        position: relative;
        inset: auto;
        width: 88%;
        height: auto;
        margin: -70px auto 0;
        z-index: 3;
    }

    .formulario-titulo {
        font-size: 22px;
    }

    .planos-lista {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        padding: 24px 20px 0;
    }

    .planos-lista h3{
        font-size: 50px;
        margin-bottom: 12px;
    }

    .planos-lista p{
        font-size: 30px;
    }

        .card-funeral {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .card-funeral-item,
    .card-funeral-item-middle,
    .card-funeral-item-one {
        max-width: 100%;
        width: 100%;
    }

    .funeral-text-content h2 {
        font-size: 28px;
    }

    .funeral-text-content p {
        font-size: 16px;
    }

        .clube-corpe .container {
        position: static;
        transform: none;
        height: auto;
    }

    .clube-corpe-content {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 24px 20px;
        background: var(--color-primary-dark);
    }

    .clube-corpe-text-content h3,
    .clube-corpe-text-content h1,
    .clube-corpe-text-content .btn-hero {
        margin-left: 0;
    }

    .clube-corpe-text-content h3 {
        margin-bottom: 24px;
        max-width: 100%;
    }

    .clube-corpe-content-right > p {
        white-space: normal;
    }

        .faq,
    .card-duvidas {
        padding: 40px 20px;
    }

    .saiba-mais h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .sub {
        font-size: 16px;
        margin-bottom: 24px;
    }
}