﻿@charset "utf-8";
/* CSS Document */

/*-- Fonts: Montserrat via Google Fonts (index.html) --*/

:root {
    /*-- Fundos --*/
    --color-bg-primary: #121212;
    --color-bg-secondary: #1b1b1b;

    /*-- Texto --*/
    --color-text: #fff;
    --color-black: #000;
    --color-white: #fff;

    /*-- Bordas --*/
    --color-border: #000;
    --color-border-subtle: rgba(255, 255, 255, 0.25);
    --color-border-row: rgba(255, 255, 255, 0.12);

    /*-- Texto secundÃ¡rio --*/
    --color-text-muted: rgba(255, 255, 255, 0.65);
    --color-tag-bg: rgba(255, 255, 255, 0.85);
    --color-overlay-gradient: rgba(0, 0, 0, 0.85);

    /*-- Acentos da marca --*/
    --color-pink: #d569b2;
    --color-pink-alpha-12: rgba(213, 105, 178, 0.12);
    --color-pattern-line: rgba(255, 255, 255, 0.05);
    --logo-filter: brightness(0) invert(1) opacity(0.45);
    --color-blue: #475972;
    --color-yellow: #ffd14b;

    /*-- Tipografia --*/
    --font-family: 'Montserrat', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 24px;
    --font-size-h1: 60px;
    --line-height-h1: 60px;
    --font-size-h2: 70px;
    --line-height-h2: 70px;

    /*-- Container (override Bootstrap â‰¥1600px) --*/
    --container-max-xxl: 1538px;
}

/*=== General ===*/
html {
    overflow-x: hidden;
}
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg-primary);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--color-text);
}
h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
}
h2 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
}
p {
    margin-bottom: 0;
}
a {
    text-decoration: none;
    transition: all .3s ease;
}
a:hover {
    color: inherit;
}
:focus {
    outline: none;
    border: none;
}
img {
    max-width: 100%;
    height: auto;
}
img.aligncenter {
    margin: 0 auto;
    display: block;
}
img.alignleft, figure.alignleft {
    margin: 0 30px 30px 0;
    float: left;
}
img.alignright, figure.alignright {
    margin: 0  0 30px 30px;
    float: right;
}
img.position-absolute {
    max-width: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*=== Padding ===*/


/*=== Backgrounds ===*/


/*=== Header & Menu ===*/
.header {
    position: relative;
    z-index: 100;
    padding-top: 43px;
}

.header__navbar {
    position: relative;
    align-items: center;
}

.header__brand {
    margin-right: 0;
    padding: 0;
    flex-shrink: 0;
}

.header__brand img {
    display: block;
    width: 257px;
    height: auto;
}

.header__collapse {
    align-items: center;
}

.header__menu {
    gap: 48px;
}

.header__menu .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--color-text);
}

.header__menu .nav-link:hover,
.header__menu .nav-link:focus-visible {
    color: var(--color-pink);
}

.header__cta {
    flex-shrink: 0;
}

.header__toggler {
    border: 1px solid var(--color-border-subtle);
    padding: 8px 10px;
}

.header__toggler:focus-visible {
    box-shadow: 0 0 0 2px var(--color-pink);
}

.header__toggler-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text);
    position: relative;
}

.header__toggler-icon::before,
.header__toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
}

.header__toggler-icon::before {
    top: -7px;
}

.header__toggler-icon::after {
    top: 7px;
}

.header.fix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 16px 0;
    background-color: var(--color-bg-primary);
    transform: translateY(-200%);
    transition: transform 0.3s ease;
}

.header.fix.active {
    transform: translateY(0);
}

/*=== Buttons ===*/
.button {
    border: none;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.button:hover {
    opacity: 0.9;
    color: inherit;
}

.button:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 3px;
}

/* Pill + cÃ­rculo separado (padrÃ£o OIEMOBO) */
.button--split {
    display: inline-flex;
    align-items: center;
}

.button--pink .button__pill {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 32px 0 24px;
    background-color: var(--color-pink);
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    border-radius: 100px;
}

.button--pink .button__orb {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    margin-left: -2px;
    border-radius: 50%;
    background-color: var(--color-pink);
    color: var(--color-black);
    overflow: hidden;
}

.button__orb-track {
    --orb-shift: 42px;
    display: grid;
    grid-template-areas: "slide";
    width: 42px;
    height: 42px;
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.button__orb-arrow {
    grid-area: slide;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.button__orb-arrow + .button__orb-arrow {
    transform: translate3d(calc(var(--orb-shift) * -1), var(--orb-shift), 0);
}

.button--split {
    transition: opacity 0.3s ease;
}

.button--split:hover .button__orb-track,
.button--split:focus-visible .button__orb-track,
.service-item__link:hover .button__orb-track,
.service-item__link:focus-visible .button__orb-track {
    transform: translate3d(var(--orb-shift), calc(var(--orb-shift) * -1), 0);
}

/*=== Hero Section ===*/
.hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-section__title {
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-section__banner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-section__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    padding: 35px 32px 32px;
    background-color: var(--color-bg-secondary);
    border-radius: 16px;
}

.hero-section__list p {
    font-size: 32px;
    font-weight: 500;
    line-height: 38.4px;
    color: var(--color-text);
}

.hero-section__list p + p {
    margin-top: 0;
}

.hero-section__cta {
    align-self: flex-start;
    margin-top: 32px;
}

.hero-section__media {
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
}

.hero-section__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
}

/*=== Intro Section ===*/
.intro-section {
    padding-bottom: 80px;
}

.intro-section__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intro-section__heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
    color: var(--color-text);
    margin-bottom: 0;
}

.intro-section__text {
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: var(--line-height-base);
    color: var(--color-text);
    padding-top: 10px;
}

/*=== About Section (ChicÃ£o) ===*/
.about-section {
    padding-bottom: 80px;

}

.about-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "dog"
        "quote"
        "experience"
        "about";
    border: 1px solid var(--color-border);
    background: var(--color-white) url(../img/cachorro.webp) no-repeat left center;
    background-size: contain;
}

.about-section__cell {
    border: 2px solid var(--color-border);
    margin: -1px 0 0 -1px;
}

.about-section__cell--dog {
    grid-area: dog;
    position: relative;
    min-height: 360px;
    overflow: visible;
    z-index: 2;
}

.about-section__dog {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 115%;
    max-width: none;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

.about-section__cell--quote {
    grid-area: quote;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 200px;
    padding: 24px;
    color: var(--color-black);
    text-align: right;
    min-width: 300px;
}

.about-section__quote {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 303px;
}

.about-section__caption {
    font-size: 12px;
    line-height: 18px;
    margin-top: 24px;
}

.about-section__cell--experience {
    grid-area: experience;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    padding: 32px 24px;
    background-color: var(--color-blue);
    color: var(--color-text);
}

.about-section__label {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-section__years {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 0;
}

.about-section__cell--about {
    grid-area: about;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    min-height: 280px;
    padding: 40px 32px;
    background-color: var(--color-bg-secondary);
}

.about-section__desc {
    font-size: var(--font-size-base);
    line-height: 28px;
    color: var(--color-text);
    max-width: 495px;
}

.about-section__cta {
    align-self: flex-start;
}

/*=== Services Section ===*/
.services-section {
    position: relative;
    padding: 80px 0 300px;
    background-color: var(--color-bg-primary);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 7px,
        var(--color-pattern-line) 6px,
        var(--color-pattern-line) 9px
    );
    overflow: hidden;
}
.container.services-section__inner {
    max-width: 70%;
}

.services-section__deco {
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.services-section__inner {
    position: relative;
    z-index: 1;
}

.services-section__header {
    margin-bottom: 48px;
}

.services-section__title {
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: var(--line-height-h2);
    color: var(--color-text);
    margin-bottom: 24px;
}

.services-section__desc {
    max-width: 1336px;
    font-size: var(--font-size-base);
    line-height: 28px;
    color: var(--color-text);
}

.services-section__list {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
    border-top: 1px solid var(--color-border-row);
}

.service-item {
    display: grid;
    grid-template-columns: 40px 130px minmax(140px, 220px) 1fr 42px;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border-row);
}

.service-item__num {
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: 1;
    color: var(--color-text);
}

.service-item__thumb {
    width: 130px;
    height: 48px;
    border-radius: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-item__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 0;
}

.service-item__desc {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-muted);
    max-width: 520px;
}

.service-item__link {
    display: flex;
    justify-content: flex-end;
    color: var(--color-text);
}

.service-item__link:hover {
    color: var(--color-pink);
}

.service-item__link:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 3px;
    border-radius: 50%;
}

.service-item__orb {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border-subtle);
    border-radius: 50%;
    overflow: hidden;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.service-item__link:hover .service-item__orb {
    border-color: var(--color-pink);
    background-color: var(--color-pink-alpha-12);
}

.services-section__cta {
    display: inline-flex;
}

/*=== CTA Section (Vamos trabalhar juntos) ===*/
.cta-section {
    padding-bottom: 0;
    margin-top: -232px;
    position: relative;
}

.cta-section__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 48px 32px;
    background-color: var(--color-yellow);
    border-radius: 16px;
    text-align: center;
}

.cta-section__subtitle {
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 24px;
}

.cta-section__title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 0;
}

.cta-section__title-line {
    display: block;
}

/*=== Cases Section ===*/
.cases-section {
    padding: 80px 0;
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

.cases-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.cases-section__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 0;
}

.cases-section__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding-top: 8px;
}

.cases-section__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
}

.cases-section__arrow:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 3px;
    border-radius: 50%;
}

.cases-section__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cases-section__orb {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border-subtle);
    border-radius: 50%;
    overflow: hidden;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.cases-section__arrow:hover .cases-section__orb,
.cases-section__arrow:focus-visible .cases-section__orb {
    border-color: var(--color-pink);
    background-color: var(--color-pink-alpha-12);
}

.cases-section__orb .button__orb-arrow + .button__orb-arrow {
    transform: translate3d(calc(var(--orb-shift) * -1), 0, 0);
}

.cases-section__arrow--prev .cases-section__orb .button__orb-arrow + .button__orb-arrow {
    transform: translate3d(var(--orb-shift), 0, 0);
}

.cases-section__arrow--next:hover .cases-section__orb .button__orb-track,
.cases-section__arrow--next:focus-visible .cases-section__orb .button__orb-track {
    transform: translate3d(var(--orb-shift), 0, 0);
}

.cases-section__arrow--prev:hover .cases-section__orb .button__orb-track,
.cases-section__arrow--prev:focus-visible .cases-section__orb .button__orb-track {
    transform: translate3d(calc(var(--orb-shift) * -1), 0, 0);
}

.cases-section__carousel {
    margin-right: calc(-1 * var(--bs-gutter-x, 12px));
    padding-top: 18px;
}

.cases-swiper {
    overflow: visible;
}

.cases-swiper .swiper-slide {
    width: 326px;
    height: auto;
    overflow: visible;
}

.case-card {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 409px;
    border-radius: 16px;
    overflow: hidden;
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:has(.case-card__img:hover),
.case-card:has(.case-card__text:hover) {
    transform: scale(1.04);
    z-index: 2;
}

.case-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, var(--color-overlay-gradient) 0%, transparent 100%);
    pointer-events: none;
}

.case-card__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    padding: 8px 16px;
    background-color: var(--color-tag-bg);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-black);
}

.case-card__text {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 24px;
    z-index: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: var(--line-height-base);
    color: var(--color-text);
    cursor: default;
}

/*=== Clients / Logos Marquee ===*/
.clients-section {
    background-color: var(--color-bg-primary);
}

.clients-section__band {
    background-color: var(--color-bg-secondary);
    padding: 40px 0;
    overflow: hidden;
}

.clients-marquee-swiper {
    overflow: hidden;
}

.clients-marquee-swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.clients-marquee-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
}

.clients-section__logo {
    display: block;
    height: 85px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    filter: var(--logo-filter);
}

/*=== Testimonials Section ===*/
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

.testimonials-section__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 48px;
}

.testimonials-section__carousel {
    margin-right: calc(-1 * var(--bs-gutter-x, 12px));
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.testimonial-card__quote {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text);
    margin-bottom: 24px;
}

.testimonial-card__text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    margin-bottom: 32px;
    flex-grow: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-card__avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__name {
    font-size: var(--font-size-base);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.testimonial-card__role {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/*=== Journey CTA Section ===*/
.journey-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

.journey-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.journey-section__bg img {
    width: 100%;
    height: 100%;
}

.journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.journey-section__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-text);
    margin-bottom: 0;
    max-width: 926px;
}

.journey-section__title-line {
    display: block;
}

/*=== FAQ Section ===*/
.faq-section {
    padding: 80px 0;
    background-color: var(--color-bg-secondary);
}

.faq-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "title"
        "accordion"
        "aside";
    gap: 32px;
}

.faq-section__title {
    grid-area: title;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 0;
}

.faq-section__aside {
    grid-area: aside;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-section__text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-muted);
    max-width: 420px;
}

.faq-accordion {
    grid-area: accordion;
}

.faq-accordion__item {
    border-bottom: 1px solid var(--color-border-row);
}

.faq-accordion__item:first-child {
    border-top: 1px solid var(--color-border-row);
}

.faq-accordion__header {
    margin-bottom: 0;
}

.faq-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 24px 0;
    border: none;
    background: transparent;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
}

.faq-accordion__button:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 3px;
}

.faq-accordion__question {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

.faq-accordion__icon {
    flex-shrink: 0;
    width: 24px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-text);
    text-align: center;
}

.faq-accordion__icon::before {
    content: "+";
}

.faq-accordion__button:not(.collapsed) .faq-accordion__icon::before {
    content: "\2212";
}

.faq-accordion__body {
    padding: 0 0 24px;
}

.faq-accordion__body p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-muted);
    max-width: 640px;
}

/*=== Blog Section ===*/
.blog-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    min-height: 511px;
}

.blog-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 431px;
}

.blog-section__title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 0;
    max-width: 640px;
}

.blog-section__title-line {
    display: block;
}

.blog-section__media {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.blog-section__caption {
    position: absolute;
    right: 294px;
    top: 215px;
    z-index: 2;
    width: 329px;
    font-size: 12px;
    line-height: 18px;
    color: var(--color-text);
}

.blog-section__dog {
    display: block;
    width: auto;
    max-width: min(547px, 42vw);
    height: auto;
    object-fit: contain;
    object-position: right bottom;
    mix-blend-mode: lighten;
}

/*=== Posts Section ===*/
.posts-section {
    padding: 80px 0;
    background-color: var(--color-bg-primary);
}

.posts-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.post-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.post-card__media {
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.post-card__img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card__media:hover .post-card__img {
    transform: scale(1.04);
}

.post-card__tag {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    background-color: var(--color-bg-secondary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.post-card__title {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-text);
}

.post-card__title a {
    color: inherit;
}

.post-card__title a:hover {
    opacity: 0.85;
}

.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-text);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-text);
}

.post-card__link:hover {
    opacity: 0.85;
}

/*=== Footer ===*/
.footer {
    background-color: var(--color-bg-primary);
}

.footer__box {
    background-color: var(--color-bg-secondary);
    border-radius: 24px 24px 0 0;
    padding: 64px 48px 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer__logo img {
    display: block;
    width: 120px;
    height: auto;
}

.footer__tagline {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer__social-link:hover {
    color: var(--color-text);
    opacity: 1;
}

.footer__heading {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 20px;
}

.footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--color-text);
}

.footer__newsletter-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    max-width: 320px;
}

.footer__form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 360px;
}

.footer__form-icon {
    position: absolute;
    left: 16px;
    z-index: 1;
    display: flex;
    color: var(--color-text-muted);
    pointer-events: none;
}

.footer__input {
    width: 100%;
    height: 48px;
    padding: 0 52px 0 44px;
    border: none;
    border-radius: 8px;
    background-color: #252525;
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1;
    color: var(--color-text);
}

.footer__input::placeholder {
    color: var(--color-text-muted);
}

.footer__input:focus {
    outline: 2px solid var(--color-border-subtle);
    outline-offset: 2px;
}

.footer__submit {
    position: absolute;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: var(--color-yellow);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer__submit:hover {
    opacity: 0.85;
}

.footer__bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-row);
    text-align: center;
}

.footer__copyright {
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Responsive  */
@media (min-width: 48rem) {
    .posts-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 992px) {
    .header__collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        justify-content: flex-end;
    }

    .header__menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }

    .header__cta {
        margin-left: auto;
    }

    .hero-section__title {
        max-width: 750px;
        margin-left: calc(386px + 16px);
        position: relative;
        z-index: 1;
    }

    .hero-section__banner {
        display: grid;
        grid-template-columns: 386px 1fr;
        align-items: stretch;
    }

    .hero-section__card {
        min-height: 400px;
        padding: 35px 40px 32px;
    }

    .hero-section__media,
    .hero-section__img {
        min-height: 400px;
    }

    .intro-section__grid {
        display: grid;
        grid-template-columns: 606px 1fr;
        gap: 48px;
        align-items: start;
    }

    .about-section__grid {
        grid-template-columns: 55fr 25fr 20fr;
        grid-template-rows: 300px 320px;
        grid-template-areas:
            "dog quote experience"
            "dog about about";
    }

    .about-section__dog {
        width: 128%;
    }

    .about-section__cell--quote {
        padding: 40px 32px;
        min-height: 0;
    }

    .about-section__quote {
        font-size: 24px;
        line-height: 30px;
    }

    .about-section__label {
        font-size: 24px;
        line-height: 30px;
    }

    .about-section__years {
        font-size: 46px;
        line-height: 50px;
    }

    .about-section__cell--experience {
        padding: 40px 32px;
        min-height: 0;
    }

    .about-section__cell--about {
        padding: 48px 40px 40px;
        min-height: 0;
    }

    .services-section__deco {
        top: 180px;
    }

    .cta-section__box {
        min-height: 464px;
        padding: 48px 64px;
    }

    .cta-section__title {
        font-size: var(--font-size-h2);
        line-height: var(--line-height-h2);
    }

    .cases-section__title {
        font-size: 60px;
    }

    .testimonials-section__title {
        font-size: 60px;
    }

    .journey-section__title {
        font-size: 80px;
    }

    .faq-section__grid {
        grid-template-columns: minmax(280px, 420px) 1fr;
        grid-template-areas:
            ". title"
            "aside accordion";
        gap: 48px 80px;
        align-items: end;
    }

    .faq-section__title {
        font-size: 48px;
    }

    .posts-section__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .post-card__title {
        font-size: 20px;
    }

    .footer__grid {
        grid-template-columns: 1.1fr 0.8fr 1fr 1.1fr;
        gap: 48px;
    }

    .footer__box {
        padding: 64px 64px 32px;
    }
}

@media (max-width: 991px) {
    .header {
        padding-top: 24px;
    }

    .header__brand img {
        width: 200px;
    }

    .header__collapse {
        padding-top: 24px;
        gap: 24px;
    }

    .header__menu {
        gap: 16px;
        margin-bottom: 16px;
    }

    .header__menu .nav-link {
        font-size: 16px;
        padding: 8px 0;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: var(--container-max-xxl);
    }
}
@media (max-width: 1599px) {
    .container {
        max-width: 98%;
    }
    .about-section__grid {
        background-position: -156px center;
    }
}

@media (min-width: 1200px) {

}

@media (min-width: 992px) {

}


@media (max-width: 1360px) {

}
@media (max-width: 1199px) {

}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .hero-section__title {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 24px;
    }

    .hero-section__list p {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-section__card {
        min-height: auto;
        padding: 28px 24px;
    }

    .intro-section {
        padding-bottom: 48px;
    }

    .intro-section__heading {
        font-size: 32px;
        line-height: 1.2;
    }

    .about-section {
        padding-bottom: 48px;
    }

    .about-section__dog {
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .about-section__cell--quote {
        align-items: flex-start;
        text-align: left;
    }

    .about-section__quote {
        max-width: none;
    }

    .services-section {
        padding: 48px 0;
    }

    .services-section__deco {
        width: 100px;
        top: 80px;
        opacity: 1;
    }

    .services-section__title {
        font-size: 36px;
        line-height: 1.15;
    }

    .services-section__header {
        margin-bottom: 32px;
    }

    .service-item {
        grid-template-columns: 32px 100px 1fr 42px;
        grid-template-areas:
            "num thumb title link"
            ". . desc desc";
        gap: 16px 20px;
        padding: 24px 0;
    }

    .service-item__num {
        grid-area: num;
    }

    .service-item__thumb {
        grid-area: thumb;
        width: 100px;
        height: 40px;
    }

    .service-item__title {
        grid-area: title;
        font-size: 18px;
    }

    .service-item__desc {
        grid-area: desc;
        max-width: none;
    }

    .service-item__link {
        grid-area: link;
    }

    .cta-section {
        padding-bottom: 48px;
    }

    .cta-section__box {
        min-height: auto;
        padding: 40px 24px;
    }

    .cta-section__title {
        font-size: 28px;
        line-height: 1.1;
    }

    .cases-section {
        padding: 48px 0;
    }

    .cases-section__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .cases-section__title {
        font-size: 36px;
    }

    .cases-section__nav {
        padding-top: 0;
    }

    .cases-swiper .swiper-slide {
        width: 280px;
    }

    .case-card {
        height: 360px;
    }

    .testimonials-section {
        padding: 48px 0;
    }

    .testimonials-section__title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .testimonial-card__quote {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .testimonial-card {
        min-height: auto;
    }

    .journey-section {
        padding: 80px 0;
    }

    .journey-section__title {
        font-size: 36px;
    }

    .journey-section__inner {
        gap: 32px;
    }

    .faq-section {
        padding: 48px 0;
    }

    .faq-section__title {
        font-size: 28px;
    }

    .faq-section__text {
        max-width: none;
    }

    .faq-accordion__question {
        font-size: 16px;
    }

    .faq-accordion__button {
        padding: 20px 0;
    }

    .blog-section {
        padding: 48px 0 0;
        min-height: 300px;
    }

    .blog-section .container {
        min-height: auto;
        align-items: flex-start;
    }

    .blog-section__title {
        font-size: 28px;
        max-width: 52%;
    }

    .blog-section__caption {
        right: calc(100% + 16px);
        bottom: 38%;
        width: 140px;
    }

    .blog-section__dog {
        max-width: min(320px, 72vw);
    }

    .posts-section {
        padding: 48px 0;
    }

    .footer__box {
        padding: 40px 24px 24px;
        border-radius: 16px 16px 0 0;
    }

    .footer__grid {
        gap: 32px;
    }

    .footer__form,
    .footer__newsletter-text {
        max-width: none;
    }

    .footer__bottom {
        margin-top: 32px;
    }
}
