:root {
    --color-blue: #36c8ff;
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --dynamic-color: #36c8ff;
    --color-gray: #666;
    --color-light-gray: #f5f5f5;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-blue) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 30, 0.98) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(74, 144, 226, 0.1);
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header__logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(74, 144, 226, 0.3));
    transition: all 0.3s ease;
}

.header__logo:hover .header__logo-img {
    filter: drop-shadow(0 4px 12px rgba(74, 144, 226, 0.5));
    transform: rotate(-5deg) scale(1.05);
}

.header__nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.header__nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.header__nav a:hover {
    color: var(--color-blue);
    transform: translateY(-2px);
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-blue) 0%, #36c8ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.header__nav a:hover::after {
    transform: scaleX(1);
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(74, 144, 226, 0.1);
}

.header__mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 200, 255, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-blue);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.hero__container {
    width: 100%;
}

.hero__content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.hero__description {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(54, 200, 255, 0.1) 0%, rgba(54, 200, 255, 0.05) 100%);
    border: 1px solid rgba(54, 200, 255, 0.2);
    border-radius: 20px;
    padding: 2.2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-blue);
    box-shadow: 0 20px 40px rgba(54, 200, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: var(--color-white);
    position: relative;
    animation: scroll 2s infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-blue);
    animation: scrollLine 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

.about {
    background: var(--color-dark);
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 149, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(54, 200, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about__header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.about__card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about__card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 149, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 149, 255, 0.15);
}

.about__card--main {
    grid-column: 1 / 8;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.12) 0%, rgba(0, 149, 255, 0.04) 100%);
}

.about__card--main h3 {
    font-size: 2.25rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about__card--main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

.about__card--founder {
    grid-column: 8 / 13;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.founder__content {
    width: 100%;
    height: 100%;
}

.founder__avatar {
    width: 100%;
    height: 100%;
    border: 6px solid var(--color-blue);
    box-shadow: 0 12px 40px rgba(0, 149, 255, 0.4);
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
}

.about__card--founder:hover .founder__avatar {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 149, 255, 0.6);
    border-width: 8px;
}

.founder__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__card--value:nth-child(3) {
    grid-column: 1 / 4;
}

.about__card--value:nth-child(4) {
    grid-column: 4 / 7;
}

.about__card--value:nth-child(5) {
    grid-column: 7 / 10;
}

.about__card--value:nth-child(6) {
    grid-column: 10 / 13;
}

.about__card--value {
    text-align: center;
}

.about__card--value h4 {
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.about__card--value p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--color-blue);
    margin: 0 auto 1rem;
}

.about__timeline {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.timeline__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline__title h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline__title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.timeline__track {
    position: relative;
    padding-left: 3rem;
}

.timeline__line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-blue) 0%, #36c8ff 100%);
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__marker {
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 32px;
    height: 32px;
    background: var(--color-blue);
    border: 4px solid var(--color-dark);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(0, 149, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 149, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 149, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 149, 255, 0);
    }
}

.timeline__item:hover .timeline__marker {
    transform: scale(1.2);
    background: #36c8ff;
}

.timeline__content {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.timeline__item:hover .timeline__content {
    background: rgba(0, 149, 255, 0.08);
    border-color: var(--color-blue);
    transform: translateX(8px);
}

.timeline__date {
    display: inline-block;
    background: rgba(0, 149, 255, 0.2);
    color: var(--color-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #022735 0%, #0e5a75 50%, #3dbeec 100%);
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.cta-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(64px);
    animation: pulse 3s ease-in-out infinite;
}

.cta-blob-1 {
    top: 0;
    left: 0;
    background: #a855f7;
}

.cta-blob-2 {
    bottom: 0;
    right: 0;
    background: #ec4899;
    animation-delay: 1s;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-in;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.cta-highlight {
    color: #0889f1;
    font-weight: 700;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.benefit-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: #e5e7eb;
}

.cta-main-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 2px solid #0889f1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-badge {
    display: inline-block;
    background: #0889f1;
    color: black;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.cta-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-card-text {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #22c55e;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}

.cta-button:hover {
    background: #16a34a;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.cta-button-icon {
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-button-icon {
    transform: rotate(12deg);
}

.cta-footer-text {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-top: 1.5rem;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.differentials {
    position: relative;
    background: linear-gradient(180deg, rgba(54, 200, 255, 0.05) 0%, var(--color-black) 100%);
    transition: all 0.8s ease;
    overflow: hidden;
    padding: 5rem 0;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dynamic-color, var(--color-blue)), transparent);
    opacity: 0.3;
}

.differentials__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.differentials__carousel-container {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.differentials__carousel {
    position: relative;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
}

.company-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95) translateX(30px);
}

.company-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateX(0);
    z-index: 2;
}

.company-card__media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    aspect-ratio: 20/15;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.media-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.media-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.media-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.media-nav-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.media-nav-dot:hover:not(.active) {
    border-color: white;
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.3);
}

.differentials__carousel-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    right: -25px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: white;
    z-index: 20;
}

.carousel-nav-btn:hover {
    background: var(--dynamic-color, var(--color-blue));
    transform: scale(1.1);
    border-color: var(--dynamic-color, var(--color-blue));
    box-shadow: 0 0 20px var(--dynamic-color, var(--color-blue));
}

.carousel-nav-btn svg {
    width: 28px;
    height: 28px;
}

.differentials__indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-indicator.active {
    background: var(--dynamic-color, var(--color-blue));
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--dynamic-color, var(--color-blue));
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.differentials__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.differentials__explanation {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.explanation__segment {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--dynamic-color, var(--color-blue));
    padding: 5px 15px;
    background: rgba(54, 200, 255, 0.1);
    border-radius: 15px;
}

.explanation__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dynamic-color, var(--color-blue)) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.explanation__description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.explanation__results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.explanation__result-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.explanation__result-item:hover {
    transform: translateY(-5px);
    border-color: var(--dynamic-color, var(--color-blue));
}

.explanation__result-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dynamic-color, var(--color-blue));
}

.explanation__result-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explanation__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: var(--dynamic-color, var(--color-blue));
}

.explanation__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.portfolio {
    background: var(--color-dark);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-item__image {
    transform: scale(1.1);
}

.portfolio-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
    transform: translateY(0);
}

.portfolio-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-item__category {
    font-size: 0.875rem;
    opacity: 0.8;
}

.testimonials {
    background: linear-gradient(135deg, rgba(54, 200, 255, 0.05) 0%, var(--color-black) 100%);
}

.testimonials__carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item__quote-icon {
    margin-bottom: 1.5rem;
}

.testimonial-item__quote-icon i {
    width: 48px;
    height: 48px;
    color: var(--color-blue);
    opacity: 0.5;
}

.testimonial-item__quote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-item__author-info {
    margin-top: 2rem;
}

.testimonial-item__author {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-blue);
}

.testimonial-item__role {
    opacity: 0.8;
    font-size: 0.875rem;
}

.testimonials__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 10;
}

.testimonials__arrow:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.testimonials__arrow--prev {
    left: -70px;
}

.testimonials__arrow--next {
    right: -70px;
}

.testimonials__controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonials__control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__control.active {
    background: var(--color-blue);
    transform: scale(1.2);
}

.team-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.9) 0%, rgba(15, 15, 25, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.team-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-section__subtitle {
    color: var(--color-blue);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.team-section__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.team-card {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8) 0%, rgba(30, 30, 40, 0.6) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(74, 144, 226, 0.2);
}

.team-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.team-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-card__image {
    transform: scale(1.1);
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 20, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-card__social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.team-card__social:hover {
    background: var(--color-blue);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.team-card__social i {
    width: 24px;
    height: 24px;
}

.instagram-icon {
    color: white;
}

.team-card__info {
    padding: 1.8rem;
    text-align: center;
}

.team-card__name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.team-card__role {
    font-size: 1rem;
    color: var(--color-blue);
    font-weight: 500;
}

.team-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.team-cta__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.team-cta__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.team-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0095ff 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.sites__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    justify-content: center;
    align-items: start;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.site-card {
    background: linear-gradient(145deg, #0d1117, #2a2f3a);
    border-radius: 22px;
    overflow: hidden;
    padding-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    max-width: 100%;
}

.site-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65);
    border-color: rgba(54, 200, 255, 0.4);
}

.site-card__image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 100%;
    flex-shrink: 0;
}

.site-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.6s ease;
}

.site-card:hover .site-card__image {
    transform: scale(1.1);
}

.site-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding-bottom: 2rem;
}

.site-card:hover .site-card__overlay {
    opacity: 1;
}

.site-card__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-blue);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(54, 200, 255, 0.4);
    border: 2px solid transparent;
}

.site-card__button:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 15px 25px rgba(54, 200, 255, 0.5);
    background: #36c8ff;
}

.site-card__content {
    padding: 2rem;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.site-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Responsividade */
@media (max-width: 1024px) {
    .sites__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sites__grid {
        grid-template-columns: 1fr;
    }
}

.contact-split {
    padding: 100px 0 150px 0;
    background: #0a0f1c;
    position: relative;
}

.contact-split__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    padding: 0 2rem;
}

.contact-split__info {
    background: linear-gradient(135deg, #0d1b2a, #0a2540);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-split__heading {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #36c8ff, #0095ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-split__item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: #fff;
    padding: 1.5rem;
    background: rgba(54, 200, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(54, 200, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-split__item:hover {
    background: rgba(54, 200, 255, 0.1);
    border-color: rgba(54, 200, 255, 0.3);
    transform: translateX(5px);
}

.contact-split__item h4 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #36c8ff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-split__item a {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-split__item a:hover {
    color: #36c8ff;
}

.contact-description {
    font-size: 0.9rem;
    color: #9bbcff;
    margin: 0;
    line-height: 1.5;
}

.contact-split__card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    padding: 4rem 3rem;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card__content {
    position: relative;
    z-index: 2;
}

.contact-card__badge {
    display: inline-block;
    background: linear-gradient(135deg, #36c8ff, #0095ff);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-card__title {
    font-size: 2.2rem;
    color: #0a2540;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-card__subtitle {
    font-size: 1.1rem;
    color: #2c5282;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-card__features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #1a365d;
}

.feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #36c8ff;
}

.contact-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #36c8ff, #0095ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(54, 200, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    justify-content: center;
}

.contact-card__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(54, 200, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: floatBounce 3s ease-in-out infinite;
    text-decoration: none;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-logo {
    width: 35px;
    height: 35px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #128C7E;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 85px;
}

.footer {
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer__logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(74, 144, 226, 0.3));
}

.footer__description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--color-blue);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

.footer__bottom a {
    color: var(--color-blue);
    text-decoration: none;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal__content {
    background: var(--color-dark);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.modal__category {
    display: inline-block;
    background: var(--color-blue);
    color: var(--color-black);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.modal__description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.modal__tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.875rem;
}

.modal__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--color-blue);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(54, 200, 255, 0.3);
}

@media (max-width: 1200px) {
    .hero__features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about__card--main,
    .about__card--founder,
    .about__card--value {
        grid-column: 1 / -1 !important;
    }
    
    .site-card {
        max-width: 350px;
    }

    .differentials__layout {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .header__container {
        padding: 1.5rem 20px;
    }
    
    .header__logo-img {
        height: 40px;
    }
    
    .hero__features {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .differentials__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-split__wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-split__info {
        border-radius: 20px 20px 0 0;
    }
    
    .contact-split__card {
        border-radius: 0 0 20px 20px;
    }
    
    .sites__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .cta-main-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__features {
        margin-top: 3rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .header__nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-black);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .header__nav.active {
        left: 0;
    }
    
    .header__mobile-toggle {
        display: flex;
    }
    
    .testimonials__arrow--prev {
        left: 10px;
    }
    
    .testimonials__arrow--next {
        right: 10px;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-card-title {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1.25rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .contact-card__title {
        font-size: 1.5rem;
    }
    
    .contact-card__subtitle {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-logo {
        width: 28px;
        height: 28px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }

    .cta-card-title {
        font-size: 1.25rem;
    }

    .cta-card-text {
        font-size: 1rem;
    }

    .benefit-emoji {
        font-size: 2.5rem;
    }
}