

:root {

    --primary: #203C94;
    --secondary: #1B4FB1;
    --accent: #106E48;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-dark: #2D3142;
    --text-muted: #4A5568;

    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

site-header {
    display: block;
    min-height: 90px;

}

@media (max-width: 768px) {
    site-header {
        min-height: 122px;

    }
}

.announcement-bar {
    background-color: var(--primary);
    color: var(--bg-white);
    position: relative;
    z-index: 1000;
    padding: 2px 40px 2px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 24px;

    overflow: hidden;
}

.announcement-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: auto;
    min-height: 20px;
    display: flex;
    align-items: center;
    transition: transform 600ms ease-in-out;
}

.announcement-slide {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
}

.announcement-slide a {
    color: var(--bg-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0px;

}

.announcement-slide a:hover {
    color: #e0e0e0;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.announcement-text strong {
    font-weight: 700;
    color: var(--bg-white);
}

.announcement-text i {
    width: 3px;
    height: 3px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: inline-block;
}

.announcement-text svg {
    margin-left: 4px;
    transition: transform 0.2s;
    width: 12px;
    height: 12px;
}

.announcement-slide a:hover svg {
    transform: translateX(4px);
}

.announcement-close {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;

    border-radius: 4px;
    transition: all 0.2s;
    z-index: 2;
}

.announcement-close svg {
    width: 16px;
    height: 16px;
}

.announcement-close:hover {
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .announcement-text {
        font-size: 0.7rem;
    }

    .announcement-bar {
        padding: 8px 45px 8px 10px;

        min-height: 48px;

    }

    .announcement-slide a {
        padding: 10px;

    }

    .announcement-close {
        padding: 12px;

    }
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    section {
        padding: var(--space-lg) 0 !important;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

h1,
h2,
h3 {
    color: var(--primary);
    font-weight: 800;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 0.9rem;
    text-transform: none;
}

.nav-links .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.nav-links .btn svg {
    width: 16px;
    height: 16px;
}

.btn-green {
    background-color: var(--accent) !important;
    color: white !important;
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(36, 177, 123, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-green:hover {
    background-color: white !important;
    color: var(--accent) !important;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 177, 123, 0.3);
}

.btn-green svg {
    stroke: white;
    transition: all 0.3s ease;
}

.btn-green:hover svg {
    stroke: var(--accent);
}

header {
    background: var(--bg-white);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emblem {
    height: 36px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1A202C;

    line-height: 1;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
}

.logo-slogan {
    font-size: 0.6rem;
    font-weight: 600;
    color: #4A5568;

    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), #F8F9FA), url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="%23E2E8F0"/></svg>');
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(36, 177, 123, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.0rem;
    margin-bottom: 1.0rem;
}

.hero-content p {
    font-size: 1.0rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-usp {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
}

.usp-item i {
    color: var(--primary);
}

.hero-celular-container {
    position: relative;
    width: 85%;
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 500 / 550;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.hero-celular-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;

    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.hero-celular-container img.card-active {
    z-index: 3;
    opacity: 1;
    transform: perspective(1200px) translateX(0) scale(1) rotateY(0deg);
}

.hero-celular-container img.card-next {
    z-index: 2;
    opacity: 0.7;
    transform: perspective(1200px) translateX(15%) translateY(5%) scale(0.9) rotate(4deg);
}

.hero-celular-container img.card-leaving {
    z-index: 4;
    opacity: 0;
    transform: perspective(1200px) translateX(60%) translateY(-5%) scale(1.05) rotate(10deg);
}

.hero-celular-container img.card-hidden {
    z-index: 1;
    opacity: 0;

    transition: opacity 0.5s ease;
    transform: perspective(1200px) translateX(20%) translateY(10%) scale(0.8) rotate(10deg);
}

.hero-celular-anim {
    animation: floatVibrate 6s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes floatVibrate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(1deg);
    }

    66% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

.clients {
    padding: 1.5rem 0;
    background: var(--primary);
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    width: calc(200px * 10);

    animation: scroll 20s linear infinite;
    gap: 30px;
}

.client-logo {
    flex: 0 0 170px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.client-logo img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5));
    }
}

.clients:hover .clients-track {
    animation-play-state: paused;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.blog-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0 1rem;
    color: var(--primary);
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.post-header {
    padding: var(--space-lg) 0;
    text-align: center;
}

.post-featured-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-body {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.client-logo:hover {
    transform: scale(1.05);
}

.projects {
    padding: var(--space-xl) 0;
    background: var(--bg-white);
}

.projects-slider-container {
    position: relative;
    width: 100%;
}

.projects-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 2rem 0;
    -ms-overflow-style: none;

    scrollbar-width: none;

}

.projects-slider::-webkit-scrollbar {
    display: none;

}

.project-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-slide-info {
    padding: 4rem;
}

.project-slide-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.project-slide-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.project-slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    height: 100%;
}

.project-slide-image img {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .project-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .project-slide-info {
        padding: 2rem;
    }

    .project-slide-image img {
        max-height: 300px;
    }
}

.services {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
    width: 100%;
}

.service-card {
    flex: 0 1 calc(25% - 1.5rem);
    min-width: 280px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(32, 60, 148, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(36, 177, 123, 0.3);
    box-shadow: 0 15px 35px rgba(32, 60, 148, 0.08), 0 5px 15px rgba(36, 177, 123, 0.05);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(32, 60, 148, 0.05) 0%, rgba(36, 177, 123, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 60, 148, 0.05);
}

.service-card:hover .service-icon-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(32, 60, 148, 0.2);
}

.service-icon-box svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--secondary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card:hover .svg-mobile-screen {
    animation: mobileScreenPulse 1.5s infinite ease-in-out;
}

@keyframes mobileScreenPulse {

    0%,
    100% {
        fill: rgba(36, 177, 123, 0.1);
    }

    50% {
        fill: rgba(36, 177, 123, 0.3);
    }
}

.service-card:hover .svg-web-cursor {
    animation: webCursorClick 1.2s infinite ease-in-out;
}

@keyframes webCursorClick {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-3px, -3px) scale(0.9);
    }
}

.service-card:hover .svg-desktop-gear {
    transform-origin: center;
    animation: spin 3s infinite linear;
}

.service-card:hover .svg-tv-wave-1 {
    animation: wavePulse 1s infinite alternate;
}

.service-card:hover .svg-tv-wave-2 {
    animation: wavePulse 1s infinite alternate 0.3s;
}

@keyframes wavePulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.service-card:hover .svg-gear-1 {
    transform-origin: 24px 24px;
    animation: spin 5s infinite linear;
}

.service-card:hover .svg-gear-2 {
    transform-origin: 38px 38px;
    animation: spinCounter 3s infinite linear;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinCounter {
    100% {
        transform: rotate(-360deg);
    }
}

.service-card:hover .svg-brain-pulse {
    animation: brainNodeGlow 1.5s infinite ease-in-out;
}

@keyframes brainNodeGlow {

    0%,
    100% {
        opacity: 0.4;
        stroke-width: 1.5px;
    }

    50% {
        opacity: 1;
        stroke-width: 2.5px;
        stroke: var(--accent);
    }
}

.service-card:hover .svg-ml-dot-1 {
    animation: dotBlink 0.8s infinite alternate;
}

.service-card:hover .svg-ml-dot-2 {
    animation: dotBlink 0.8s infinite alternate 0.2s;
}

.service-card:hover .svg-ml-dot-3 {
    animation: dotBlink 0.8s infinite alternate 0.4s;
}

@keyframes dotBlink {
    0% {
        opacity: 0.2;
        r: 2px;
    }

    100% {
        opacity: 1;
        r: 3.5px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex: 0 1 calc(50% - 0.75rem);
    }
}

@media (max-width: 640px) {
    .services-grid {
        gap: 1.25rem;
    }

    .service-card {
        padding: 2.2rem 1.8rem;
    }
}

.custom-dev {
    padding: var(--space-xl) 0;
    background: #F8FAFC;
}

.custom-dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.custom-dev-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, #f1f4f9 100%);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    width: 100%;
}

.testimonial-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 380px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3.5rem 2.2rem;
    position: relative;
    text-align: left;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(32, 60, 148, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(32, 60, 148, 0.06), 0 2px 8px rgba(32, 60, 148, 0.02);
    border-color: rgba(32, 60, 148, 0.18);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: 2.2rem;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.05;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: normal;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.testimonial-author {
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.2rem;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}

.author-company {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .custom-dev-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .service-card,
    .testimonial-card {
        flex: 0 1 100%;
        max-width: 480px;
        width: 100%;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-info {
    background: var(--primary);
    padding: 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-content h4,
.info-content h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.info-content p {
    margin-bottom: 0;
    font-weight: 600;
    color: white;
}

.contact-info .info-icon {
    color: #A7F3D0;

}

.contact-info .info-content h3,
.contact-info .info-content h4 {
    color: #A7F3D0;

}

.contact-b2b-container {
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.b2b-diagnose-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: none;
    border: 1px solid rgba(32, 60, 148, 0.05);
    text-align: left;
    max-width: 540px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.b2b-diagnose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.b2b-diagnose-card:hover {
    transform: translateY(-4px);
    background: white;
    border-color: rgba(32, 60, 148, 0.15);
    box-shadow: 0 20px 40px rgba(32, 60, 148, 0.05), 0 1px 3px rgba(32, 60, 148, 0.02);
}

.b2b-diagnose-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.b2b-diagnose-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-b2b-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    border-radius: 8px !important;
    font-weight: 700;
    letter-spacing: -0.2px;
    background: var(--accent) !important;
    color: white !important;
    border: none;
    box-shadow: 0 6px 18px rgba(16, 110, 72, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 2rem;
}

.btn-b2b-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 110, 72, 0.35);
    background: #0d5c3c !important;
}

.btn-b2b-action svg {
    transition: transform 0.3s ease;
}

.btn-b2b-action:hover svg {
    transform: translateX(4px);
}

.b2b-features-badge {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info {
        padding: 3rem 1.5rem;
    }

    .contact-b2b-container {
        padding: 3rem 1.5rem;
    }
}

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

    .contact-info {
        padding: 2.5rem 1.25rem;
    }

    .contact-b2b-container {
        padding: 2.5rem 1rem;
    }

    .b2b-diagnose-card {
        padding: 2.2rem 1.5rem;
    }

    .b2b-diagnose-card h3 {
        font-size: 1.35rem;
    }

    .b2b-features-badge {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .info-item {
        gap: 1rem;
    }

    .info-icon {
        width: 42px;
        height: 42px;
    }

    .info-content p {
        font-size: 0.9rem;
        word-break: break-all;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.75rem;
    }

    .contact-info {
        padding: 2rem 0.85rem;
    }

    .contact-b2b-container {
        padding: 2rem 0.5rem;
    }

    .b2b-diagnose-card {
        padding: 1.8rem 1rem;
    }

    .contact-info h2 {
        font-size: 1.6rem;
    }

    .info-item {
        gap: 0.75rem;
    }

    .info-icon {
        width: 38px;
        height: 38px;
    }

    .info-content h3 {
        font-size: 0.8rem;
    }

    .info-content p {
        font-size: 0.8rem;
    }
}

footer {
    padding: 6rem 0 2rem;
    background: #0F172A;
    color: white;
    position: relative;
}

footer h4,
footer h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

footer h4::after,
footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 300px;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #4ADE80;

    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

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

    .footer-grid ul {
        align-items: center;
    }
}

.footer-bottom {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-usp {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        z-index: 1000;
    }

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

    .nav-links li a {
        font-size: 1.5rem;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.25);
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-card-img {
        height: 200px;
        min-height: auto;
    }

    .blog-card-content {
        padding: 2rem;
    }
}

.blog-news {
    padding: var(--space-xl) 0;
    background-color: #FAFCFF;
    position: relative;
    border-top: 1px solid rgba(32, 60, 148, 0.05);
    border-bottom: 1px solid rgba(32, 60, 148, 0.05);
}

.blog-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0.9;
}

.blog-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3.5rem auto 1.5rem;
    max-width: 1200px;
}

.blog-news-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(32, 60, 148, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 60, 148, 0.08);
    border-color: rgba(32, 60, 148, 0.15);
}

.blog-news-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.blog-news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-news-card:hover .blog-news-img-wrapper img {
    transform: scale(1.06);
}

.blog-news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(32, 60, 148, 0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.blog-news-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.blog-news-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.blog-news-card-title a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.blog-news-card-title a:hover {
    color: var(--secondary);
}

.blog-news-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    transition: color 0.3s ease;
    width: fit-content;
}

.blog-news-link:hover {
    color: #0c5336;
}

.blog-news-link svg {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-news-card:hover .blog-news-link svg {
    transform: translateX(6px);
}

.blog-news-cta {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .blog-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-news {
        padding: var(--space-lg) 0;
    }

    .blog-news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 480px;
        margin: 2.5rem auto 1rem;
    }

    .blog-news-img-wrapper {
        height: 200px;
    }

    .blog-news-content {
        padding: 1.5rem;
    }
}