@charset "UTF-8";

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

:root {
    --green:        #10b981;
    --green-dark:   #059669;
    --green-light:  #d1fae5;
    --green-xlight: #ecfdf5;
    --yellow:       #f59e0b;
    --blue-light:   #dbeafe;
    --amber-light:  #fef3c7;

    --gray-50:  #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white:    #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-code:    'Fira Code', monospace;

    --radius-sm:   0.375rem;
    --radius-md:   0.75rem;
    --radius-lg:   1rem;
    --radius-xl:   1.5rem;
    --radius-pill: 99px;

    --shadow-xs:    0 1px 2px rgba(0,0,0,.05);
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:    0 4px 16px rgba(0,0,0,.08);
    --shadow-lg:    0 12px 32px rgba(0,0,0,.1);
    --shadow-green: 0 4px 16px rgba(16,185,129,.25);

    /* Espaçamento base */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Tipografia */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    font-size: var(--text-base);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

@media (max-width: 1024px) { .container { padding: 0 var(--space-6); } }
@media (max-width: 768px)  { .container { padding: 0 var(--space-5); } }

/* =========================================
   CAROUSEL DE SERVIÇOS
   ========================================= */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-10);
    gap: var(--space-6);
}

.carousel-nav {
    display: flex;
    gap: var(--space-2);
    flex-shrink: 0;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.carousel-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-xlight);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-wrapper {
    overflow: hidden;
    margin: 0 -0.5rem;
}

.carousel-track {
    display: flex;
    gap: var(--space-5);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    padding: 0.5rem 0.5rem var(--space-3);
}

.carousel-slide {
    flex: 0 0 calc(33.333% - var(--space-4));
    min-width: 0;
    padding: var(--space-6);
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: transform .25s;
}

.carousel-slide:hover {
    transform: translateY(-3px);
}

.carousel-slide .service-icon-wrap {
    margin-bottom: var(--space-5);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-3);
    line-height: 1.35;
    color: var(--gray-900);
}

.slide-desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: var(--space-4);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s, width .2s;
}

.carousel-dot.active {
    background: var(--green);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .carousel-slide { flex: 0 0 calc(50% - var(--space-3)); }
}

@media (max-width: 600px) {
    .section-header-row { flex-direction: column; align-items: flex-start; }
    .carousel-slide { flex: 0 0 calc(100% - var(--space-2)); }
}

/* =========================================
   SERVICE LIST (sem cards)
   ========================================= */
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--gray-100);
}

.service-item {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-8) var(--space-6);
    border-bottom: 1px solid var(--gray-100);
    transition: background .2s;
}

.service-item:nth-child(odd)  { border-right: 1px solid var(--gray-100); }
.service-item:hover { background: var(--gray-50); }

.service-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-icon-wrap.green  { background: var(--green-xlight);  color: var(--green); }
.service-icon-wrap.yellow { background: #fffbeb; color: var(--yellow); }

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.service-desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: var(--space-3);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.service-tag {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green-light);
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
}

@media (max-width: 700px) {
    .service-list { grid-template-columns: 1fr; }
    .service-item:nth-child(odd) { border-right: none; }
}

/* =========================================
   ABOUT LAYOUT (sem cards)
   ========================================= */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
    align-items: start;
}

@media (max-width: 768px) { .about-layout { grid-template-columns: 1fr; gap: var(--space-12); } }

.about-lead {
    font-size: var(--text-base);
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: var(--space-10);
}

.about-mv { display: flex; flex-direction: column; gap: var(--space-8); }

.about-mv-item {
    padding-left: var(--space-5);
    border-left: 2px solid var(--green-light);
}

.about-mv-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green);
    margin-bottom: var(--space-2);
}

.about-mv-text {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.75;
}

.about-values-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: var(--gray-700);
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--gray-100);
}

.value-item:last-child { border-bottom: none; }

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.value-item strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-1);
    color: var(--gray-900);
}

.value-item p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.65;
}

/* =========================================
   CONTACT LAYOUT (sem caixas)
   ========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-24);
    align-items: start;
}

@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: var(--space-12); } }

.contact-right .contact-form-box {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 1000;
    transition: box-shadow .3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 var(--space-8);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-1);
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    letter-spacing: .01em;
}

.nav-link:hover {
    color: var(--green);
    background: var(--green-xlight);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all .3s;
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-menu {
        position: fixed;
        top: 68px;
        inset-inline: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all .3s cubic-bezier(.4,0,.2,1);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link { width: 100%; }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: var(--white);
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--gray-700);
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--gray-200);
    cursor: pointer;
    transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    padding: var(--space-32) 0 var(--space-24);
    background: linear-gradient(160deg, var(--green-xlight) 0%, var(--white) 55%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: var(--space-3);
}

.text-green { color: var(--green); }

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-4);
    line-height: 1.4;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: var(--space-8);
    max-width: 480px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.hero-tech-tags { margin-top: 0; }

.hero-tech-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 0.65rem;
}

.hero-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-xs);
}

.tag-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Code Window */
.code-window {
    background: #0f0f1a;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.05);
}

.code-window-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: #1a1a2e;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }

.code-window-title {
    margin-left: 0.5rem;
    font-family: var(--font-code);
    font-size: 0.78rem;
    color: rgba(255,255,255,.3);
}

.code-block {
    padding: 1.75rem;
    margin: 0;
    font-family: var(--font-code);
    font-size: 0.9rem;
    line-height: 1.9;
    color: #cdd6f4;
    overflow-x: auto;
}

.code-block code { font-family: inherit; }
.code-keyword  { color: #cba6f7; }
.code-type     { color: #89dceb; }
.code-variable { color: #89b4fa; }
.code-property { color: #cdd6f4; }
.code-string   { color: #a6e3a1; }

@media (max-width: 768px) {
    .hero { padding: var(--space-24) 0 var(--space-16); }
    .hero-container { grid-template-columns: 1fr; gap: var(--space-10); }
    .hero-title { font-size: var(--text-3xl); }
    .hero-subtitle { font-size: var(--text-lg); }
    .hero-description { font-size: var(--text-base); margin-bottom: var(--space-6); }
    .hero-cta { margin-bottom: var(--space-8); }
}

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: var(--space-24) 0; }
.bg-light { background: var(--gray-50); }

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
    background: var(--green-xlight);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: var(--space-4);
    line-height: 1.15;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* =========================================
   GRIDS
   ========================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* =========================================
   SERVICE CARDS
   ========================================= */
.card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-xs);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card-icon.green  { background: var(--green-light);  color: var(--green); }
.card-icon.yellow { background: var(--amber-light); color: var(--yellow); }

.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.1rem;
}

.service-tag {
    background: var(--gray-50);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
}

/* =========================================
   TECHNOLOGY TABS
   ========================================= */
.tech-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
    padding: var(--space-1);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    width: fit-content;
    max-width: 100%;
}

.tech-tab-btn {
    background: none;
    border: none;
    padding: var(--space-2) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all .2s;
    white-space: nowrap;
}

.tech-tab-btn:hover { color: var(--green); background: var(--white); }

.tech-tab-btn.active {
    background: var(--white);
    color: var(--green);
    box-shadow: var(--shadow-sm);
}

.tech-panel {
    display: none;
    background: transparent;
    border-radius: 0;
    border: none;
    padding: var(--space-8) 0;
    margin-bottom: var(--space-6);
    box-shadow: none;
}

.tech-panel.active { display: block; }

.tech-panel-header {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-bottom: none;
}

.tech-panel-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.tech-panel-desc { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.6; }

.tech-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

@media (max-width: 768px) { .tech-items-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tech-items-grid { grid-template-columns: 1fr; } }

.tech-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    background: transparent;
    border: none;
    border-radius: 0;
    transition: transform .2s;
}

.tech-item:hover {
    transform: translateY(-1px);
}

.tech-item-left {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-width: 0;
}

.tech-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.tech-item-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.skill-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.18rem var(--space-2);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

.skill-expert       { background: var(--green-light);  color: #065f46; }
.skill-advanced     { background: var(--blue-light);   color: #1e40af; }
.skill-intermediate { background: var(--amber-light); color: #92400e; }

/* Tech Stats */
.tech-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.tech-stat {
    flex: 1;
    text-align: center;
    padding: var(--space-10) var(--space-4);
    border-right: 1px solid var(--gray-100);
}

.tech-stat:last-child { border-right: none; }

.tech-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.tech-stat-label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: 500;
}

@media (max-width: 480px) {
    .tech-stats { flex-direction: column; }
    .tech-stat { border-right: none; border-bottom: 1px solid var(--gray-100); }
    .tech-stat:last-child { border-bottom: none; }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

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

.about-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-top: 3px solid var(--green);
    box-shadow: var(--shadow-xs);
    transition: box-shadow .25s, transform .25s;
}

.about-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.about-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-xlight);
    color: var(--green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.about-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.about-card-text { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

.values-header { margin-bottom: 1.75rem; text-align: center; }

.values-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -.01em;
}

/* Benefit cards (values) */
.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: box-shadow .2s, transform .2s;
}

.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--green-xlight);
    color: var(--green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.benefit-description { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

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

.contact-form-box,
.contact-info-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    padding: 2.25rem;
    box-shadow: var(--shadow-xs);
}

.form-group { margin-bottom: var(--space-5); }

.form-label {
    display: block;
    font-weight: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: var(--space-2);
    color: var(--gray-700);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--gray-900);
    background: var(--gray-50);
    outline: none;
    resize: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
    line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }

.form-input:focus,
.form-textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16,185,129,.1);
}

.form-submit { width: 100%; justify-content: center; margin-top: 0.25rem; }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: var(--green-xlight);
    color: var(--green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-label {
    font-weight: 700;
    font-size: var(--text-xs);
    color: var(--gray-700);
    margin-bottom: var(--space-1);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.contact-link {
    font-size: var(--text-sm);
    color: var(--gray-500);
    text-decoration: none;
    transition: color .2s;
    display: block;
    line-height: 1.6;
}

a.contact-link:hover { color: var(--green); }

.hours-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: var(--space-5);
}

.hours-title {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: var(--space-4);
}

.hours-grid { display: flex; flex-direction: column; gap: 0; }

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.hours-item:last-child { border-bottom: none; }
.hours-day  { font-size: var(--text-sm); font-weight: 500; color: var(--gray-600); }
.hours-time { font-size: var(--text-sm); font-weight: 700; color: var(--green); }
.hours-closed .hours-time { color: #ef4444; }

/* =========================================
   FOOTER
   ========================================= */
/* ── Site Footer (estilo vagas) ── */
.site-footer {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 0 2.5rem;
}

@media (max-width: 768px) {
    .site-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.site-footer-brand img {
    height: 32px;
    filter: brightness(0) invert(1);
    margin-bottom: 0.85rem;
}

.site-footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    max-width: 260px;
}

.site-footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    margin-bottom: 1rem;
}

.site-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.site-footer-col a,
.site-footer-col li {
    font-size: 0.875rem;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .2s;
}

.site-footer-col a:hover { color: #6ee7b7; }

/* Barra inferior */
.site-footer-bottom {
    background: rgba(0,0,0,.2);
    border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.9rem 0;
}

.site-footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,.4);
    margin: 0;
}

.site-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

@media (max-width: 600px) {
    .site-footer-bottom-inner { justify-content: center; text-align: center; }
}
