/* ==================================================
   ANDREIA PESSOA CONFEITARIA
   PÁGINA SOBRE
   CSS COMPLETO — PARTE 1 DE 4
================================================== */

/* ==================================================
   VARIÁVEIS DA IDENTIDADE VISUAL
================================================== */

:root {
    --primary: #e56590;
    --primary-hover: #ce4d78;
    --primary-dark: #b9436a;
    --primary-light: #fff0f5;

    --secondary: #f8dce5;
    --secondary-light: #fff7f9;

    --brown: #6b3541;
    --brown-dark: #512630;

    --title: #7c3d4b;
    --text: #655b5e;
    --text-light: #887c80;

    --white: #ffffff;
    --background: #fff8fa;
    --background-soft: #fffafb;
    --border: #f0dce2;

    --shadow-small:
        0 8px 24px rgba(88, 43, 55, 0.07);

    --shadow-medium:
        0 18px 46px rgba(88, 43, 55, 0.11);

    --shadow-large:
        0 30px 75px rgba(88, 43, 55, 0.15);

    --radius-small: 14px;
    --radius-medium: 22px;
    --radius-large: 32px;

    --transition: 0.3s ease;
}

/* ==================================================
   CONFIGURAÇÕES GERAIS
================================================== */

body {
    color: var(--text);
    background: var(--white);

    font-family: "Poppins", sans-serif;
}

.about-hero,
.about-story,
.mission,
.timeline,
.about-feature,
.about-differentials,
.about-quote,
.about-cta {
    position: relative;
}

.about-hero .container,
.about-story .container,
.mission .container,
.timeline .container,
.about-feature .container,
.about-differentials .container,
.about-quote .container,
.about-cta .container {
    position: relative;
    z-index: 2;
}

/* ==================================================
   BADGES E SUBTÍTULOS
================================================== */

.hero-badge,
.section-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 11px 20px;

    color: var(--primary);
    background: rgba(255, 240, 245, 0.92);

    border: 1px solid rgba(229, 101, 144, 0.22);
    border-radius: 999px;

    box-shadow:
        0 8px 24px rgba(229, 101, 144, 0.08);

    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-badge i,
.section-subtitle i {
    color: var(--primary);

    font-size: 1rem;
}

/* ==================================================
   HERO DA PÁGINA SOBRE
================================================== */

.about-hero {
    padding: 95px 0 105px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(229, 101, 144, 0.14),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 12%,
            rgba(248, 220, 229, 0.82),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fff8fa 48%,
            #fff3f7 100%
        );
}

/* Elementos decorativos */

.about-hero::before,
.about-hero::after {
    position: absolute;

    content: "";

    border-radius: 50%;

    pointer-events: none;
}

.about-hero::before {
    top: -170px;
    left: -160px;

    width: 380px;
    height: 380px;

    background:
        radial-gradient(
            circle,
            rgba(229, 101, 144, 0.12),
            rgba(229, 101, 144, 0)
        );
}

.about-hero::after {
    right: -150px;
    bottom: -190px;

    width: 420px;
    height: 420px;

    background:
        radial-gradient(
            circle,
            rgba(248, 220, 229, 0.88),
            rgba(248, 220, 229, 0)
        );
}

/* ==================================================
   CONTEÚDO DE TEXTO DO HERO
================================================== */

.about-hero .col-lg-6:first-child {
    position: relative;
    z-index: 3;

    animation: aboutFadeUp 0.8s ease both;
}

.about-hero .hero-badge {
    margin-bottom: 4px;
}

.about-hero .hero-title {
    max-width: 680px;
    margin-bottom: 25px;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: clamp(3.1rem, 5vw, 4.7rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -1.8px;
}

.about-hero .hero-title span {
    display: inline;

    color: var(--primary);
}

.about-hero .hero-text {
    max-width: 590px;
    margin-bottom: 0;

    color: var(--text);

    font-size: 1.04rem;
    line-height: 1.9;
}

/* ==================================================
   BOTÃO DO HERO
================================================== */

.about-hero .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 56px;
    padding: 14px 30px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    border: 2px solid var(--primary);
    border-radius: 999px;

    box-shadow:
        0 14px 30px rgba(229, 101, 144, 0.26);

    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.about-hero .btn-primary:hover {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary-hover),
            var(--primary-dark)
        );

    border-color: var(--primary-hover);

    box-shadow:
        0 18px 38px rgba(206, 77, 120, 0.32);

    transform: translateY(-3px);
}

.about-hero .btn-primary:active {
    transform: translateY(-1px);
}

/* ==================================================
   IMAGEM DO HERO
================================================== */

.about-hero .col-lg-6:last-child {
    position: relative;
    z-index: 2;

    padding: 24px;

    animation: aboutFadeUp 0.8s 0.14s ease both;
}

/* Moldura decorativa */

.about-hero .col-lg-6:last-child::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;

    width: 88%;
    height: 92%;

    content: "";

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.82),
            rgba(255, 240, 245, 0.78)
        );

    border: 1px solid rgba(229, 101, 144, 0.15);
    border-radius: 38px;

    box-shadow:
        0 30px 70px rgba(88, 43, 55, 0.09);

    transform:
        translate(-50%, -50%)
        rotate(3deg);
}

.about-hero img {
    position: relative;

    display: block;

    width: 100%;
    max-width: 520px;
    min-height: 520px;
    margin: 0 auto;

    object-fit: cover;
    object-position: center;

    border: 8px solid rgba(255, 255, 255, 0.9);
    border-radius: 34px !important;

    box-shadow:
        0 28px 65px rgba(88, 43, 55, 0.17) !important;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.about-hero img:hover {
    transform:
        translateY(-8px)
        rotate(-1deg);

    box-shadow:
        0 36px 78px rgba(88, 43, 55, 0.22) !important;
}

/* Detalhe decorativo sobre a imagem */

.about-hero .col-lg-6:last-child::after {
    position: absolute;
    right: 20px;
    bottom: 15px;

    width: 100px;
    height: 100px;

    content: "";

    background:
        radial-gradient(
            circle,
            rgba(229, 101, 144, 0.22),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}

/* ==================================================
   TÍTULOS GERAIS DAS SEÇÕES
================================================== */

.mission h2,
.timeline h2,
.about-feature h2,
.about-differentials h2,
.about-cta h2 {
    color: var(--title);

    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.mission .text-center > p,
.timeline .text-center > p,
.about-differentials .text-center > p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;

    color: var(--text-light) !important;

    font-size: 1rem;
    line-height: 1.85;
}

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

@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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


/* ==================================================
   NOSSA HISTÓRIA
================================================== */

.about-story{

    position:relative;

    padding:120px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fff9fb 100%
        );

    overflow:hidden;

}

/* decoração */

.about-story::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(229,101,144,.08),
            transparent 70%
        );

}

.about-story::after{

    content:"";

    position:absolute;

    bottom:-180px;
    left:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(248,220,229,.65),
            transparent 70%
        );

}

/* ==================================================
   IMAGEM
================================================== */

.about-story .col-lg-6:first-child{

    position:relative;

    animation:aboutFadeUp .8s ease both;

}

.about-story .col-lg-6:first-child::before{

    content:"";

    position:absolute;

    top:50%;
    left:50%;

    transform:
        translate(-50%,-50%)
        rotate(-3deg);

    width:92%;
    height:92%;

    border-radius:38px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.82),
            rgba(255,240,245,.80)
        );

    border:1px solid rgba(229,101,144,.14);

    box-shadow:
        0 28px 65px rgba(88,43,55,.08);

    z-index:0;

}

.about-story img{

    position:relative;

    z-index:2;

    width:100%;

    border-radius:32px !important;

    border:8px solid rgba(255,255,255,.95);

    box-shadow:
        0 25px 60px rgba(88,43,55,.16);

    transition:.45s;

}

.about-story img:hover{

    transform:
        translateY(-8px)
        rotate(1deg);

    box-shadow:
        0 35px 75px rgba(88,43,55,.22);

}

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

.about-story .col-lg-6:last-child{

    animation:aboutFadeUp .8s .15s ease both;

}

.about-story h2{

    margin-bottom:28px;

    color:var(--title);

    font-family:"Playfair Display",serif;

    font-size:clamp(2.5rem,4vw,3.8rem);

    font-weight:700;

    line-height:1.15;

    letter-spacing:-1px;

}

.about-story p{

    margin-bottom:22px;

    color:var(--text);

    font-size:1.02rem;

    line-height:1.95;

}

/* ==================================================
   ESTATÍSTICAS
================================================== */

.about-story .row.mt-5{

    margin-top:55px !important;

}

.about-story .row.mt-5 .col-4{

    padding:0 12px;

}

/* Card */

.about-story .row.mt-5 .col-4>div,
.about-story .row.mt-5 .col-4{

    position:relative;

}

.about-story .row.mt-5 .col-4{

    display:flex;

}

.about-story .row.mt-5 .col-4>*{

    width:100%;

}

.about-story .row.mt-5 .col-4{

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(255,250,251,.95)
        );

    border:1px solid rgba(240,220,226,.95);

    border-radius:22px;

    box-shadow:
        0 15px 35px rgba(88,43,55,.08);

    min-height:145px;

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

    flex-direction:column;

    transition:.35s;

}

.about-story .row.mt-5 .col-4:hover{

    transform:translateY(-8px);

    border-color:rgba(229,101,144,.30);

    box-shadow:
        0 28px 55px rgba(88,43,55,.13);

}

/* detalhe */

.about-story .row.mt-5 .col-4::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:4px;
    height:100%;

    border-radius:20px 0 0 20px;

    background:
        linear-gradient(
            180deg,
            var(--primary),
            #ffdbe7
        );

    opacity:0;

    transition:.35s;

}

.about-story .row.mt-5 .col-4:hover::before{

    opacity:1;

}

/* número */

.about-story h3{

    margin-bottom:8px;

    color:var(--primary) !important;

    font-family:"Playfair Display",serif;

    font-size:2.2rem;

    font-weight:700;

}

/* legenda */

.about-story small{

    display:block;

    color:var(--text-light);

    font-size:.84rem;

    font-weight:500;

    line-height:1.5;

}

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

@media(max-width:991px){

.about-story{

padding:90px 0;

text-align:center;

}

.about-story h2{

font-size:2.8rem;

}

.about-story img{

margin-bottom:45px;

}

}

@media(max-width:768px){

.about-story{

padding:70px 0;

}

.about-story h2{

font-size:2.2rem;

}

.about-story p{

font-size:.95rem;

}

.about-story .row.mt-5{

gap:18px;

}

.about-story .row.mt-5 .col-4{

width:100%;

min-height:120px;

}

.about-story h3{

font-size:1.9rem;

}

}

/* ==================================================
   MISSÃO • VISÃO • VALORES
================================================== */

.mission {
    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 14%,
            rgba(229, 101, 144, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(248, 220, 229, 0.58),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fff8fa 0%,
            #ffffff 100%
        );
}

.mission::before {
    position: absolute;
    top: -150px;
    right: -130px;

    width: 340px;
    height: 340px;

    content: "";

    background:
        radial-gradient(
            circle,
            rgba(229, 101, 144, 0.1),
            transparent 70%
        );

    border-radius: 50%;

    pointer-events: none;
}

/* Cabeçalho */

.mission .text-center {
    position: relative;
    z-index: 2;

    margin-bottom: 58px !important;
}

.mission h2 {
    max-width: 690px;
    margin: 18px auto 18px;

    font-size: clamp(2.7rem, 4vw, 4rem);
}

.mission .text-center > p {
    max-width: 760px;
}

/* Cards */

.mission-card {
    position: relative;

    height: 100%;
    padding: 42px 32px;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 250, 251, 0.96)
        );

    border: 1px solid rgba(240, 220, 226, 0.95);
    border-radius: 28px;

    box-shadow: var(--shadow-small);

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.mission-card::before {
    position: absolute;
    top: 0;
    right: 0;

    width: 125px;
    height: 125px;

    content: "";

    background:
        radial-gradient(
            circle at top right,
            rgba(229, 101, 144, 0.14),
            transparent 68%
        );

    pointer-events: none;
}

.mission-card::after {
    position: absolute;
    right: 34px;
    bottom: 0;
    left: 34px;

    height: 3px;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    border-radius: 999px;

    opacity: 0;

    transform: scaleX(0.35);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.mission-card:hover {
    border-color: rgba(229, 101, 144, 0.35);

    box-shadow:
        0 25px 58px rgba(88, 43, 55, 0.14);

    transform: translateY(-10px);
}

.mission-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Ícones */

.icon-box {
    position: relative;
    z-index: 2;

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

    width: 82px;
    height: 82px;
    margin: 0 auto 26px;

    color: var(--primary);

    background:
        linear-gradient(
            145deg,
            var(--primary-light),
            #ffe4ee
        );

    border: 1px solid rgba(229, 101, 144, 0.18);
    border-radius: 24px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 12px 24px rgba(229, 101, 144, 0.11);

    font-size: 2rem;

    transition:
        color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.mission-card:hover .icon-box {
    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-hover)
        );

    box-shadow:
        0 16px 30px rgba(229, 101, 144, 0.26);

    transform:
        scale(1.08)
        rotate(-4deg);
}

/* Textos */

.mission-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 16px;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-weight: 700;
}

.mission-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--text);

    font-size: 0.95rem;
    line-height: 1.85;
}

/* Animações */

.mission .col-lg-4:nth-child(1) .mission-card {
    animation: aboutFadeUp 0.8s 0.05s ease both;
}

.mission .col-lg-4:nth-child(2) .mission-card {
    animation: aboutFadeUp 0.8s 0.14s ease both;
}

.mission .col-lg-4:nth-child(3) .mission-card {
    animation: aboutFadeUp 0.8s 0.23s ease both;
}

/* ==================================================
   LINHA DO TEMPO
================================================== */

.timeline {
    padding: 115px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafb 100%
        );
}

.timeline::before {
    position: absolute;
    bottom: -170px;
    left: -160px;

    width: 400px;
    height: 400px;

    content: "";

    background:
        radial-gradient(
            circle,
            rgba(248, 220, 229, 0.64),
            transparent 70%
        );

    border-radius: 50%;

    pointer-events: none;
}

/* Cabeçalho */

.timeline .text-center {
    margin-bottom: 62px !important;
}

.timeline h2 {
    max-width: 760px;
    margin: 18px auto 0;

    font-size: clamp(2.7rem, 4vw, 4rem);
}

/* Estrutura */

.timeline-wrapper {
    position: relative;

    max-width: 950px;
    margin: 0 auto;
    padding-left: 126px;
}

.timeline-wrapper::before {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 53px;

    width: 4px;

    content: "";

    background:
        linear-gradient(
            180deg,
            rgba(229, 101, 144, 0.22),
            var(--primary),
            rgba(229, 101, 144, 0.22)
        );

    border-radius: 999px;
}

.timeline-item {
    position: relative;

    display: block;

    margin-bottom: 34px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Ano */

.timeline-year {
    position: absolute;
    top: 24px;
    left: -126px;
    z-index: 3;

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

    width: 106px;
    height: 106px;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-hover)
        );

    border: 8px solid var(--white);
    border-radius: 50%;

    box-shadow:
        0 16px 34px rgba(229, 101, 144, 0.28);

    font-family: "Playfair Display", serif;
    font-size: 1.08rem;
    font-weight: 700;
    text-align: center;
}

/* Conteúdo */

.timeline-content {
    position: relative;

    padding: 32px 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 250, 251, 0.96)
        );

    border: 1px solid rgba(240, 220, 226, 0.95);
    border-radius: 24px;

    box-shadow: var(--shadow-small);

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.timeline-content::before {
    position: absolute;
    top: 46px;
    left: -13px;

    width: 24px;
    height: 24px;

    content: "";

    background: var(--white);

    border-bottom: 1px solid rgba(240, 220, 226, 0.95);
    border-left: 1px solid rgba(240, 220, 226, 0.95);

    transform: rotate(45deg);
}

.timeline-content:hover {
    border-color: rgba(229, 101, 144, 0.32);

    box-shadow:
        0 22px 52px rgba(88, 43, 55, 0.13);

    transform: translateX(9px);
}

.timeline-content h4 {
    margin: 0 0 14px;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.timeline-content p {
    margin: 0;

    color: var(--text);

    font-size: 0.96rem;
    line-height: 1.85;
}

/* Animações */

.timeline-item:nth-child(1) {
    animation: aboutFadeUp 0.8s 0.05s ease both;
}

.timeline-item:nth-child(2) {
    animation: aboutFadeUp 0.8s 0.13s ease both;
}

.timeline-item:nth-child(3) {
    animation: aboutFadeUp 0.8s 0.21s ease both;
}

.timeline-item:nth-child(4) {
    animation: aboutFadeUp 0.8s 0.29s ease both;
}

/* ==================================================
   REPORTAGEM / RECONHECIMENTO
================================================== */

.about-feature {
    padding: 115px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(229, 101, 144, 0.09),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #fff8fa 0%,
            #ffffff 100%
        );
}

.about-feature::after {
    position: absolute;
    right: -140px;
    bottom: -170px;

    width: 390px;
    height: 390px;

    content: "";

    background:
        radial-gradient(
            circle,
            rgba(248, 220, 229, 0.78),
            transparent 70%
        );

    border-radius: 50%;

    pointer-events: none;
}

/* Imagem */

.about-feature .col-lg-6:first-child {
    position: relative;

    padding: 22px;

    animation: aboutFadeUp 0.8s ease both;
}

.about-feature .col-lg-6:first-child::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;

    width: 91%;
    height: 91%;

    content: "";

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.84),
            rgba(255, 240, 245, 0.8)
        );

    border: 1px solid rgba(229, 101, 144, 0.15);
    border-radius: 38px;

    box-shadow:
        0 28px 65px rgba(88, 43, 55, 0.09);

    transform:
        translate(-50%, -50%)
        rotate(-3deg);
}

.about-feature img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;

    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: 32px !important;

    box-shadow:
        0 26px 62px rgba(88, 43, 55, 0.17) !important;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.about-feature img:hover {
    transform:
        translateY(-8px)
        rotate(1deg);

    box-shadow:
        0 36px 78px rgba(88, 43, 55, 0.22) !important;
}

/* Texto */

.about-feature .col-lg-6:last-child {
    animation: aboutFadeUp 0.8s 0.15s ease both;
}

.about-feature h2 {
    margin: 20px 0 24px;

    font-size: clamp(2.7rem, 4vw, 4rem);
}

.about-feature p {
    margin-bottom: 20px;

    color: var(--text);

    font-size: 1rem;
    line-height: 1.9;
}

/* Botão */

.about-feature .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 56px;
    padding: 14px 30px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    border: 2px solid var(--primary);
    border-radius: 999px;

    box-shadow:
        0 14px 30px rgba(229, 101, 144, 0.26);

    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.about-feature .btn-primary:hover {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary-hover),
            var(--primary-dark)
        );

    border-color: var(--primary-hover);

    box-shadow:
        0 19px 38px rgba(206, 77, 120, 0.32);

    transform: translateY(-4px);
}

/* ==================================================
   DIFERENCIAIS
================================================== */

.about-differentials {
    padding: 115px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(229, 101, 144, 0.08),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fff9fb 100%
        );
}

.about-differentials::before {
    position: absolute;
    top: -150px;
    left: -130px;

    width: 350px;
    height: 350px;

    content: "";

    background:
        radial-gradient(
            circle,
            rgba(248, 220, 229, 0.72),
            transparent 70%
        );

    border-radius: 50%;

    pointer-events: none;
}

/* Cabeçalho */

.about-differentials .text-center {
    margin-bottom: 58px !important;
}

.about-differentials h2 {
    max-width: 760px;
    margin: 18px auto 0;

    font-size: clamp(2.7rem, 4vw, 4rem);
}

/* Cards */

.diff-card {
    position: relative;

    height: 100%;
    padding: 38px 26px;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 250, 251, 0.96)
        );

    border: 1px solid rgba(240, 220, 226, 0.95);
    border-radius: 26px;

    box-shadow: var(--shadow-small);

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.diff-card::before {
    position: absolute;
    top: 0;
    right: 0;

    width: 115px;
    height: 115px;

    content: "";

    background:
        radial-gradient(
            circle at top right,
            rgba(229, 101, 144, 0.14),
            transparent 70%
        );

    pointer-events: none;
}

.diff-card::after {
    position: absolute;
    right: 30px;
    bottom: 0;
    left: 30px;

    height: 3px;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    border-radius: 999px;

    opacity: 0;

    transform: scaleX(0.4);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.diff-card:hover {
    background:
        linear-gradient(
            145deg,
            #fff7fa,
            #ffffff
        );

    border-color: rgba(229, 101, 144, 0.36);

    box-shadow:
        0 24px 55px rgba(88, 43, 55, 0.14);

    transform: translateY(-10px);
}

.diff-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Ícones */

.diff-card i {
    position: relative;
    z-index: 2;

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

    width: 76px;
    height: 76px;
    margin: 0 auto 24px;

    color: var(--primary);

    background:
        linear-gradient(
            145deg,
            var(--primary-light),
            #ffe4ee
        );

    border: 1px solid rgba(229, 101, 144, 0.18);
    border-radius: 22px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 11px 22px rgba(229, 101, 144, 0.1);

    font-size: 1.8rem;

    transition:
        color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.diff-card:hover i {
    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-hover)
        );

    box-shadow:
        0 16px 30px rgba(229, 101, 144, 0.25);

    transform:
        scale(1.08)
        rotate(-4deg);
}

/* Textos */

.diff-card h4 {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
}

.diff-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--text);

    font-size: 0.92rem;
    line-height: 1.8;
}

/* Animações */

.about-differentials .col-lg-3:nth-child(1) .diff-card {
    animation: aboutFadeUp 0.8s 0.05s ease both;
}

.about-differentials .col-lg-3:nth-child(2) .diff-card {
    animation: aboutFadeUp 0.8s 0.13s ease both;
}

.about-differentials .col-lg-3:nth-child(3) .diff-card {
    animation: aboutFadeUp 0.8s 0.21s ease both;
}

.about-differentials .col-lg-3:nth-child(4) .diff-card {
    animation: aboutFadeUp 0.8s 0.29s ease both;
}

/* ==================================================
   DEPOIMENTO
================================================== */

.about-quote {
    padding: 120px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(255, 255, 255, 0.8),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(229, 101, 144, 0.1),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fff4f8 0%,
            #ffe7ef 100%
        );
}

.about-quote::before,
.about-quote::after {
    position: absolute;

    content: "";

    border-radius: 50%;

    pointer-events: none;
}

.about-quote::before {
    top: -140px;
    left: -120px;

    width: 320px;
    height: 320px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.75),
            transparent 70%
        );
}

.about-quote::after {
    right: -140px;
    bottom: -170px;

    width: 380px;
    height: 380px;

    background:
        radial-gradient(
            circle,
            rgba(229, 101, 144, 0.12),
            transparent 70%
        );
}

/* Caixa do depoimento */

.quote-box {
    position: relative;

    max-width: 920px;
    margin: 0 auto;
    padding: 72px 58px;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 250, 251, 0.96)
        );

    border: 1px solid rgba(240, 220, 226, 0.95);
    border-radius: 34px;

    box-shadow:
        0 32px 75px rgba(88, 43, 55, 0.13);

    animation: aboutFadeUp 0.8s ease both;
}

.quote-box::before {
    position: absolute;
    top: -60px;
    left: -60px;

    width: 180px;
    height: 180px;

    content: "";

    background:
        radial-gradient(
            circle,
            rgba(229, 101, 144, 0.12),
            transparent 70%
        );

    border-radius: 50%;

    pointer-events: none;
}

.quote-box::after {
    position: absolute;
    right: 60px;
    bottom: 0;
    left: 60px;

    height: 4px;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    border-radius: 999px;
}

/* Ícone */

.quote-box > i {
    position: relative;
    z-index: 2;

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

    width: 86px;
    height: 86px;
    margin: 0 auto 28px;

    color: var(--primary);

    background:
        linear-gradient(
            145deg,
            var(--primary-light),
            #ffe4ee
        );

    border: 1px solid rgba(229, 101, 144, 0.18);
    border-radius: 26px;

    box-shadow:
        0 14px 28px rgba(229, 101, 144, 0.12);

    font-size: 2.2rem;
}

/* Texto */

.quote-box p {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: 0 auto 32px;

    color: var(--text);

    font-family: "Playfair Display", serif;
    font-size: clamp(1.35rem, 2.3vw, 1.75rem);
    font-style: italic;
    line-height: 1.75;
}

.quote-box h4 {
    position: relative;
    z-index: 2;

    margin: 0 0 6px;

    color: var(--title);

    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.quote-box span {
    position: relative;
    z-index: 2;

    color: var(--text-light);

    font-size: 0.9rem;
    font-weight: 500;
}

/* ==================================================
   CTA FINAL
================================================== */

.about-cta {
    padding: 92px 0;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.16),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(255, 255, 255, 0.1),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );
}

.about-cta::before,
.about-cta::after {
    position: absolute;

    content: "";

    border-radius: 50%;

    pointer-events: none;
}

.about-cta::before {
    top: -150px;
    right: -100px;

    width: 330px;
    height: 330px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.14),
            transparent 70%
        );
}

.about-cta::after {
    bottom: -170px;
    left: -130px;

    width: 360px;
    height: 360px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.11),
            transparent 70%
        );
}

.about-cta .row {
    position: relative;
    z-index: 2;
}

.about-cta h2 {
    max-width: 760px;
    margin: 0 0 16px;

    color: var(--white);

    font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.about-cta p {
    max-width: 760px;
    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1.04rem;
    line-height: 1.8;
}

/* Botão do CTA */

.about-cta .btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 58px;
    padding: 15px 32px;

    color: var(--primary);
    background: var(--white);

    border: 2px solid var(--white);
    border-radius: 999px;

    box-shadow:
        0 16px 34px rgba(88, 43, 55, 0.18);

    font-size: 0.96rem;
    font-weight: 600;
    text-decoration: none;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.about-cta .btn-light:hover {
    color: var(--white);
    background: transparent;

    border-color: var(--white);

    box-shadow:
        0 20px 42px rgba(88, 43, 55, 0.24);

    transform: translateY(-4px);
}

/* ==================================================
   SELEÇÃO DE TEXTO
================================================== */

::selection {
    color: var(--white);
    background: var(--primary);
}

/* ==================================================
   RESPONSIVO — NOTEBOOK
================================================== */

@media (max-width: 1199.98px) {
    .about-hero {
        padding: 85px 0 95px;
    }

    .about-story,
    .mission,
    .timeline,
    .about-feature,
    .about-differentials,
    .about-quote {
        padding: 100px 0;
    }

    .about-story h2,
    .mission h2,
    .timeline h2,
    .about-feature h2,
    .about-differentials h2 {
        font-size: clamp(2.5rem, 4vw, 3.6rem);
    }

    .about-hero img {
        min-height: 470px;
    }

    .mission-card {
        padding: 38px 28px;
    }

    .timeline-wrapper {
        max-width: 880px;
    }
}

/* ==================================================
   RESPONSIVO — TABLET
================================================== */

@media (max-width: 991.98px) {
    .about-hero {
        padding: 75px 0 85px;

        text-align: center;
    }

    .about-hero .hero-title,
    .about-hero .hero-text {
        margin-right: auto;
        margin-left: auto;
    }

    .about-hero .btn-primary {
        margin-right: auto;
        margin-left: auto;
    }

    .about-hero .col-lg-6:last-child {
        margin-top: 18px;
    }

    .about-hero img {
        max-width: 560px;
        min-height: auto;
    }

    .about-story {
        padding: 90px 0;

        text-align: center;
    }

    .about-story img {
        max-width: 620px;
        margin: 0 auto 24px;
    }

    .mission,
    .timeline,
    .about-feature,
    .about-differentials,
    .about-quote {
        padding: 90px 0;
    }

    .about-feature {
        text-align: center;
    }

    .about-feature img {
        max-width: 620px;
        margin: 0 auto;
    }

    .about-feature .btn-primary {
        margin-right: auto;
        margin-left: auto;
    }

    .timeline-wrapper {
        max-width: 760px;
    }

    .about-cta {
        padding: 82px 0;

        text-align: center;
    }

    .about-cta h2,
    .about-cta p {
        margin-right: auto;
        margin-left: auto;
    }

    .about-cta .text-lg-end {
        margin-top: 32px;

        text-align: center !important;
    }
}

/* ==================================================
   RESPONSIVO — CELULAR
================================================== */

@media (max-width: 767.98px) {
    .about-hero {
        padding: 60px 0 70px;
    }

    .about-hero .hero-title {
        font-size: 2.6rem;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .about-hero .hero-text {
        font-size: 0.97rem;
        line-height: 1.75;
    }

    .about-hero .btn-primary {
        width: 100%;
        max-width: 360px;
    }

    .about-hero .col-lg-6:last-child {
        padding: 14px;
    }

    .about-hero .col-lg-6:last-child::before {
        display: none;
    }

    .about-hero img {
        border-width: 6px;
        border-radius: 27px !important;
    }

    .about-story,
    .mission,
    .timeline,
    .about-feature,
    .about-differentials,
    .about-quote {
        padding: 72px 0;
    }

    .about-story h2,
    .mission h2,
    .timeline h2,
    .about-feature h2,
    .about-differentials h2 {
        font-size: 2.3rem;
    }

    .about-story p,
    .about-feature p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about-story .row.mt-5 {
        gap: 16px;
    }

    .about-story .row.mt-5 .col-4 {
        width: 100%;
        min-height: 116px;
    }

    .mission-card {
        padding: 34px 26px;
    }

    .timeline-wrapper {
        padding-left: 0;
    }

    .timeline-wrapper::before {
        display: none;
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;

        margin-bottom: 30px;

        text-align: center;
    }

    .timeline-year {
        position: relative;
        top: auto;
        left: auto;

        width: 82px;
        height: 82px;
        margin-bottom: 18px;

        border-width: 6px;

        font-size: 0.96rem;
    }

    .timeline-content {
        width: 100%;
        padding: 28px 24px;
    }

    .timeline-content::before {
        display: none;
    }

    .timeline-content:hover {
        transform: translateY(-5px);
    }

    .about-feature .col-lg-6:first-child {
        padding: 14px;
    }

    .about-feature .col-lg-6:first-child::before {
        display: none;
    }

    .diff-card {
        padding: 34px 24px;
    }

    .quote-box {
        padding: 52px 30px;

        border-radius: 28px;
    }

    .quote-box p {
        font-size: 1.3rem;
    }

    .about-cta {
        padding: 72px 0;
    }

    .about-cta h2 {
        font-size: 2.35rem;
    }

    .about-cta p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .about-cta .btn-light {
        width: 100%;
        max-width: 360px;
    }
}

/* ==================================================
   RESPONSIVO — CELULAR PEQUENO
================================================== */

@media (max-width: 575.98px) {
    .about-hero {
        padding: 52px 0 62px;
    }

    .hero-badge,
    .section-subtitle {
        padding: 9px 16px;

        font-size: 0.78rem;
    }

    .about-hero .hero-title {
        font-size: 2.2rem;
    }

    .about-hero .hero-text {
        font-size: 0.93rem;
    }

    .about-story,
    .mission,
    .timeline,
    .about-feature,
    .about-differentials,
    .about-quote {
        padding: 60px 0;
    }

    .about-story h2,
    .mission h2,
    .timeline h2,
    .about-feature h2,
    .about-differentials h2 {
        font-size: 2.05rem;
    }

    .about-story img,
    .about-feature img {
        border-width: 5px;
        border-radius: 24px !important;
    }

    .about-story .row.mt-5 .col-4 {
        min-height: 108px;

        border-radius: 18px;
    }

    .about-story h3 {
        font-size: 1.75rem;
    }

    .mission-card {
        padding: 30px 22px;

        border-radius: 23px;
    }

    .icon-box {
        width: 70px;
        height: 70px;

        border-radius: 20px;

        font-size: 1.7rem;
    }

    .mission-card h3 {
        font-size: 1.5rem;
    }

    .timeline-year {
        width: 74px;
        height: 74px;

        font-size: 0.88rem;
    }

    .timeline-content {
        padding: 24px 20px;

        border-radius: 20px;
    }

    .timeline-content h4 {
        font-size: 1.35rem;
    }

    .diff-card {
        padding: 30px 22px;

        border-radius: 22px;
    }

    .diff-card i {
        width: 66px;
        height: 66px;

        border-radius: 19px;

        font-size: 1.55rem;
    }

    .diff-card h4 {
        font-size: 1.3rem;
    }

    .quote-box {
        padding: 44px 22px;

        border-radius: 24px;
    }

    .quote-box > i {
        width: 72px;
        height: 72px;

        border-radius: 22px;

        font-size: 1.85rem;
    }

    .quote-box p {
        font-size: 1.13rem;
        line-height: 1.7;
    }

    .about-cta {
        padding: 62px 0;
    }

    .about-cta h2 {
        font-size: 2.05rem;
    }

    .about-cta .btn-light {
        min-height: 56px;
        padding: 14px 26px;
    }
}

/* ==================================================
   ACESSIBILIDADE
================================================== */

.about-hero a:focus-visible,
.about-feature a:focus-visible,
.about-cta a:focus-visible {
    outline: 3px solid rgba(229, 101, 144, 0.3);
    outline-offset: 4px;
}

.about-cta a:focus-visible {
    outline-color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   REDUÇÃO DE MOVIMENTO
================================================== */

@media (prefers-reduced-motion: reduce) {
    .about-hero *,
    .about-story *,
    .mission *,
    .timeline *,
    .about-feature *,
    .about-differentials *,
    .about-quote *,
    .about-cta * {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}