@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html {
    width: 100%;
    height: 100%;
}

body {
    background: var(--light-color);
    position: relative;
    font-family: var(--font-sansserif);
    overflow-x: hidden;
    color: var(--dark-green);
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: none;
}

html {
    scroll-behavior: smooth;
}

:root {
    --dark-green: #464e1b;
    --light-color: #fefef7;
    --orange-color: #E86D21;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --font-sansserif: "Montserrat", sans-serif;
    --font-serif: "Playfair Display", serif;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-solid: #ffffff;
    --border-soft: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 16px 50px rgba(0, 0, 0, 0.12);
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;
}

header,section,footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    max-width: 1240px;
    width: 100%;
    height: fit-content;
    position: relative;
}

.space-box {
    width: 100%;
    height: clamp(5rem, 7vw, 8rem);
}

/* header css start here */

header {
    width: 100%;
    height: fit-content;
    z-index: 1000;
    position: sticky;
    top: 0;
}

.navbar {
    width: 100%;
    height: fit-content;
    background: rgba(70, 78, 27, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(254, 254, 247, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navbar .container {
    padding: 15px 50px;
}

.navbar ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 70px;
}

.navbar ul li a {
   color: var(--light-color);
   font-size: 18px;
   text-decoration: none;
   font-weight: 500;
   transition: 0.3s;
   position: relative;
   padding: 3px;
   letter-spacing: 0.2px;
}

.navbar ul li a::before {
    display: none;
    content: '';
    width: 100%;
    height: 2.5px;
    border-radius: 20px;
    background: var(--orange-color);
    position: absolute;
    top: 100%;
    left: 0;
}

.navbar ul li a:hover::before {
    display: block;
}

.toggle-btn {
    display: none;
}

/* hero-section css start here */

.hero-section {
    width: 100%;
    height: fit-content;
    padding: clamp(70px, 8vw, 110px) 50px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.hero-section::before {
    content: none;
}

.hero-section::after {
    content: none;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-left {
    width: calc(100% - 600px);
}

.la-psicoteca {
    width: 500px;
}

.hero-left .hero-para {
    margin: clamp(28px, 5vw, 70px) 0 clamp(22px, 4vw, 50px) 0;
    color: var(--dark-green);
    font-size: clamp(22px, 2.3vw, 34px);
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.hero-para span {
    color: var(--orange-color);
}

.hero-left a {
    text-decoration: none;
    padding: 12px 42px;
    border-radius: 45px;
    border: 1.5px solid var(--dark-green);
    color: var(--dark-green);
    text-transform: uppercase;
    font-size: 20px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    background: rgba(254, 254, 247, 0.7);
    box-shadow: 0 10px 26px rgba(70, 78, 27, 0.10);
}

.hero-left a:hover {
    background: var(--dark-green);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(70, 78, 27, 0.22);
}

.hero-right {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-right .hero-column-one,
.hero-right .hero-column-two {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-column-one .hero-img-box,
.hero-column-two .hero-img-box {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transform: translateZ(0);
}

.hero-column-one .hero-img-box {
    width: 302px;
    aspect-ratio: 1/1.45;
}

.hero-column-two .hero-img-box {
    width: 222px;
    aspect-ratio: 1/1.45;
}

.hero-img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.marquee-box {
    width: 100%;
    background: rgba(70, 78, 27, 0.94);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 50px;
    overflow: hidden;
    position: relative;
}

.marquee-box::before,
.marquee-box::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    pointer-events: none;
    z-index: 2;
}

.marquee-box::before {
    left: 0;
    background: linear-gradient(90deg, rgba(70, 78, 27, 1), rgba(70, 78, 27, 0));
}

.marquee-box::after {
    right: 0;
    background: linear-gradient(270deg, rgba(70, 78, 27, 1), rgba(70, 78, 27, 0));
}

.marquee-box::-webkit-scrollbar {
    display: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 55s linear infinite;
    position: relative;
    z-index: 1;
}

.marquee-box p {
    color: var(--light-color);
    font-size: 30px;
    text-transform: uppercase;
    padding: 0 10px 0 15px;
    position: relative;
    font-family: var(--font-serif);
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-box p::before {
    content: '•';
    font-size: 15px;
    color: var(--light-color);
    position: absolute;
    left: 0;
    top: 10px;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        transform: none;
    }
    .marquee-box {
        overflow: auto;
    }
}

/* about-section css start here */

.about-section {
    width: 100%;
    height: fit-content;
    padding: 0 50px;
}

.about-one,
.about-four {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-left,
.about-right {
    width: calc(50% - 25px);
}

.about-left video {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-right p {
    color: var(--dark-green);
    font-size: clamp(18px, 1.4vw, 22.66px);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-two,
.about-three {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.about-two {
    justify-content: flex-start;
}

.about-two h2 {
    width: fit-content;
    color: var(--orange-color);
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 400;
    font-family: var(--font-serif);
    line-height: 0.95;
}

.about-two h2.typewriter {
    color: var(--dark-green);
    font-size: clamp(26px, 2.6vw, 40px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.3px;
    text-align: left;
    max-width: 820px;
    width: 100%;
    margin-right: auto;
    transform: translateX(-10px);
    margin-bottom: clamp(18px, 2.2vw, 34px);
}

.about-two .list-box li {
    width: 100%;
    background: #6B8244;
    padding: 14px 16px;
    color: var(--light-color);
    text-align: center;
    border: 1px solid rgba(254, 254, 247, 0.22);
    font-size: clamp(18px, 1.9vw, 25.33px);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-two .list-box li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-three {
    flex-direction: column; 
}

.about-three h2 {
    width: fit-content;
    text-align: center;
    color: var(--orange-color);
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 400;
    font-family: var(--font-serif);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cards-box {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

.about-card {
    width: 300px;
    aspect-ratio: 1/1.3;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transform: translateZ(0);
}

.about-card::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(70, 78, 27, 0.18), rgba(70, 78, 27, 0.62));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.about-card:hover::before {
    backdrop-filter: blur(6px);
    transition: 0.3s ease-in-out;
}

.card-one-img {
    background: url(images/img-04.jpg);
}

.card-two-img {
    background: url(images/img-05.jpg);   
}

.card-three-img {
    background: url(images/img-06.jpg);   
}

.card-one-img,
.card-two-img,
.card-three-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    transition: ease-in-out 0.4s;
}

.about-card:hover .card-one-img,
.about-card:hover .card-two-img,
.about-card:hover .card-three-img {
    width: 105%;
    height: 105%;
}

.about-card a {
    width: 100%;
    color: var(--light-color);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    z-index: 50;
    text-decoration: none;
    padding: 0 20px;
}

.about-btn {
    padding: 14px 80px;
    background: rgba(254, 254, 247, 0.7);
    color: var(--dark-green);
    border-radius: 45px;
    font-weight: 500;
    font-size: 22px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    border: 1.5px solid var(--dark-green);
    box-shadow: var(--shadow-sm);
}

.about-btn.about-btn--orange {
    background: transparent;
    color: var(--orange-color);
    border-color: var(--orange-color);
    padding: 18px 70px;
}

.about-btn:hover {
    background: var(--dark-green);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-btn.about-btn--orange:hover {
    background: var(--orange-color);
    color: var(--light-color);
    border-color: var(--orange-color);
}

.about-right h1 {
    color: var(--orange-color);
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: var(--font-serif);
    line-height: 1;
}

.about-right h2 {
    color: var(--orange-color);
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.2;
    font-family: var(--font-serif);
}

/* testimonios-section css start here */

.testimonios-section {
    width: 100%;
    background: radial-gradient(900px 420px at 18% 10%,
            rgba(232, 109, 33, 0.18) 0%,
            rgba(232, 109, 33, 0.10) 28%,
            rgba(232, 109, 33, 0.05) 44%,
            rgba(232, 109, 33, 0.00) 70%),
        radial-gradient(900px 420px at 82% 20%,
            rgba(107, 130, 68, 0.22) 0%,
            rgba(107, 130, 68, 0.14) 28%,
            rgba(107, 130, 68, 0.07) 44%,
            rgba(107, 130, 68, 0.00) 70%),
        rgba(70, 78, 27, 0.96);
    padding: clamp(44px, 6vw, 72px) 50px;
}

.testimonios-section h2 {
    width: 100%;
    text-align: center;
    color: var(--light-color);
    font-size: 50px;
    margin-bottom: 30px;
    font-family: var(--font-serif);
    font-weight: 400;
}

.testimonios-con {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonios-box {
    width: 360px;
    min-height: 218px;
    height: fit-content;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: transform ease-in-out 0.3s, box-shadow ease-in-out 0.3s;
    box-shadow: var(--shadow-sm);
}

.testimonios-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.test-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
}

.test-header .t-user-img {
    width: 50px;
    border-radius: 50%;
    border: 2px solid rgba(232, 109, 33, 0.35);
}

.t-username h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 6px;
}

.t-username p {
    color: #777;
    font-size: 14px;
}

.google-icon {
    width: 30px;
    position: absolute;
    right: 0;
    top: 0;
}

.t-five-star {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.t-five-star img {
    width: 22px;
}

.testimonios-box .t-para {
    font-size: 18px;
    line-height: 1.55;
    color: var(--black-color);
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* connect-section css start here */

.connect-section {
   width: 100%;
   height: fit-content;
   padding: 0 50px;
}

.connect-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.italic-txt {
    max-width: 1000px;
    width: 100%;
    font-style: italic;
    color: var(--dark-green);
    font-size: clamp(20px, 2.4vw, 34px);
    line-height: 1.45;
    margin-bottom: 100px;
}

.typewriter .typewriter-text {
    display: inline;
}

.typewriter .typewriter-text::after {
    content: '';
    display: inline-block;
    width: 0.12em;
    height: 1em;
    margin-left: 0.08em;
    background: currentColor;
    transform: translateY(0.12em);
    animation: typewriter-blink 0.95s steps(1, end) infinite;
}

.typewriter.typewriter-done .typewriter-text::after {
    animation: none;
    opacity: 0;
}

@keyframes typewriter-blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.connect-con {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.connect-con img {
    width: 400px;
}

.conn-btn-box {
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.conn-btn-box a {
    width: 100%;
    padding: 12px 20px;
    background: rgba(254, 254, 247, 0.85);
    border: 1.5px solid rgba(232, 109, 33, 0.65);
    border-radius: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-green);
    font-size: 22px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.conn-btn-box a:hover {
    background: var(--orange-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

footer {
    width: 100%;
    background: rgba(70, 78, 27, 0.96);
    padding: 15px 50px;
}

.f-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.f-content a {
    color: var(--light-color);
    font-size: 22px;
    text-decoration: none;
}

@media(max-width:1100px) {
    .la-psicoteca {
        width: 350px;
    }
    .hero-left .hero-para {
        font-size: 25px;
        margin: 50px 0;
    }
    .hero-left a {
        font-size: 20px;
        padding: 11px 40px;
    }
    .hero-column-one .hero-img-box {
        width: 250px;
    }
    .hero-column-two .hero-img-box {
        width: 180px;
    }
    .hero-section .container {
        justify-content: space-around;
    }
    .about-two .list-box {
        max-width: 60%;
    }
    .about-two .list-box li {
        font-size: 22px;
    }
}

@media(max-width:1000px) {
    .toggle-btn {
        display: flex;
        width: 30px;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: none;
        border: none;
        outline: none;
        gap: 6px;
        position: relative;
        transition: 0.3s;
        float: right;
    }
    .toggle-btn .toggle-line {
        width: 100%;
        height: 3px;
        border-radius: 20px;
        background: var(--light-color);
        transform-origin: center center;
        transition: 0.3s;
    }
    .toggle-btn.active {
        gap: 0;
    }
    .toggle-btn.active .toggle-line:nth-child(1) {
        transform: rotate(45deg);
    }
    .toggle-btn.active .toggle-line:nth-child(2) {
        display: none;
    }
    .toggle-btn.active .toggle-line:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
    }
    .navbar {
        position: relative;
    }
    .navbar ul {
        display: none;
        width: 100%;
        position: absolute;
        flex-direction: column;
        background: var(--dark-green);
        z-index: 1000;
        top: 58px;
        left: 0;
        border-top: 1px solid var(--light-color);
        padding: 50px 20px;
        gap: 40px;
    }
    .navbar ul.active {
        display: flex;
    }
    .hero-section {
        padding: 70px 20px;
    }
    .about-section {
        padding: 0 20px;
    }
    .testimonios-section {
        padding: 50px 20px;
    }
    .connect-section {
        padding: 0 20px;
    }
    .navbar .container {
        padding: 15px 20px;
    }
    .marquee-box {
        padding: 8px 20px;
    }
    .hero-section .container {
        flex-direction: column;
        gap: 70px;
    }
    .hero-left {
        max-width: 700px;
        width: 100%;
    }
    .hero-right {
        max-width: 700px;
        width: 100%;
        flex-wrap: wrap;
    }
    .hero-right .hero-column-one {
        width: calc(33.33% - 10px);
    }
    .hero-right .hero-column-two {
        width: calc(66.66% - 10px);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .hero-column-one .hero-img-box {
        width: 100%;
    }
    .hero-column-two .hero-img-box {
        width: calc(50% - 10px);
    }
    .about-one, .about-four {
        max-width: 700px;
        width: 100%;
        flex-direction: column-reverse;
    }
    .about-left, .about-right {
        width: 100%;
    }
    .about-two, .about-three {
        flex-direction: column;
    }
    .italic-txt {
        font-size: 25px;
        margin-bottom: 60px;
    }
    .connect-con {
        flex-direction: column;
        gap: 50px;
    }
    .f-content {
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
    }
}

@media(max-width:767px) {
    .hero-section {
        padding: 60px 20px 70px 20px;
    }
    .hero-right {
        gap: 10px;
    }
    .hero-right .hero-column-one {
        width: calc(33.33% - 5px);
    }
    .hero-right .hero-column-two {
        width: calc(66.66% - 5px);
        gap: 10px;
    }
    .hero-column-two .hero-img-box {
        width: calc(50% - 5px);
    }
    .la-psicoteca {
        max-width: 270px;
        width: 100%;
    }
    .hero-section::before {
        display: none;
    }
    .hero-section::after {
        display: none;
    }
    .hero-left .hero-para {
        font-size: 23px;
        margin: 20px 0 50px;
        line-height: 1.5;
    }
    .marquee-box {
        margin-bottom: 2rem;
    }
    .marquee-box p {
        font-size: 22px;
    }
    .about-right p {
        font-size: 21px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    .about-one, .about-four,
    .about-two, .about-three {
        gap: 30px;
    }
    .about-two h2 {
        font-size: 50px;
    }
    .about-two .list-box {
        max-width: 100%;
        width: 100%;
        gap: 8px;
    }
    .about-two .list-box li {
        font-size: 21px;
        line-height: 1.5;
    }
    .about-three h2 {
        font-size: 40px;
    }
    .cards-box {
        gap: 40px;
    }
    .about-card {
        max-width: 350px;
        width: 100%;
    }
    .connect-con img {
        width: 270px;
    }
    .about-btn {
        max-width: 450px;
        width: 100%;
        padding: 12px 20px;
        text-align: center;
        font-size: 20px;
    }
    .about-right h1 {
        font-size: 35px;
        margin-bottom: 15px;
    }
    .about-right h2,
    .testimonios-section h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .italic-txt {
        font-size: 22px;
        margin-bottom: 40px;
        line-height: 1.5;
    }
    .conn-btn-box a {
        font-size: 20px;
    }
    .f-content a {
        font-size: 20px;
    }
    .about-card a {
        font-size: 27px;
        line-height: 1.3;
    }
}

.piscologas-section-one {
    padding: clamp(110px, 10vh, 150px) 20px 0;
}

.p-o-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(44px, 6vw, 100px);
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(22px, 3vw, 34px);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.p-o-left {
    width: auto;
    flex: 1 1 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-o-left h1 {
    width: 100%;
    color: var(--orange-color);
    text-transform: uppercase;
    font-size: clamp(42px, 4.2vw, 64px);
    margin-bottom: 25px;
    font-weight: 400;
    font-family: var(--font-serif);
    line-height: 1;
}

.p-o-left p {
    color: var(--dark-green);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.5;
    margin-bottom: 20px;
}

.p-o-right {
    width: auto;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-o-img {
    width: clamp(280px, 34vw, 381px);
    height: clamp(360px, 40vw, 470px);
    background: #8da860;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.p-o-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.piscologas-section-two {
    padding: clamp(28px, 4vw, 56px) 20px 0;
}

.p-t-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(26px, 6vw, 80px);
    max-width: 1180px;
    margin: 0 auto;
}

.p-t-card {
    width: min(360px, 100%);
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 18px 18px 22px;
}

.p-t-img {
    width: 100%;
    height: 390px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    background: #F3EEEA;
    z-index: 15;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.p-t-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
}

.green-flower,
.orange-flower {
    position: absolute;
    width: 230px;
    aspect-ratio: 1/1;
    z-index: 0;
    opacity: 0.7;
}

.green-flower {
    top: -80px;
    right: -90px;
}

.orange-flower {
    right: -130px;
    top: 280px;
}

.p-t-card .p-t-txt {
    width: 100%;
    text-align: center;
    color: var(--dark-green);
    font-size: clamp(20px, 1.6vw, 24px);
    margin: 18px 0 16px;
    z-index: 20;
    position: relative;
    line-height: 1.35;
}

.p-t-card .p-t-txt b {
    font-weight: 600;
}

.p-t-list {
    width: 100%;
    min-height: 220px;
    height: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    background: rgba(254, 254, 247, 0.55);
}

.p-t-list p {
    color: var(--dark-green);
    font-size: 18px;
    margin-bottom: 18px;
}

.p-t-list ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-t-list ul li {
    padding-left: 20px;
    position: relative;
}

.p-t-list ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11.5px;
    border: 2px solid var(--dark-green);
}

.p-t-list ul li {
    color: var(--dark-green);
    font-size: 17px;
    line-height: 1.5;
}

/* piscologas-section-three css start here */

.piscologas-section-three {
    padding: 0 20px;
}

.p-th-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(22px, 3vw, 34px);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.p-th-content h1 {
    max-width: 600px;
    font-family: var(--font-serif);
    color: var(--orange-color);
    font-size: clamp(32px, 3.6vw, 50px);
    font-weight: 400;
    line-height: 1.1;
}

.p-th-content a {
    min-width: 300px;
    width: fit-content;
    padding: 14px 22px;
    background: var(--dark-green);
    color: var(--light-color);
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-th-content a:hover {
    transform: translateY(-1px);
}

@media(max-width:1000px) {
    .piscologas-section-one {
        padding-top: 7rem;
    }
    .p-o-content,
    .p-t-content,
    .p-th-content {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
    .p-o-left,
    .p-t-left,
    .p-th-left,
    .p-o-right,
    .p-t-right,
    .p-th-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .green-flower,
    .orange-flower {
        width: 180px;
    }
    .orange-flower {
        right: -100px;
        top: 280px;
    }
    .p-t-content {
        gap: 100px;
    }
}

@media(max-width:768px) {
    .piscologas-section-one {
        padding: 90px 20px 0;
    }
    .orange-flower,
    .green-flower {
        display: none;
    }
    .p-o-img {
        max-width: 381px;
        width: 100%;
    }
    .p-th-content h1 {
        font-size: 33px;
    }
    .p-th-content a {
        font-size: 20px;
    }
}

/* ============================
 sessions individual page css start here 
============================ */

/* sessions-section-one css start here */

.sessions-section-one {
    padding: 120px 20px 0;
}

.s-o-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.s-o-left h1 {
    max-width: 400px;
    font-size: 70px;
    line-height: 1.05;
    font-weight: 400;
    color: var(--orange-color);
    font-family: var(--font-serif);
}

.s-o-right {
    width: 45%;
}

.s-o-right video {
    width: 100%;
}

/* sessions-section-two css start here */

.sessions-section-two {
    width: 100%;
    padding: 0 20px;
}

.sessions-section-two .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.s-t-content {
    max-width: 1000px;
    width: 100%;
}

.s-t-content h2 {
    color: var(--dark-green);
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.s-t-content p {
    color: var(--dark-green);
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 50px;
}

.s-t-content p:last-child {
    margin: 0;
}

.sessions-section-three a {
    font-size: 20px;
}

@media(max-width:1000px) {
.sessions-section-one {
    padding: 65px 20px 0;
}
.s-o-content {
   flex-direction: column;
}
.s-o-left,
.s-o-right {
    max-width: 800px;
    width: 100%;
}
.s-o-left h1,
.s-o-right {
    width: 100%;
}
}

@media(max-width:768px) {
    .s-o-content {
       gap: 40px;
    }
.s-o-left h1 {
    font-size: 50px;
}
}

/* ============================
 recursos page css start here 
============================ */

/* recursos-section css start here */

.recursos-section {
    padding: 80px 20px 0;
}

.r-c-img-one {
    background: url(images/recursos-img-01.jpg);
}

.r-c-img-two {
    background: url(images/recursos-img-02.jpg);
}

.r-c-img-three {
    background: url(images/recursos-img-03.jpg);
}

.r-c-img-one,
.r-c-img-two,
.r-c-img-three {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    transition: ease-in-out 0.4s;
}

.about-card:hover .r-c-img-one,
.about-card:hover .r-c-img-two,
.about-card:hover .r-c-img-three {
    width: 105%;
    height: 105%;
}

.recursos-last-section {
    padding: 0 20px;
}

.r-l-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.r-l-left h2 {
    max-width: 450px;
    color: var(--dark-green);
    font-family: var(--font-serif);
    font-size: 55px;
    line-height: 1.1;
    font-weight: 400;
}

.r-l-right p {
    max-width: 500px;
    width: 100%;
    color: var(--dark-green);
    font-size: 22px;
    line-height: 1.5;
}

.r-l-right p span {
    color: var(--orange-color);
}

@media(max-width:1000px) {
    .r-l-content {
        flex-direction: column;
        gap: 40px;
    }
    .r-l-left,
    .r-l-right {
        max-width: 800px;
        width: 100%;
    }
    .r-l-right p {
        max-width: 100%;
    }
}

@media(max-width:768px) {
    .r-l-left h2 {
        font-size: 35px;
    }
}