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

:root {
    --primary: #163A5F;
    --primary-dark: #102B45;
    --secondary: #081A2B;
    --accent: #C89B3C;
    --accent-dark: #9F7727;
    --accent-soft: #F3E6C8;
    --success: #128A5A;
    --success-dark: #0D6B45;
    --danger: #B64636;
    --white: #FFFFFF;
    --gray-light: #F5F7FA;
    --gray: #5B6572;
    --gray-dark: #17212B;
    --shadow: 0 12px 32px rgba(8, 26, 43, 0.08);
    --shadow-lg: 0 24px 60px rgba(8, 26, 43, 0.16);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

html.splash-active,
body.splash-active {
    overflow: hidden;
    overscroll-behavior: none;
}

body.splash-active {
    position: fixed;
    inset: 0;
    width: 100%;
    touch-action: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(240, 199, 106, 0.2), transparent 24%),
        radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(145deg, #07192A 0%, #10365B 58%, #163A5F 100%);
}

.site-shell {
    opacity: 1;
    transform: none;
    filter: none;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
}

body.splash-active .site-shell {
    opacity: 0;
    transform: translateY(32px) scale(1.015);
    filter: blur(12px);
    pointer-events: none;
}

/* ========== SPLASH ========== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 4000;
    display: grid;
    place-items: center;
    justify-items: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    height: var(--visual-viewport-height, 100dvh);
    padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(240, 199, 106, 0.2), transparent 24%),
        radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(145deg, #07192A 0%, #10365B 58%, #163A5F 100%);
    transition:
        opacity 0.85s ease,
        clip-path 1s cubic-bezier(0.77, 0, 0.18, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 1s;
}

.splash-screen::before,
.splash-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.splash-screen::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88), transparent 84%);
}

.splash-screen::after {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 58%);
}

.splash-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.9;
}

.splash-orb-left {
    width: 360px;
    height: 360px;
    left: -90px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(240, 199, 106, 0.28), transparent 68%);
    animation: splashFloatLeft 7s ease-in-out infinite alternate;
}

.splash-orb-right {
    width: 300px;
    height: 300px;
    right: -70px;
    top: -60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 72%);
    animation: splashFloatRight 8s ease-in-out infinite alternate;
}

.splash-brand {
    position: absolute;
    top: var(--splash-brand-top, 50%);
    left: 50%;
    --splash-brand-offset-y: 0px;
    --splash-brand-scale: 1;
    width: min(100%, 420px);
    max-width: calc(100vw - 36px);
    margin: 0;
    padding: clamp(28px, 4vw, 38px);
    border-radius: 30px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 30px 80px rgba(3, 10, 18, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    overflow: hidden;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) translateY(var(--splash-brand-offset-y)) scale(var(--splash-brand-scale));
    transform-origin: center center;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.splash-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.34) 50%, transparent 82%);
    transform: translateX(-155%);
    animation: splashShine 1.7s cubic-bezier(0.19, 1, 0.22, 1) 0.55s forwards;
}

.splash-brand::after {
    content: '';
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 199, 106, 0.8), transparent);
}

.splash-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    transform-origin: center center;
    opacity: 0;
    transform: translateY(22px) scale(0.86);
    filter: drop-shadow(0 20px 40px rgba(6, 13, 25, 0.38));
    animation: splashLogoIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.splash-screen.is-exiting {
    opacity: 0;
    clip-path: circle(0% at 50% 50%);
    transform: scale(1.04);
    visibility: hidden;
}

.splash-screen.is-exiting .splash-brand {
    --splash-brand-offset-y: -16px;
    --splash-brand-scale: 0.92;
    opacity: 0;
}

@keyframes splashLogoIn {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.86);
        filter: blur(10px) drop-shadow(0 20px 40px rgba(6, 13, 25, 0.22));
    }

    65% {
        opacity: 1;
        transform: translateY(-4px) scale(1.02);
        filter: blur(0) drop-shadow(0 24px 48px rgba(6, 13, 25, 0.4));
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) drop-shadow(0 24px 48px rgba(6, 13, 25, 0.4));
    }
}

@keyframes splashShine {
    from {
        transform: translateX(-155%);
    }

    to {
        transform: translateX(155%);
    }
}

@keyframes splashFloatLeft {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(26px, -18px, 0) scale(1.08);
    }
}

@keyframes splashFloatRight {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-24px, 20px, 0) scale(1.06);
    }
}

@keyframes splashLogoInMobile {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.92);
        filter: blur(8px) drop-shadow(0 18px 36px rgba(6, 13, 25, 0.2));
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) drop-shadow(0 20px 40px rgba(6, 13, 25, 0.38));
    }
}

::selection {
    background: var(--accent-soft);
    color: var(--secondary);
}

/* ========== UTILITIES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--secondary);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: var(--success);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
}

.header.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 45px;
}

.footer .logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.mobile-menu-header,
.mobile-menu-cta {
    display: none;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.header.scrolled .nav-links a {
    color: var(--gray-dark);
}

.nav-links a:hover,
.header.scrolled .nav-links a:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
}

.header.scrolled .mobile-toggle {
    color: var(--secondary);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(200, 155, 60, 0.22), transparent 28%),
        radial-gradient(circle at 18% 18%, rgba(62, 107, 147, 0.18), transparent 34%),
        linear-gradient(135deg, var(--secondary) 0%, #0d2741 50%, var(--primary) 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 56px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-text h1 span {
    color: #F0C76A;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(200, 155, 60, 0.28);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-eyebrow i {
    color: var(--accent);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-highlight i {
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 5px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    border: 1px solid rgba(200, 155, 60, 0.18);
}

.hero-card h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hero-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--gray-dark);
    border-bottom: 1px solid var(--gray-light);
}

.hero-card-features li:last-child {
    border-bottom: none;
}

.hero-card-features i {
    color: var(--success);
    font-size: 1.2rem;
}

/* ========== PROBLEMS SECTION ========== */
.problems {
    background: var(--gray-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 155, 60, 0.6);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 24px rgba(22, 58, 95, 0.2);
}

.problem-icon i {
    font-size: 2rem;
    color: var(--white);
}

.problem-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 25px;
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--accent-dark);
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== PROCESS SECTION ========== */
.process {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(200, 155, 60, 0.16);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.process-card h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
}

.process-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== ABOUT ========== */
.about {
    background: var(--secondary);
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-mobile-heading {
    display: none;
}

.about-image {
    position: relative;
    width: 100%;
    padding-bottom: 54px;
    max-width: 640px;
    min-width: 0;
}

.team-photos {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 520px;
}

.team-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 430px;
    min-height: 430px;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.team-card::before,
.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
}

.team-card::before {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(10, 26, 43, 0.16), rgba(10, 26, 43, 0.42));
}

.team-card::after {
    inset: auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

.team-card-marina {
    align-self: flex-start;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(13, 39, 65, 0.34));
}

.team-card-marina::after {
    top: -36px;
    right: -24px;
    background: radial-gradient(circle, rgba(240, 199, 106, 0.34), transparent 68%);
}

.team-card-heitor {
    align-self: flex-end;
    margin-top: -78px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(14, 51, 87, 0.42));
}

.team-card-heitor::after {
    bottom: -44px;
    left: -10px;
    background: radial-gradient(circle, rgba(69, 130, 183, 0.34), transparent 68%);
}

.team-card-image-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    z-index: 0;
}

.team-card-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
    filter: drop-shadow(0 20px 40px rgba(3, 10, 18, 0.36));
}

.team-card-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(8, 26, 43, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    z-index: 2;
}

.team-card-role {
    display: inline-block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.team-card-name {
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 164px;
    max-width: calc(100% - 24px);
    background: linear-gradient(135deg, var(--accent) 0%, #E2BE69 100%);
    color: var(--secondary);
    padding: 16px 22px;
    border-radius: 13px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.about-badge-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    letter-spacing: -0.03em;
}

.about-badge-text {
    font-size: 0.8rem;
    display: block;
    line-height: 1.35;
    white-space: nowrap;
}

@media (min-width: 1025px) {
    .team-photos {
        gap: 20px;
    }

    .team-card {
        width: min(100%, 372px);
        height: 392px;
        min-height: 392px;
    }

    .team-card-heitor {
        margin-top: -54px;
    }

    .team-card-info {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text h2 span {
    color: #F0C76A;
}

.about-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.about-features i {
    color: var(--accent);
    font-size: 1.3rem;
}

/* ========== DIFFERENTIALS ========== */
.differentials {
    background: var(--gray-light);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.diff-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.diff-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.diff-card:hover .diff-icon {
    background: var(--accent);
}

.diff-icon i {
    font-size: 1.8rem;
    color: var(--accent-dark);
    transition: var(--transition);
}

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

.diff-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.diff-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--white);
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-google {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.85rem;
}

.testimonial-google i {
    color: #4285F4;
    font-size: 1.1rem;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #FBBC04;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.testimonial-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1rem;
    font-family: 'Manrope', sans-serif;
    transition: var(--transition);
    display: none;
}

.read-more-btn.visible {
    display: inline-block;
}

.read-more-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-light);
    padding-top: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info h4 {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

.testimonials-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
    padding: 25px 40px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.summary-google {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-google i {
    font-size: 2.5rem;
    color: #4285F4;
}

.summary-google span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.summary-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-light);
}

.summary-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-rating-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.summary-rating-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.summary-rating-stars {
    display: flex;
    gap: 3px;
}

.summary-rating-stars i {
    color: #FBBC04;
    font-size: 1rem;
}

.summary-rating-count {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========== FAQ ========== */
.faq {
    background: var(--gray-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-dark);
}

.faq-question i {
    transition: var(--transition);
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 520px;
}

/* ========== CTA ========== */
.cta {
    background:
        radial-gradient(circle at top right, rgba(200, 155, 60, 0.24), transparent 28%),
        linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .logo {
    justify-content: center;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    width: 65px;
    height: 65px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background: var(--success-dark);
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(18, 138, 90, 0.45);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(18, 138, 90, 0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons,
    .hero-eyebrow,
    .hero-highlights,
    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .team-photos {
        display: grid;
        width: 100%;
        max-width: none;
        gap: 20px;
    }

    .team-card,
    .team-card-marina,
    .team-card-heitor {
        width: 100%;
        max-width: none;
        align-self: stretch;
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .splash-screen {
        padding: max(20px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    }

    .container {
        padding: 0 18px;
    }

    .splash-brand {
        width: min(100%, 360px);
        max-width: calc(100vw - 36px);
        padding: 24px;
        border-radius: 24px;
        --splash-brand-offset-y: -10px;
    }

    .splash-logo {
        max-width: min(100%, 300px);
        animation-name: splashLogoInMobile;
    }

    .hero {
        min-height: auto;
        padding-top: 124px;
        padding-bottom: 40px;
    }

    .hero-content {
        gap: 36px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -84%;
        width: 84%;
        height: 100vh;
        background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
        padding: 92px 24px 32px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-links a {
        color: var(--white) !important;
        padding: 18px 0;
        display: block;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .nav-links a:hover {
        color: rgba(255, 255, 255, 0.8) !important;
        padding-left: 10px;
    }

    .nav.active .nav-links {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1002;
        position: relative;
    }

    .nav.active .mobile-toggle {
        opacity: 0;
        pointer-events: none;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav .btn-primary {
        display: none;
    }

    .mobile-menu-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 18px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        color: var(--white);
        transition: var(--transition);
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .mobile-menu-logo {
        height: 35px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .mobile-menu-cta {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: none !important;
    }

    .mobile-menu-cta .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        white-space: nowrap;
        background: var(--success) !important;
        color: var(--white) !important;
        font-size: 0.9rem;
        font-weight: 700;
        padding: 16px 24px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-menu-cta .btn i {
        color: var(--white) !important;
        font-size: 1.2rem;
        line-height: 1;
    }

    .mobile-menu-cta .btn:hover {
        background: var(--success-dark) !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(18, 138, 90, 0.35);
    }

    .mobile-menu-header,
    .mobile-menu-cta {
        display: flex;
    }

    .mobile-menu-cta {
        flex-direction: column;
    }

    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 0.85rem;
    }

    .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2.25rem;
    }

    .about-image {
        padding-bottom: 80px;
    }

    .team-photos {
        justify-items: center;
    }

    .team-card {
        width: min(100%, 330px);
        height: clamp(290px, 82vw, 340px);
        min-height: 290px;
        border-radius: 26px;
    }

    .team-card-heitor {
        margin-top: 0;
    }

    .team-card-image-wrap {
        min-height: 100%;
    }

    .team-card-image {
        max-height: none;
    }

    .about-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: max-content;
        padding: 14px 20px;
        border-radius: 13px;
    }

    .about-badge-number {
        font-size: 1.8rem;
    }

    .about-content {
        gap: 38px;
    }

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

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.15rem;
    }

    .about-features {
        margin: 1.5rem 0;
    }

    .about-features li {
        justify-content: center;
        text-align: left;
        gap: 12px;
    }

    .hero-text h1 {
        font-size: 1.95rem;
        margin-bottom: 1.1rem;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .hero-eyebrow {
        gap: 8px;
        padding: 9px 14px;
        font-size: 0.85rem;
        margin-bottom: 1.1rem;
    }

    .hero-highlights {
        gap: 10px;
        margin-bottom: 1.5rem;
    }

    .hero-highlight {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 2.2rem;
        padding-top: 1.5rem;
    }

    .stat-item {
        padding: 16px 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .problems-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .problem-card,
    .process-card,
    .diff-card {
        padding: 28px 22px;
    }

    .problem-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 1.25rem;
    }

    .problem-icon i {
        font-size: 1.7rem;
    }

    .problem-card h3,
    .service-content h3,
    .process-card h3,
    .diff-card h3 {
        font-size: 1.15rem;
    }

    .problem-card p,
    .service-content p,
    .process-card p,
    .diff-card p {
        font-size: 0.94rem;
    }

    .service-card {
        flex-direction: column;
        gap: 18px;
        padding: 28px 22px;
        border-left: none;
        border-top: 4px solid var(--accent);
    }

    .service-card:hover {
        transform: translateY(-6px);
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .process-number {
        margin-bottom: 1rem;
    }

    .testimonial-card {
        min-width: 100%;
        margin: 0;
        padding: 24px 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-controls {
        gap: 14px;
        margin-top: 28px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonials-summary {
        padding: 22px;
        gap: 18px;
    }

    .faq-question {
        padding: 20px 18px;
        gap: 12px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 18px 20px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer .logo-img {
        height: 54px;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .cta h2 {
        font-size: 1.9rem;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-float a {
        width: 58px;
        height: 58px;
        font-size: 1.75rem;
    }

    .about-content {
        gap: 28px;
    }

    .about-mobile-heading {
        display: block;
        text-align: center;
    }

    .about-mobile-heading h2 {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: -0.03em;
    }

    .about-mobile-heading h2 span {
        color: #F0C76A;
    }

    .about-text h2 {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        padding: 15px 18px;
        font-size: 0.95rem;
        line-height: 1.25;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .splash-screen {
        padding: max(18px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom)) 16px;
    }

    .splash-brand {
        width: min(100%, 320px);
        max-width: calc(100vw - 32px);
        padding: 20px;
        --splash-brand-offset-y: -10px;
    }

    .splash-brand::after {
        left: 20px;
        right: 20px;
    }

    .splash-logo {
        max-width: min(100%, 272px);
    }

    .splash-orb-left {
        width: 260px;
        height: 260px;
    }

    .splash-orb-right {
        width: 220px;
        height: 220px;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 32px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-text p {
        font-size: 0.96rem;
    }

    .hero-eyebrow {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .hero-highlight {
        font-size: 0.88rem;
        padding: 11px 12px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 1.8rem;
    }

    .stat-item {
        padding: 12px 8px;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 1.35rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.66rem;
        line-height: 1.3;
        margin-top: 6px;
        text-wrap: balance;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .about-image {
        padding-bottom: 90px;
    }

    .about-mobile-heading h2 {
        font-size: 1.7rem;
    }

    .team-card {
        width: min(100%, 290px);
        height: clamp(250px, 84vw, 300px);
        min-height: 250px;
        border-radius: 22px;
    }

    .team-card-image-wrap {
        min-height: 100%;
    }

    .team-card-image {
        max-height: none;
    }

    .team-card-info {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px 16px;
    }

    .team-card-name {
        font-size: 1.15rem;
    }

    .about-badge {
        width: auto;
        min-width: 148px;
        max-width: calc(100% - 24px);
        padding: 13px 18px;
    }

    .about-text h2 {
        font-size: 1.7rem;
    }

    .about-features li {
        align-items: flex-start;
    }

    .testimonials-summary {
        flex-direction: column;
        gap: 20px;
        padding: 18px;
    }

    .summary-divider {
        width: 80%;
        height: 1px;
    }

    .hero-highlights {
        flex-direction: column;
    }

    .hero-highlight {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .problem-card,
    .service-card,
    .process-card,
    .diff-card {
        padding: 24px 18px;
    }

    .problem-icon {
        width: 60px;
        height: 60px;
    }

    .problem-card h3,
    .service-content h3,
    .process-card h3,
    .diff-card h3 {
        font-size: 1.05rem;
    }

    .testimonial-card {
        padding: 22px 18px;
    }

    .slider-controls {
        gap: 10px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 0 16px 18px;
        font-size: 0.92rem;
    }

    .footer-contact li {
        gap: 12px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float a {
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta h2 {
        font-size: 1.65rem;
    }
}
