/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Cores base */
    --bg-color-main: #0a0a0a;
    --bg-color-secondary: #141414;
    --bg-color-tertiary: #1f1f1f;

    /* Cores de Destaque */
    --color-primary: #0F4C81;
    /* Azul Técnico */
    --color-accent: #F26722;
    /* Laranja Industrial */

    /* Textos */
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --text-white: #ffffff;

    /* Bordas */
    --border-color: rgba(255, 255, 255, 0.08);

    /* Fontes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Dimensões */
    --container-width: 1280px;
    --header-height: 110px;
}

/* Reset Genérico */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

/* Estrutura de Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title span {
    color: var(--color-accent);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Seções Padrão */
section {
    padding: 6rem 0;
}

.bg-secondary {
    background-color: var(--bg-color-secondary);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(242, 103, 34, 0.3);
}

.btn-primary:hover {
    background-color: #d1561a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 103, 34, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 3rem;
}

/* Animações (Scroll Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: inline-block;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

/* Responsividade Básica (será aprimorada adiante) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Menu hamburger a fazer depois, ou simplificado */
    }
}

/* ==================
   1. HERO SECTION
   ================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding: 0;
    background-color: #000000;
}

.hero-inner {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

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

.hero-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: overlay;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    margin-top: calc(var(--header-height));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    width: 100%;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    border: 1px solid rgba(242, 103, 34, 0.3);
    border-radius: 40px;
    margin-bottom: 1.5rem;
    background: rgba(242, 103, 34, 0.05);
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-content h1 span {
    color: var(--color-accent);
    display: block;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 1rem;
        padding-bottom: 4rem;
    }

    .hero-inner {
        height: auto;
        padding-top: calc(var(--header-height) + 2rem);
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-top: 0;
        gap: 2rem;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

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

    .hero-bg-layer::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* ==================
   2. POR QUE AUTOMATIZAR
   ================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg-color-tertiary);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 76, 129, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================
   3. SOBRE A ZÊNITE
   ================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.text-left {
    text-align: left;
}

.badge-text {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

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

.stat-item {
    border-left: 3px solid var(--color-primary);
    padding-left: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.about-image .img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    background: var(--bg-color-tertiary);
}

.about-image .img-wrapper img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.about-image:hover .img-wrapper img {
    filter: grayscale(0%);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, var(--text-secondary) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.15;
    z-index: -1;
}

/* ==================
   4. SOLUÇÕES DESENVOLVIDAS
   ================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.solution-card {
    background: var(--bg-color-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.sol-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.sol-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .sol-img::after {
    opacity: 1;
}

.sol-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .sol-img img {
    transform: scale(1.05);
}

.sol-content {
    padding: 2rem;
}

.sol-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.sol-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================
   5. GALERIA DE APLICAÇÕES
   ================== */
.container-fluid {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

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

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

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

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-color-secondary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 129, 0.85);
    /* Azul hover */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* ==================
   6. DIFERENCIAIS
   ================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

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

.feature-block {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-color-main);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-block:hover {
    transform: translateX(10px);
    border-color: var(--color-accent);
}

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

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.features-image .img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    background: var(--bg-color-tertiary);
}

.features-image .img-wrapper img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* ==================
   7. TIMELINE DE PROCESSO
   ================== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: -20px;
    width: 40px;
    height: 40px;
    background: var(--bg-color-main);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(242, 103, 34, 0.4);
}

.timeline-dot.flex-center {
    padding-top: 2px;
    /* Fix for SVG center alignment */
}

.timeline-content {
    background: var(--bg-color-tertiary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================
   8. SEGMENTOS
   ================== */
.container-segments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.segments-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: default;

    /* Estado inicial da animação clean */
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Quando entra na tela, revela os chips */
.segments-text.active .chip {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de cascata (stagger) para a entrada dos chips */
.segments-text.active .chip:nth-child(1) {
    transition-delay: 0.1s;
}

.segments-text.active .chip:nth-child(2) {
    transition-delay: 0.2s;
}

.segments-text.active .chip:nth-child(3) {
    transition-delay: 0.3s;
}

.segments-text.active .chip:nth-child(4) {
    transition-delay: 0.4s;
}

.segments-text.active .chip:nth-child(5) {
    transition-delay: 0.5s;
}

.segments-text.active .chip:nth-child(6) {
    transition-delay: 0.6s;
}

.segments-text.active .chip:nth-child(7) {
    transition-delay: 0.7s;
}

.segments-text.active .chip:nth-child(8) {
    transition-delay: 0.8s;
}

/* Efeito de hover garantindo prioridade */
.segments-text.active .chip:hover,
.chip:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(15, 76, 129, 0.3);
    transition-delay: 0s;
    transition: all 0.3s ease;
}

.segments-image .img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    background: var(--bg-color-main);
}

.segments-image .img-wrapper img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* ==================
   9. CTA FINAL
   ================== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

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

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.box-reveal {
    animation: revealUp 1s ease forwards;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-section h2 span {
    color: var(--color-accent);
}

.cta-section p {
    font-size: 1.25rem;
    color: #ddd;
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

@media (max-width: 576px) {
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

/* ==================
   10. RODAPÉ / FOOTER
   ================== */
footer {
    background-color: var(--bg-color-main);
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

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

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.brand-col .logo {
    margin-bottom: 1.5rem;
}

.brand-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col ul li a {
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.footer-col ul li strong {
    color: var(--text-white);
    margin-right: 0.5rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
    background-color: var(--bg-color-secondary);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Utilitários Extras Adicionados */
.section-padding {
    padding: 6rem 0;
}

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

.glass-effect {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.relative {
    position: relative;
}