@import url('https://fonts.googleapis.com/css2?family=Ruda:wght@400..900&display=swap');

/* SOL GIRANDO */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* CAROUSEL */
@keyframes scrollWords {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

a {
    all: unset;
    cursor: pointer;
}

a:visited {
    color: inherit;
}

html,
body {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: var(--bege);
}

/* ROOT VARIABLES */
:root {
    --font-primaria: "ode";
    --font-secundaria: "Ruda";
    --blue: #001751;
    --bege: #f4efe6;
    --brown: #a0421d;
    --yellow: #E08A00;
}

/* SECTIONS */
section {
    scroll-snap-align: start;
    height: 100dvh;
    width: auto;
}

/* SECTIONS COLORS */
.heroSection,
.blogSection,
.footerSection,
.faqSection {
    background-color: var(--bege);
}

.mobile-tittle {
    display: none;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    padding: 4rem;
    position: relative;
    z-index: 2;
}

/* LOGO */
nav .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* CENTRALIZAR AS SECTIONS (EXCETO HERO) */
.sectionContent {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    overflow: hidden;
}

/* HERO SECTION - LAYOUT ESPECÍFICO */
.heroSection {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100vw;
}

.heroSection .sectionContent {
    display: block;
    position: relative;
    height: 100%;
}

button {
    --color: #a0421d;
    font-family: var(--font-secundaria);
    display: inline-block;
    width: 12em;
    height: 3em;
    line-height: 2.5em;
    margin: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color 0.5s, background-color 0.5s;
    z-index: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--color);
    background: var(--bege);
}

button:hover {
    background-color: var(--color);
    color: var(--bege);
}

/* Estilos para o novo ícone de menu */
.button {
    cursor: pointer;
    position: relative;
    width: 5em;
    height: 4em;
    border: none;
    padding: 0.5em;
    display: flex;
    justify-content: center;
    gap: 0.7em;
    flex-direction: column;
    transition-duration: 0.5s;
}

.similar-line {
    height: 3px;
    background: var(--blue);
    border-radius: 1em;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.line-1 {
    width: 30%;
}

.line-3 {
    width: 80%;
}

/* Efeitos apenas no click (quando menu está ativo) */

#menuToggle:checked+.button .similar-line {
    background: var(--bege);
}

#menuToggle:checked+.button .line-1 {
    width: 80%;
}

#menuToggle:checked+.button .line-3 {
    width: 30%;
}

#menuToggle {
    display: none;
}

/* GO BACK ARROW */

.gobackArrow {
    cursor: pointer;
    transition: 0.3s;
}

.gobackArrow:hover {
    transform: scale(1.3);
}

/* CONTEUDO PRINCIPAL HERO SECTION */
.heroContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    text-align: center;
    align-items: center;
    width: 90%;
    text-align: center;
    z-index: 1;
    color: var(--blue);
    gap: 1em;
}

.heroContent p {
    font-family: var(--font-primaria);
    font-weight: 400;
    font-size: 50pt;
    line-height: 1.2;
    text-align: center;
    margin-top: 5%;
}

/* Pattern de fundo da hero */
.heroYellowPattern,
.heroBluePattern {
    width: 100%;
    height: auto;
    position: absolute;
    position: absolute;
    left: 50%;
    /* Centraliza horizontalmente */
    transform: translateX(-50%);
}

.heroYellowPattern {
    position: absolute;
    bottom: 25%;
    height: 100%;
}

.heroBluePattern {
    position: absolute;
    bottom: 0;
}

.sideMenu {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: -110%;
    top: 0;
    height: 100%;
    width: 100%;
    justify-content: center;
    transition: width 0.3s ease;
    font-family: var(--font-primaria);
    font-size: 35pt;
    font-weight: 400;
    transition: ease-in-out 0.3s;
    background-color: var(--blue);
    z-index: 9999;
}

.sideGrafismo {
    position: absolute;
    width: 17rem;
    height: 17rem;
    left: -4rem;
    z-index: -1;
}

.sideGrafismoRight {
    position: absolute;
    width: 17rem;
    height: 17rem;
    right: -4rem;
    transform: rotate(180deg);
    z-index: -1;
}

.sideMenu ul li a {
    list-style: none;
    text-decoration: none;
    color: var(--bege);
}

.sideMenu ul li a:hover {
    color: var(--yellow);
}

.sideMenu.is-active {
    width: 100%;
    left: 0;
}

.sideMenu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

.sideMenu li {
    cursor: pointer;
}

/* SOCIALMIDIA ICONS */
.socialIcons {
    display: flex;
    gap: 20px;
    color: var(--blue);
}

.socialIcons i {
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.socialIcons i:hover {
    transform: scale(1.1);
}

/* NOVO MENU ICON */
.openIcon {
    cursor: pointer;
    z-index: 123123;
}

.openIcon.is-active {
    cursor: pointer;
}

/* ABOUT ME SECTION */

.aboutMeSection {
    background-color: var(--blue);
    position: relative;
    overflow: hidden;
}


.mainWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    gap: 200px;
    z-index: 1;
    max-width: 55%;
    position: relative;
    margin-left: 300px;
}

.jessicaImg {
    position: relative;
    height: 27.5em;
    object-fit: contain;
}

/* Alinhamento Otico */
.pWrapper {
    position: relative;
    top: -10px;
}

.pWrapper p {
    max-width: 85%;
    color: var(--bege);
    text-align: justify;
    font-family: var(--font-secundaria);
    font-size: clamp(0.9rem, 1.5vw, 14pt);
    font-weight: 300;
    line-height: 2.1rem;
    letter-spacing: -0.1px;
}

.jessicaSvg {
    position: absolute;
    left: -20px;
    top: 6em;
    width: 35em;
    height: 36em;
}

.solSvg {
    position: absolute;
    width: 32em;
    height: 32em;
    bottom: -50px;
    right: -260px;
}

/* CAROUSEL */
.word-carousel-container {
    position: absolute;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    overflow: hidden;
}

.word-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--yellow);
}

.word-carousel {
    display: flex;
    width: max-content;
}

.word-item {
    padding: 20px;
    color: #965900;
    font-family: var(--font-primaria);
    font-size: 22pt;
    font-weight: 400;
}

/* Animação infinita */
.word-carousel.animate {
    animation: scrollWords 40s linear infinite;
}

/* BLOG SECTION */

/* BLOG TITULOS */
.blogTituloWrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
    max-width: 80%;
    color: var(--blue);
}

.blogTituloWrapper h1 {
    font-size: clamp(2.2rem, 4vw, 3.33rem);
    font-weight: 500;
    font-family: var(--font-primaria);
}

.blogTituloWrapper h3 {
    font-weight: 300;
    font-family: var(--font-secundaria);
    font-size: clamp(0.9rem, 1.5vw, 14pt);
    line-height: 1.6;
}

/* BLOG IMGS */
.blogImageWrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 150px;
    max-width: 80%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 10px;
    scroll-behavior: smooth;
    margin-top: 100px;
}

.blogImageWrapper div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 280px;
    flex-shrink: 0;
    gap: 30px;
    transition: 0.5s ease-in-out;
    margin: 0 10px;
    cursor: pointer;
}

.blogImageWrapper div:hover {
    transform: scale(1.06);
    z-index: 1;
}

.blogImageWrapper img {
    width: 280px;
    height: auto;
    object-fit: contain;
}

.blogImageWrapper p {
    font-family: var(--font-primaria);
    font-size: 25pt;
    color: var(--blue);
    align-self: center;
}

.blogImageWrapper::-webkit-scrollbar {
    height: 8px;
}

.blogImageWrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.blogImageWrapper::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
}

.blogSection {
    position: relative;
    z-index: 1;
}

.sun {
    position: absolute;
    width: 600px;
    height: 600px;
    left: -19rem;
    bottom: -18.5rem;
    transform-origin: center center;
    animation: spin 20s linear infinite;
}

/* FAQ SECTION */
.faqSection .sectionContent {
    overflow-y: auto;
    padding: 2rem 0;
    max-height: 100vh;

}

.faqSection {
    position: relative;
}

.faqTitle {
    font-family: var(--font-primaria);
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 8rem;
    font-size: clamp(2.2rem, 4vw, 3.33rem);
}

.accordion-container {
    width: 65%;
    max-width: 1400px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 2px solid var(--yellow);
    overflow: hidden;
    padding: 20px 0;
}

.accordion-toggle {
    display: none;
}

.accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 12px 0px;
    background-color: transparent;
    font-family: var(--font-primaria);
    font-weight: 400;
    color: var(--blue);
    cursor: pointer;
    transition: background 0.3s;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    font-family: var(--font-secundaria);
    text-align: left;
    padding: 0 1rem 0 0;
    font-size: clamp(0.9rem, 1.5vw, 14pt);
    color: var(--blue);
}

.accordion-toggle:checked~.accordion-content {
    max-height: 300px;
    padding-top: 1rem;
}

.accordion-icon-wrapper {
    position: relative;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.accordion-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    width: 34px;
    height: 34px;
    stroke: var(--yellow);
    stroke-width: 1;
    fill: none;
}

.accordion-icon-plus {
    transform: rotate(0deg);
    opacity: 1;
}

.accordion-icon-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-toggle:checked+.accordion-label .accordion-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-toggle:checked+.accordion-label .accordion-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* FOOTER SECTION */
.footerSection .sectionContent {
    display: block;
    overflow: visible;
    position: relative;
    padding: 0;
}


.footerSection {
    height: auto;
    position: relative;
    z-index: 10;
}

.footersvg {
    width: 100dvw;
    position: absolute;
    top: 10%;
    z-index: 2;
    pointer-events: none;
}

.footer {
    margin-top: 15%;
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #e7f4e6;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 10vw, 12rem);
    overflow: hidden;
    z-index: 15;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--blue);
    z-index: -1;
}

.footer-content {
    display: flex;
    align-items: center;
    margin-top: clamp(4%, 8vw, 8%);
    justify-content: space-between;
    width: 100%;
    flex: 1;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo-section img {
    width: clamp(180px, 15vw, 250px);
    height: auto;
}

.text {
    width: 100%;
    max-width: 400px;
    font-size: clamp(14px, 2.25vw, 20pt);
    text-align: justify;
    font-family: var(--font-primaria);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-left: 16rem;
    padding: 0 1rem;
}

.links-section {
    display: flex;
    font-family: var(--font-secundaria);
    justify-content: space-around;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: clamp(8px, 1.8vw, 16pt);
    align-items: start;
}

.legal-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links i {
    font-size: 1.2em;
    color: #f4efe6;
}

.legal-links a:hover {
    text-decoration: underline;
}

.copyrightWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #00246d;
    font-family: var(--font-secundaria);
    font-size: clamp(10px, 2vw, 12pt);
    margin-top: auto;
    padding-bottom: 1rem;
}

.us {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    justify-content: space-around;
}

.us a {
    text-decoration: none;
    color: inherit;
}

/* ESTILOS PAGINA INSPIRACAO */

.noSun {
    width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

.post-title {
    max-width: 70%;
    margin: 3% auto 3% auto;
    font-family: ode;
    font-weight: 500;
    color: var(--blue);
    font-size: clamp(2.2rem, 4vw, 3.33rem);
}

.container {
    display: flex;
    align-items: flex-start;
    gap: 10%;
    max-width: 70%;
    margin: 0 auto;
}

.post-img {
    max-width: 450px;
    height: auto;
    flex-shrink: 0;
}

.post-text {
    text-align: justify;
    font-family: var(--font-secundaria);
    color: var(--blue);
    font-size: clamp(0.9rem, 1.5vw, 14pt);
    font-weight: 500;
    line-height: 2.1rem;
    letter-spacing: -0.1px;
}

.start-text {
    max-width: 70.5%;
    margin: auto;
    text-align: justify;
    font-family: var(--font-secundaria);
    font-weight: 500;
    color: var(--blue);
    font-size: clamp(0.9rem, 1.5vw, 14pt);
    line-height: 2.1rem;
    letter-spacing: -0.1px;
}

ul.start-text {
    padding-left: 4rem;
    list-style-position: inside;
}

.desktop-break {
    display: inline;
}

.centered-text {
    max-width: 80%;
    margin: 0px auto;
    text-align: justify;
    font-family: var(--font-secundaria);
    font-weight: 500;
    color: var(--blue);
    font-size: clamp(0.9rem, 1.5vw, 14pt);
    line-height: 2.1rem;
    letter-spacing: -0.1px;
    background-color: rgba(234, 228, 220);
    padding: 90px;
    border-radius: 8px;
}

.centered-text-autoestima {
    max-width: 70%;
    margin: 20px auto 20px auto;
    text-align: justify;
    font-family: var(--font-secundaria);
    font-weight: 500;
    color: var(--blue);
    font-size: clamp(0.9rem, 1.5vw, 14pt);
    line-height: 2.1rem;
    letter-spacing: -0.1px;
    background-color: rgba(234, 228, 220);
    padding: 60px;
}

/* BREAKPOINTS */
@media (max-width: 1600px) {

    .mainWrapper {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "foto p1"
            "p2 p2";
        gap: 40px 70px;
        align-items: start;
        max-width: 60%;
    }

    .blogImageWrapper {
        gap: 50px;
    }

    .jessicaImg {
        grid-area: foto;
        justify-self: center;
        height: 21em;
    }

    .jessicaSvg {
        position: absolute;
        left: -20px;
        top: 2em;
        width: 29em;
        height: 29em;
    }

    .aboutmeP {
        grid-area: p1;
        width: 100%;
        text-align: justify;
    }

    .aboutmeSecondP {
        grid-area: p2;
        margin-top: 30px;
        margin-left: 0;
        text-align: justify;
        min-width: 92%;
    }

    .pWrapper {
        display: contents;
    }

    .solSvg {
        position: absolute;
        width: 18em;
        height: 18em;
        bottom: -30px;
        left: -180px;
    }

    /* Footer */
    .text {
        display: none;
    }

    .sun {
        width: 400px;
        height: 400px;
        left: -12.5rem;
        bottom: -12rem;
    }

    /* INSPIRACAO */
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-img {
        max-width: 600px;
        margin-bottom: 1.5rem;
        align-self: flex-start;
    }

    .post-text {
        text-align: justify;
        width: 100%;
    }

    .centered-text {
        padding: 4em;
    }

}

@media (max-width: 1200px) {

    /* Hero */
    nav {
        height: 140px;
    }

    .centered-text {
        padding: 50px;
    }

    .logo img {
        width: clamp(200px, 17vw, 250px);
        height: auto;
    }

    .heroContent p {
        font-size: clamp(2.8rem, 7vw, 50px);
    }


    .heroContent button {
        font-size: 16px;
        width: 12em;
        height: 3em;
    }

    .jessicaSvg {
        position: absolute;
        left: -20px;
        top: 3em;
        width: 18em;
        height: 18em;
    }

    .heroYellowPattern,
    .heroBluePattern,
    .noSun,
    .footersvg {
        width: 150%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 3rem;
    }

    .logo-section {
        margin: 0;
    }

    .logo-section img {
        width: clamp(180px, 15vw, 260px);
    }

    .text {
        display: none;
        margin: 0;
        padding: 0;
    }

    .links-section {
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .legal-links {
        align-items: center;
        gap: 1rem;
    }

    .heroContent {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        max-width: 1200px;
        text-align: center;
        align-items: center;
        width: 90%;
        z-index: 1;
        color: var(--blue);
        gap: 1em;
    }

    .sun {
        width: 350px;
        height: 350px;
        left: -10.5rem;
        bottom: -11rem;
    }

    ul.start-text {
        padding-left: 4rem;
        list-style-position: inside;
        margin: 50px auto 50px auto;
    }
}

/* Breakpoint para telas menores que 1080px */
@media (max-width: 1079px) {
    .aboutMeSection .sectionContent {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 1.5rem;
        min-height: 100vh;
        justify-content: center;
    }

    .us {
        gap: 0;
    }


    .pWrapper .aboutmeSecondP {
        display: none;
        font-size: 0;
        line-height: 0;
    }

    .word-carousel-container {
        height: 30px;
        order: 4;
    }

    .word-item {
        font-size: 16pt;
    }

    .jessicaSvg {
        order: 1;
        position: static;
        width: clamp(220px, 60vw, 380px);
        transform: translateY(-50px);
        height: auto;
        margin: 0 auto 10px auto;
    }

    .mainWrapper {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: clamp(280px, 80vw, 400px);
        max-width: 85%;
        margin: 0 auto;
        gap: 15px;
    }

    .mainWrapper {
        margin-top: -110px;
    }

    .jessicaImg {
        width: 60%;
        height: auto;
    }

    .pWrapper {
        order: 3;
        width: 100%;
        margin: 0;
        padding: 0 10px;
    }

    .pWrapper p {
        text-align: justify;
        font-size: clamp(14px, 3.2vw, 15px);
        line-height: 1.6;
        margin: 0;
        width: 100%;
        display: inline;
    }

    .pWrapper br {
        display: none;
    }

    .pWrapper .aboutmeP {
        font-size: 0;
        line-height: 0;
        color: transparent;
    }

    .pWrapper .aboutmeP::before {
        content: "Sou psicóloga há mais de 10 anos, brasileira vivendo em Dublin. Depois de anos trabalhando com psicanálise, me redescobri na Terapia Cognitivo-Comportamental (TCC). Hoje, atendo online, brasileiros que estão espalhados por mais de 10 países.";
        display: block;
        font-size: clamp(14px, 3.2vw, 15px);
        line-height: 1.6;
        text-align: center;
        color: var(--bege);
    }

    .pWrapper .aboutmeSecondP {
        display: none;
    }

    .solSvg {
        display: none;
    }

    .container {
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
        margin: 0 auto;
        gap: 1.5rem;
        margin-bottom: 2em;
    }

    .post-img {
        max-width: 100%;
        height: auto;
    }

    .post-text {
        width: 100%;
    }


    .start-text {
        margin-top: 2em;
    }

    .centered-text {
        width: 80%;
        margin: 2em auto;
        text-align: justify;
        font-family: var(--font-secundaria);
        font-weight: 500;
        color: var(--blue);
        line-height: 2.1rem;
        letter-spacing: -0.1px;
        padding: 50px;
    }

    .centered-text-autoestima {
        padding: 20px;
    }

    .post-title {
        margin-top: 1rem;
    }

    /* textos páginas secundárias */
    .post-text,
    .start-text,
    .centered-text,
    .centered-text-autoestima {
        line-height: 1.6rem;
    }

    .desktop-break {
        display: none;
    }
}

@media (max-width: 768px) {

    .jessicaSvg {
        display: none;
    }

    .mobile-tittle {
        font-family: var(--font-primaria);
        color: var(--bege);
        display: block;
        font-weight: 400;
        font-size: 32pt
    }

    .heroSection {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100vw;
    }

    .heroSection::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        z-index: -1;
    }

    .accordion-label {
        align-items: left;
        font-size: 15pt;
    }

    .accordion-content {
        font-size: clamp(0.8rem, 1.5vw, 14pt);
    }

    /* Hero  */
    .heroContent button {
        width: 11em;
        height: 3em;
        font-size: 12pt;
    }

    .aboutmeP {
        text-align: center;
        display: flex;
    }

    .logo img {
        width: 180px;
    }

    .gobackArrow {
        display: none;
    }

    .sun {
        width: 220px;
        height: 220px;
        left: -7rem;
        bottom: -7rem;
    }

    .heroYellowPattern,
    .heroBluePattern {
        width: 220dvw;
        z-index: 9000;
    }

    .noSun {
        width: 240%
    }

    .footersvg {
        width: 190%
    }

    .heroYellowPattern {
        bottom: 30%;
    }

    .text {
        display: none;
    }

    .footer-content {
        gap: 4rem;
    }

    .logo-section {
        margin: 0;
    }

    .logo-section img {
        width: clamp(120px, 14vw, 220px);
    }

    .legal-links {
        gap: 0.8rem;
        font-size: clamp(10px, 4vw, 14pt);
    }

    .legal-links a {
        font-size: inherit;
    }

    .socialIcons,
    .openIcon {
        display: none;
    }

    /* BLOG SECTION MOBILE */

    .blogImageWrapper div:nth-child(2) a img {
        content: url("assets/Tcc_mobile.png");
    }

    .blogImageWrapper div:nth-child(3) a img {
        content: url("assets/abordagem_mobile.png");
    }


    .blogTituloWrapper {
        text-align: center;
        margin: 0 auto 1rem auto;
        padding: 0;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .blogTituloWrapper h1 {
        display: none;
    }

    .blogTituloWrapper h3 {
        font-size: 1rem;
        margin: 0;
        padding: 0;
        color: transparent;
        text-align: center;
        max-width: 90%;
        line-height: 1.3;
        font-size: 0;
        line-height: 0;
    }

    .centered-text {
        padding: 20px;
    }

    .blogTituloWrapper h3::before {
        content: "Clique abaixo e leia mais sobre meu trabalho!";
        display: block;
        text-align: center;
        color: var(--blue);
        margin-bottom: 1rem;
        font-size: 1.5rem;
        line-height: 1.3;
        font-weight: 500;
        font-family: var(--font-primaria);
    }

    .blogImageWrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 95%;
        margin: 0 auto;
        padding: 0;
    }

    .blogImageWrapper div {
        width: 100%;
        max-width: 280px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .blogImageWrapper a {
        width: 100%;
        display: block;
    }

    .blogImageWrapper img {
        width: 100%;
        max-width: 100%;
        height: 120px;
        object-fit: cover;
        object-position: center;
        display: block;
        margin: 0 auto;
    }

    .blogImageWrapper p {
        font-size: 14pt;
        text-align: center;
        line-height: 1.2;
        margin: 0.5rem 0 0;
        padding: 0 10px;
    }

    /* FAQ */
    .accordion-container {
        margin-bottom: 2rem;
    }

    .faqTitle {
        margin-bottom: 2.5rem;
    }

    .post-title {
        margin-left: 15%;
    }

    nav {
        align-items: center;
        padding: 0px;
        height: 100px;
    }

    ul.start-text {
        padding-left: 1rem;
    }

}

@media (max-width: 480px) {
    .aboutMeSection .sectionContent {
        padding: 1rem;
        gap: 15px;
    }

    .copyrightWrapper {
        flex-direction: column;
    }

    .us {
        gap: 10px;
    }

    .post-title {
        margin-bottom: 4%;
        text-align: center;
    }

    .jessicaSvg {
        order: 1;
        position: static;
        width: clamp(260px, 60vw, 380px);
        transform: translateY(-50px);
        height: auto;
        margin: 0 auto 20px auto;
    }

    .mainWrapper {
        width: clamp(260px, 85vw, 350px);
        gap: 20px;
    }

    .pWrapper p {
        font-size: clamp(13px, 3vw, 14px);
        line-height: 1.5;
    }

    nav {
        align-items: center;
    }

    .heroYellowPattern {
        bottom: 32.5%;
    }

    .heroContent button {
        font-size: 11.5pt;
    }

    .heroContent p {
        max-width: 70%;
    }

    .heroYellowPattern,
    .heroBluePattern {
        width: 260%;
    }

    .noSun {
        width: 280%;
    }

    .footersvg {
        width: 240%
    }

    /* BLOG MOBILE PEQUENO */
    .blogImageWrapper {
        gap: 25px;
        margin-top: 20px;
        max-width: 95%;
    }

    .blogImageWrapper div {
        max-width: 250px;
        width: 100%;
        gap: 10px;
    }

    .blogImageWrapper img {
        width: 100%;
        max-width: 100%;
        height: 100px;
        object-fit: cover;
        object-position: center;
    }

    .blogImageWrapper p {
        font-size: 13pt;
        line-height: 1.3;
        margin: 0.5rem 0 0;
        padding: 0 5px;
    }
}