*, *::before, *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden !important;
    width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #0d1117;
    color: #e6edf3;
    line-height: 1.6;
    padding-top: 80px;
}

img, svg, video, canvas {
    max-width: 100% !important;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6, p, a, span, label, li {
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

section {
    padding: 95px 0;
    width: 100%;
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(56, 139, 253, 0.15);
    color: #58a6ff;
    border: 1px solid rgba(56, 139, 253, 0.4);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    color: #c9d1d9;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.2s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-chip {
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

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

.site-logo {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}

.site-logo:hover {
    opacity: 0.85;
}

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

.nav-links a:not(.btn-primary) {
    color: #e6edf3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:not(.btn-primary):hover {
    color: #58a6ff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: 0.3s;
}

.hero {
    position: relative;
    padding: 150px 0 120px;
    text-align: center;
    background-color: #0b0e14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-growth-bg {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 14, 20, 0.88) 0%, rgba(11, 14, 20, 0.96) 85%, #0b0e14 100%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #ffffff;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 780px;
    margin: 0 auto 40px;
}

.growth-stats {
    padding: 50px 0;
    background: #121824;
    border-top: 1px solid rgba(56, 139, 253, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: #58a6ff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-card p {
    color: #9ca3af;
    font-size: 0.92rem;
}

.about {
    background-color: #161b22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-text p {
    color: #9ca3af;
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.experience-highlights {
    margin: 20px 0;
}

.exp-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #c9d1d9;
}

.exp-bullet {
    color: #3fb950;
    font-weight: bold;
}

.services {
    background-color: #07090e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
    font-size: 2.2rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    position: relative;
    background-color: #121721;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-bg-branding { background-image: url('https://images.unsplash.com/photo-1600132806370-bf17e65e942f?q=80&w=800&auto=format&fit=crop'); }
.card-bg-web { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=800&auto=format&fit=crop'); }
.card-bg-consulting { background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?q=80&w=800&auto=format&fit=crop'); }
.card-bg-seo { background-image: url('https://images.unsplash.com/photo-1432888498266-38ffec3eaf0a?q=80&w=800&auto=format&fit=crop'); }
.card-bg-traffic { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=800&auto=format&fit=crop'); }
.card-bg-crm { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=800&auto=format&fit=crop'); }
.card-bg-audit { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=800&auto=format&fit=crop'); }
.card-bg-mentorship { background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=800&auto=format&fit=crop'); }

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.35) 0%, rgba(7, 9, 14, 0.9) 65%, #07090e 100%);
    transition: background 0.3s ease;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 28px 22px;
    width: 100%;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.card p {
    color: #9ca3af;
    font-size: 0.92rem;
    line-height: 1.5;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 139, 253, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.card:hover .card-overlay {
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.2) 0%, rgba(7, 9, 14, 0.82) 60%, #07090e 100%);
}

.faq-section {
    background-color: #0e1420;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.glass-panel {
    background: rgba(22, 29, 42, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.faq-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.18) 0%, rgba(11, 14, 20, 1) 75%), #0b0e14;
    width: 100%;
}

.contact-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form.glass-card {
    width: 100%;
    background: rgba(18, 23, 35, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header-badge-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-card-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.contact-card-header p {
    color: #9ca3af;
    font-size: 1.02rem;
    max-width: 650px;
    margin: 0 auto;
}

.form-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(11, 15, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-group select option {
    background-color: #0b0f19;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #388bfd;
    background-color: rgba(11, 15, 25, 0.95);
    box-shadow: 0 0 0 3px rgba(56, 139, 253, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-quick-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 15px;
    flex-wrap: nowrap;
}

a.quick-item {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

a.quick-item:hover {
    transform: translateY(-2px);
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 0.88rem;
    white-space: nowrap;
    flex: 1 1 auto;
}

.quick-item strong {
    color: #e6edf3;
}

.quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(56, 139, 253, 0.12);
    border: 1px solid rgba(56, 139, 253, 0.3);
    border-radius: 50%;
    color: #58a6ff;
    font-size: 0.9rem;
}

.site-footer {
    background-color: #05070a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 70px;
    color: #8b949e;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.footer-brand p {
    color: #8b949e;
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #58a6ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    font-size: 0.88rem;
    color: #6e7681;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #ffffff;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 868px) {
    .contact-quick-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .quick-item {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    section {
        padding: 60px 0;
    }

    .site-logo {
        height: 30px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #161b22;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 0.95rem;
        width: 100%;
    }

    .contact-form.glass-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .contact-card-header h2 {
        font-size: 1.65rem;
    }

    .form-grid-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .site-footer {
        padding-top: 40px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px 20px !important;
        padding-bottom: 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-brand p {
        max-width: 100%;
        font-size: 0.88rem;
    }

    .footer-heading {
        margin-bottom: 10px;
        font-size: 0.95rem;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        font-size: 0.88rem;
    }

    .footer-col-full-mobile {
        grid-column: span 2;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}