/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores */
    --black: #000000;
    --white: #ffffff;
    --gray: #9ca3af;
    --gray-light: #d1d5db;
    --gray-dark: #4b5563;
    --accent: #3b82f6;
    --accent-dark: #2563eb;

    /* Tipografia */
    --font-xs: 11px;
    --font-small: 14px;
    --font-medium: 18px;
    --font-large: 32px;
    --font-xlarge: 48px;
    --font-xxlarge: 64px;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* Transições */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--white);
    background: radial-gradient(ellipse at top, #0a0a0a 0%, #000000 100%);
    overflow-x: hidden;
    font-size: var(--font-medium);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 50%, transparent);
}

.navbar {
    padding: 1.75rem 0;
}

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

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: var(--font-small);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    opacity: 0.7;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--white), transparent);
    transition: var(--transition);
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 2rem;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.current-language:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
}

.current-language i {
    font-size: 0.7rem;
    color: var(--gray);
    transition: var(--transition);
}

.language-selector.active .current-language i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow: hidden;
    z-index: 1000;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.language-option.active {
    background: rgba(255, 255, 255, 0.05);
}

.language-option img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
}

.language-option span {
    font-size: var(--font-small);
    color: var(--white);
    font-weight: 400;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 1.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.02) 0%, transparent 40%),
        var(--black);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 200;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    margin-bottom: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #e5e7eb 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: var(--font-small);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-slow);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

/* Pilares Section */
.pilares {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.pilares::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.pilares-main-title {
    margin-bottom: 6rem;
}

.pilares-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6rem;
    margin-bottom: 3rem;
    position: relative;
}

.pilar-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 300px;
}

.pilar-center {
    transform: translateY(-40px);
}

.pilar-top {
    margin-bottom: 1rem;
    z-index: 2;
}

.pilar-icon-wrapper {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        var(--black);
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: var(--transition-slow);
    position: relative;
}

.pilar-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
    animation: rotate 3s linear infinite;
    animation-play-state: paused;
}

.pilar-column:hover .pilar-icon-wrapper::before {
    opacity: 1;
    animation-play-state: running;
}

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

.pilar-column:hover .pilar-icon-wrapper {
    transform: scale(1.1);
    border-color: var(--white);
    box-shadow:
        0 0 50px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.pilar-icon-wrapper i {
    color: var(--white);
    z-index: 1;
}

.pilar-body {
    height: 200px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pilar-center .pilar-body {
    height: 240px;
}

.pilar-vertical-line {
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: var(--transition-slow);
}

.pilar-vertical-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.4)
    );
    animation: pillarGlow 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes pillarGlow {
    0%, 100% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 100%;
        opacity: 1;
    }
}

.pilar-column:hover .pilar-vertical-line {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.pilar-content {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-slow);
    position: relative;
    z-index: 2;
}

.pilar-column:hover .pilar-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pilar-content h3 {
    font-size: var(--font-large);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--white);
}

.pilar-content p {
    color: var(--gray);
    font-size: var(--font-small);
    line-height: 1.8;
    font-weight: 300;
}

.pilares-base {
    margin-top: 2rem;
    padding: 0 2rem;
}

.base-line {
    height: 8px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 10%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 90%,
        transparent 100%
    );
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.base-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: baseShine 3s ease-in-out infinite;
}

@keyframes baseShine {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

/* Sobre Section */
.sobre {
    padding: var(--spacing-xl) 0;
    position: relative;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.82) 100%),
        url('https://images.unsplash.com/photo-1527482797697-8795b05a13fe?w=1920&q=80') center/cover;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(75, 85, 99, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(55, 65, 81, 0.18) 0%, transparent 50%);
    animation: stormSobre 20s ease-in-out infinite;
    pointer-events: none;
}

.sobre::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    animation: lightningSobre 15s infinite;
    pointer-events: none;
}

@keyframes stormSobre {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(0);
    }
    50% {
        opacity: 0.7;
        transform: translateX(20px);
    }
}

@keyframes lightningSobre {
    0%, 90%, 100% {
        opacity: 0;
    }
    92%, 94% {
        opacity: 0.15;
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sobre-content {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.lead-text {
    font-size: var(--font-large);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.sobre-content p {
    font-size: var(--font-medium);
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: var(--font-small);
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Serviços Section */
.servicos {
    padding: var(--spacing-xxl) 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 5rem 4rem;
    margin-top: 5rem;
}

.servico-item {
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    transition: var(--transition-slow);
    position: relative;
}

.servico-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--white), transparent);
    transition: var(--transition-slow);
}

.servico-item:hover {
    transform: translateX(10px);
}

.servico-item:hover::before {
    width: 100px;
}

.servico-number {
    font-size: var(--font-xs);
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.servico-item h3 {
    font-size: var(--font-large);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.servico-item:hover h3 {
    color: var(--gray-light);
}

.servico-item p {
    color: var(--gray);
    font-size: var(--font-small);
    line-height: 1.9;
    font-weight: 300;
}

/* Contato Section */
.contato {
    padding: var(--spacing-xxl) 0;
    background: radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.02) 0%, var(--black) 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    margin-bottom: 5rem;
    font-weight: 300;
    line-height: 1.8;
}

.contato-form {
    max-width: 650px;
    margin: 0 auto 5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 1.4rem 1.6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--white);
    font-size: var(--font-small);
    font-family: inherit;
    transition: var(--transition-slow);
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

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

.submit-button {
    width: 100%;
    padding: 1.4rem;
    background: linear-gradient(135deg, var(--white) 0%, #e5e7eb 100%);
    color: var(--black);
    border: none;
    border-radius: 9999px;
    font-size: var(--font-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-slow);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.submit-button:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.submit-button:hover::before {
    left: 100%;
}

.contato-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    text-decoration: none;
    font-size: var(--font-small);
    transition: var(--transition);
}

.info-link:hover {
    color: var(--white);
}

.info-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-footer {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-info p {
    font-size: var(--font-small);
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

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

.footer-social a:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

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

    .pilares-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 3rem 0;
        gap: 2.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.active {
        left: 0;
    }

    .language-selector {
        margin-left: auto;
        margin-right: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 8rem 1.5rem 5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.8rem;
    }

    .pilares,
    .servicos {
        padding: var(--spacing-xl) 0;
    }

    .sobre {
        padding: var(--spacing-xl) 0;
    }

    .pilares-main-title {
        margin-bottom: 4rem;
    }

    .pilares-wrapper {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .pilar-column {
        max-width: 100%;
        width: 100%;
    }

    .pilar-center {
        transform: translateY(0);
    }

    .pilar-body {
        height: 150px;
    }

    .pilar-center .pilar-body {
        height: 150px;
    }

    .pilares-base {
        display: none;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .servico-item {
        padding-top: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .contato-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .stats {
        gap: 2.5rem;
    }
}

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

    .hero {
        padding: 7rem 1.25rem 4rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-title br {
        display: none;
    }

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

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .pilares,
    .servicos {
        padding: var(--spacing-lg) 0;
    }

    .sobre {
        padding: var(--spacing-lg) 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .pilares-main-title {
        margin-bottom: 3rem;
    }

    .pilares-wrapper {
        gap: 2.5rem;
    }

    .pilar-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .pilar-body {
        height: 120px;
    }

    .pilar-center .pilar-body {
        height: 120px;
    }

    .pilar-content {
        padding: 1.5rem 1.25rem;
    }

    .pilar-content h3 {
        font-size: 1.5rem;
    }

    .servicos-grid {
        gap: 2.5rem;
    }

    .servico-item h3 {
        font-size: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 3rem;
    }

    .contato-form input,
    .contato-form textarea {
        padding: 1.2rem 1.4rem;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 1.2rem;
        font-size: 0.75rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

.hero-content {
    animation: fadeIn 1s ease forwards;
}

.hero-title {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button {
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.pilar-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.pilar-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pilar-card:nth-child(2) {
    animation-delay: 0.3s;
}

.pilar-card:nth-child(3) {
    animation-delay: 0.5s;
}

.servico-item {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.servico-item:nth-child(1) { animation-delay: 0.1s; }
.servico-item:nth-child(2) { animation-delay: 0.2s; }
.servico-item:nth-child(3) { animation-delay: 0.3s; }
.servico-item:nth-child(4) { animation-delay: 0.4s; }
.servico-item:nth-child(5) { animation-delay: 0.5s; }
.servico-item:nth-child(6) { animation-delay: 0.6s; }

