:root {
    /* Cores base */
    --black: hsl(0, 0%, 6%);
    --card: hsl(0, 0%, 10%);
    --white: hsl(0, 0%, 100%);
    --border: hsl(0, 0%, 16%);
    --white-50: hsla(0, 0%, 100%, 0.5);
    --white-70: hsla(0, 0%, 100%, 0.7);
    --white-80: hsla(0, 0%, 100%, 0.8);
    --accent-color: hsl(210, 100%, 50%); /* Azul como cor de destaque */
    --accent-secondary: hsl(280, 100%, 50%); /* Roxo como cor secundária */
    --accent-tertiary: hsl(25, 100%, 50%); /* Laranja como cor terciária */
    
    /* Cores para gradientes de títulos */
    --title-gradient-start: rgba(255, 255, 255, 1);
    --title-gradient-end: rgba(255, 255, 255, 0.7);
    --title-services-end: rgba(255, 255, 255, 0.6);
    --title-portfolio-end: rgba(255, 255, 255, 0.7);
    --title-clients-end: rgba(255, 255, 255, 0.8);
    --title-contact-end: rgba(255, 255, 255, 0.9);
    --title-stroke: rgba(255, 255, 255, 0.3);
    
    /* Transições e interações */
    --hover-transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --micro-interaction: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    --service-transition: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Espaçamentos */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;
    --container-width: 1200px;
    --content-max-width: 1440px;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Gallery */
    --gallery-gap: 20px;
}

/* Estilos da Tela de Carregamento */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.loading-screen-hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
}

.loading-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite alternate;
}

.loading-logo img {
    max-width: 60px;
    height: auto;
}

.loading-progress-container {
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.loading-progress-bar {
    height: 3px;
    width: 100%;
    background-color: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,1) 100%);
    border-radius: var(--radius-full);
    transition: width 0.3s ease-out;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes progress {
    0% { width: 0%; }
    10% { width: 5%; }
    20% { width: 15%; }
    30% { width: 25%; }
    40% { width: 40%; }
    50% { width: 50%; }
    60% { width: 60%; }
    70% { width: 70%; }
    80% { width: 80%; }
    90% { width: 90%; }
    100% { width: 100%; }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.flex {
    display: flex;
}

.w-full {
    width: 100%;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.p-4 {
    padding: 1rem;
}

.gap-16 {
    gap: 64px;
}

.font-geometos {
    font-family: 'Geometos', sans-serif;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-white {
    color: #ffffff;
}

.text-white-15 {
    color: var(--white);
}

.h-920 {
    height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/noise.png');
    background-repeat: repeat;
    background-position: center;
    background-color: var(--black);
}

.absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    max-width: 80%;
    height: auto;
}

video {
    height: 100%;
    width: auto;
    position: relative;
    object-fit: contain;
    min-width: 100%;
    filter: grayscale(100%);
}

header {
    position: relative;
    width: 100%;
    z-index: 1000;
}

header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

header nav a {
    text-decoration: none;
    color: var(--white);
    position: relative;
    transition: color var(--hover-transition);
    font-weight: 500;
}

header nav .flex-row a {
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
}

nav img {
    display: block;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.contact-new {
    padding: 4rem;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.contact-new::before {
    display: none;
}

.contact-layout {
    max-width: var(--content-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-heading {
    margin-bottom: 6rem;
    text-align: center;
    position: relative;
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
}

.contact-heading-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-heading h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Geometos', sans-serif;
    color: var(--white);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
}

.contact-heading p {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-new {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: sticky;
    top: var(--space-xl);
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--hover-transition), opacity 0.6s ease-out, transform 0.6s ease-out;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    display: none;
}

.contact-info-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-info-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-family: 'Geometos', sans-serif;
    position: relative;
    display: inline-block;
}

.contact-info-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.contact-info-item:hover h3::after {
    width: 100%;
}

.contact-info-item p {
    color: var(--white);
    line-height: 1.8;
    font-size: 1.1rem;
}

.social-links-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links-new a {
    color: var(--white);
    font-weight: 500;
    transition: all var(--hover-transition);
    position: relative;
    width: fit-content;
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
}

.social-links-new a i {
    font-size: 1.3rem;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links-new a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.social-links-new a:hover i {
    transform: scale(1.2);
}

.social-links-new a::before {
    display: none;
}

.social-links-new a:hover::before {
    display: none;
}

.form-field {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--micro-interaction);
    backdrop-filter: blur(5px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.form-field label {
    display: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.02);
    outline: none;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn-new {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(to right, #ffffff, #f5f5f5);
    color: var(--black);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-top: 1rem;
    box-shadow: none;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-new i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.submit-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.submit-btn-new:hover i {
    transform: translateX(3px);
}

.submit-btn-new:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info-new {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .contact-info-item {
        flex: 1;
        min-width: 300px;
    }
    
    .contact-heading h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-new {
        padding: 6rem 30px;
    }
    
    .contact-info-item {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-new {
        padding: 4rem 20px;
    }
    
    .contact-info-item {
        min-width: 100%;
    }
}

/* Footer modernizado */
.footer-new {
    background-color: var(--black);
    border-top: 1px solid var(--border);
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    position: relative;
    transition: transform var(--hover-transition);
}

.footer-logo img {
    max-width: 50px;
    height: auto;
    transition: transform var(--hover-transition);
}

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

.footer-tagline {
    color: var(--white-70);
    font-family: 'Geometos', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

.footer-social-container {
    display: flex;
    flex-direction: column;
}

.footer-social-title {
    font-family: 'Geometos', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.footer-social-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: width var(--hover-transition);
}

.footer-brand:hover .footer-social-title::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: all var(--hover-transition);
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-social a::before {
    display: none;
}

.footer-social a:hover::before {
    display: none;
}

.footer-social a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-nav-section {
    min-width: 160px;
}

.footer-nav-section h4 {
    font-family: 'Geometos', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.footer-nav-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: width var(--hover-transition);
}

.footer-nav-section:hover h4::after {
    width: 100%;
}

.footer-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-section li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0;
    transition: transform var(--hover-transition);
}

.footer-nav-section li:hover {
    transform: translateX(5px);
}

.footer-nav-section a {
    color: var(--white-70);
    font-size: 0.95rem;
    transition: color var(--hover-transition);
    font-family: 'Outfit', sans-serif;
}

.footer-nav-section a:hover {
    color: var(--white);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0.5rem 0;
}

.footer-copyright {
    text-align: center;
    padding: 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p {
    color: var(--white-50);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1;
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-brand {
        align-items: center;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-tagline {
        max-width: 80%;
    }
    
    .footer-social-container {
        align-items: center;
    }
    
    .footer-links {
        justify-content: space-around;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-new {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-social-container {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    
    .footer-nav-section {
        text-align: center;
        width: 100%;
    }
    
    .footer-nav-section h4, .footer-social-title {
        display: block;
        text-align: center;
    }
    
    .footer-nav-section h4::after, .footer-social-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand:hover .footer-social-title::after {
        width: 50px;
    }
    
    .footer-nav-section li {
        padding-left: 0;
    }
}

.services-modern {
    width: 100%;
    position: relative;
    border-top: 1px solid var(--border);
}

.services-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.services-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 0;
    transition: all var(--hover-transition);
    background-color: var(--black);
    color: var(--white);
    width: 100%;
}

/* Novo estilo para envolver o conteúdo dos serviços */
.service-row-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    transition: all 1s ease;
    background-color: var(--white);
    color: var(--black);
}

.service-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--white);
    transition: all var(--hover-transition);
}

.service-icon i {
    color: var(--black);
    font-size: 24px;
    transition: color var(--hover-transition);
}

.service-left h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    transition: all var(--hover-transition);
    margin: 0;
    letter-spacing: 2px;
}

.service-dot {
    color: var(--white);
    font-size: 12px;
    margin: 0 30px;
    transition: all var(--hover-transition);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-row:hover .service-dot {
    color: var(--black);
}

.service-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 35%;
}

.service-right p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
    margin: 0;
    transition: all var(--hover-transition);
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    text-align: left;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-row:hover .service-right p {
    color: var(--black);
}

.service-arrow {
    width: 64px;
    height: 100px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50px;
    transition: all var(--hover-transition);
    flex-shrink: 0;
}

.service-arrow i {
    color: var(--black);
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
    transform: rotate(0deg); /* Pointing down */
}

.service-row:hover .service-icon {
    background-color: var(--black);
}

.service-row:hover .service-icon i {
    color: var(--white);
}

.service-row:hover .service-left h2 {
    color: var(--black);
}

.service-row:hover .service-dot {
    color: var(--black);
}

.service-row:hover .service-right p {
    color: var(--black);
}

.service-row:hover .service-arrow {
    background-color: var(--black);
}

.service-row:hover .service-arrow i {
    color: var(--white);
    /* No transform on hover */
}

/* Service row with open dropdown */
.service-row[aria-expanded="true"] {
    background-color: var(--white);
    color: var(--black);
}

.service-row[aria-expanded="true"] .service-icon {
    background-color: var(--black);
}

.service-row[aria-expanded="true"] .service-icon i {
    color: var(--white);
}

.service-row[aria-expanded="true"] .service-left h2 {
    color: var(--black);
}

.service-row[aria-expanded="true"] .service-dot {
    color: var(--black);
}

.service-row[aria-expanded="true"] .service-right p {
    color: var(--black);
}

.service-row[aria-expanded="true"] .service-arrow {
    background-color: var(--black);
}

.service-row[aria-expanded="true"] .service-arrow i {
    color: var(--white);
    transform: rotate(180deg); /* Pointing up */
}

@media (max-width: 992px) {
    .service-left h2 {
        font-size: 3rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-dot {
        margin: 0 15px;
    }
    
    .service-right {
        display: block;
        max-width: 45%;
        text-align: left;
    }
    
    .service-arrow {
        width: 50px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .service-row {
        padding: 30px 20px;
    }
    
    .service-left {
        gap: 15px;
    }
    
    .service-left h2 {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-icon i {
        font-size: 16px;
    }
    
    .service-right {
        max-width: 50%;
    }
    
    .service-right p {
        font-size: 1.2rem;
    }
    
    .service-arrow {
        width: 40px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .service-row-content {
        justify-content: center;
        gap: 10px;
    }
    
    .service-right {
        max-width: 100%;
        margin: 15px 0;
        order: 3;
        text-align: center;
    }
    
    .service-right p {
        text-align: center;
    }
    
    .service-dot {
        display: none;
    }
}

.clients-modern {
    padding: 6rem 0;
    background-color: var(--black);
    position: relative;
}

.clients-modern::before {
    display: none;
}

.clients-partners-container {
    background-color: var(--card);
    border: none;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.clients-partners-container .section-heading {
    position: relative;
    margin-bottom: 4rem;
}

.clients-partners-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: flex-start;
    animation: scroll 40s linear infinite;
    width: max-content;
}

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

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 1.5rem;
    opacity: 0.6;
    min-width: 200px;
}

.client-logo img {
    max-width: 100%;
    max-height: 128px;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1.2);
}

@media (max-width: 1024px) {
    .clients-partners-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .clients-partners-grid {
        gap: 2rem;
    }
}

.nav-banner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.hero {
    position: relative;
    width: 100%;
}

/* Efeito de expansão dos serviços */
.service-row {
    cursor: pointer;
    overflow: hidden;
    transition: all var(--hover-transition);
}

.service-row .service-right {
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Removendo estilos antigos do botão */
.submit-btn-new::after,
.submit-btn-new:hover::after {
    display: none;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(100, 100);
        opacity: 0;
    }
}

/* Efeito de destaque para links sociais */
.social-links-new a {
    position: relative;
    overflow: hidden;
}

.social-links-new a::before {
    display: none;
}

.social-links-new a:hover::before {
    display: none;
}

.metrics-section {
    position: absolute;
    right: 3%;
    top: auto;
    transform: none;
    z-index: 5;
    padding: 0;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: auto;
    bottom: 6%;
}

.metrics-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
    max-width: 500px;
    position: relative;
    bottom: 0;
}

.metric-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 1.35rem;
    border-right: 3px solid var(--white);
    text-align: left;
    border-radius: 0;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.metric-card:hover {
    border-right: 3px solid var(--white);
}

.metric-card h3 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Josefin Sans', sans-serif;
}

.metric-card p {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--white);
    text-align: left;
    font-size: 1.08rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    font-weight: 400;
}

.metric-card p::after {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.metric-card:hover p::after {
    width: 100%;
}

.metric-icon {
    display: flex;
    justify-content: flex-start;
    margin-top: var(--space-sm);
}

.metric-icon i {
    font-size: 1.35rem;
    color: var(--white);
}

.metric-card:hover .metric-icon i {
    color: var(--white);
}

.text-animation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 90%;
    margin: 0 0 0 0;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-right: 3px solid var(--white);
    border-left: none;
}

.text-animation:hover {
    /* Removendo mudança de cor de fundo */
}

.static-prefix {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--white);
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.static-prefix::after {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.text-animation:hover .static-prefix::after {
    width: 100%;
}

.changing-words {
    position: relative;
    height: 3.6rem;
    overflow: hidden;
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.word {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    font-family: 'Geometos', sans-serif;
    font-size: 2.52rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.word.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .metrics-section {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        height: auto;
        padding: var(--space-xl) 0;
        background-color: var(--black);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        display: block;
    }
    
    .metrics-container {
        margin: 0 auto;
        align-items: center;
        padding: 0 var(--space-lg);
        gap: var(--space-lg);
        width: 100%;
    }
    
    .metric-card {
        text-align: center;
        align-items: center;
        border-right: none;
        border-bottom: 3px solid var(--white);
        padding: 2rem;
    }
    
    .metric-card p {
        text-align: center;
    }
    
    .metric-card p::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .metric-icon {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .metric-card {
        max-width: 100%;
    }
    
    .hero-text {
        bottom: 6%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
    }
    
    .text-animation {
        align-items: center;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        padding: 1.35rem;
        border-right: none;
        margin: 0 auto;
    }
    
    .text-animation:hover {
        transform: none;
    }
    
    .static-prefix {
        text-align: center;
    }
    
    .static-prefix::after {
        right: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .changing-words {
        text-align: center;
    }
    
    .word {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.62rem;
    }
    
    .word.active {
        transform: translateX(-50%);
    }
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: absolute;
    bottom: 6%;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 35px;
    height: 55px;
    border: 3px solid var(--white);
    border-radius: 18px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 7px;
    height: 14px;
    background-color: var(--white);
    border-radius: 3px;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(12px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(24px);
    }
}

@media (max-width: 1024px) {
    .metrics-container {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .metric-card h3 {
        font-size: 2.5rem;
    }
}

/* Adicionando classes utilizadas no JavaScript */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Adicionando classes utilizadas no JavaScript para os formulários */
.form-field.focused input,
.form-field.focused textarea,
.form-field.focused select {
    border-color: var(--white);
}

.form-field.has-value input,
.form-field.has-value textarea,
.form-field.has-value select {
    border-color: var(--border);
}

/* ======== NOVAS SEÇÕES ======== */

/* Estilos para cabeçalhos de seção */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
}

.section-heading h2 {
    font-family: 'Geometos', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.section-heading p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--white-50);
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-gallery {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.portfolio-gallery .section-heading {
    text-align: left;
    margin-bottom: 2rem;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 2;
    padding: 0.5rem 0;
    overflow: visible;
}

.portfolio-gallery .section-heading h2 {
    display: block;
    position: relative;
    font-size: 2.5rem;
    font-family: 'Geometos', sans-serif;
    line-height: 1.2;
    padding: 0.25rem 0;

    color: var(--white);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    text-fill-color: initial;
}

.portfolio-gallery .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--white);
}

/* Categoria de portfólio */
.portfolio-category {
    margin-bottom: 3.5rem;
}

.portfolio-category:last-child {

}

/* Título da categoria */
.category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.category-title h3 {
    font-family: 'Geometos', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    padding-left: 1rem;
    letter-spacing: 1px;
}

.category-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--white);
}

/* Estilização para as diferentes categorias - removendo cores diferentes */
.portfolio-category:nth-child(2) .category-title h3 {
    color: var(--white);
}

.portfolio-category:nth-child(3) .category-title h3 {
    color: var(--white);
}

.portfolio-category:nth-child(4) .category-title h3 {
    color: var(--white);
}

/* Controles do slider */
.slider-controls {
    display: flex;
    gap: 0.8rem;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--white-70);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.slider-prev:active, .slider-next:active {
    transform: translateY(0);
}

/* Container do slider */
.portfolio-slider {
    position: relative;
    overflow: hidden;
    width: 100%;

}

.portfolio-slide-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    gap: 1.5rem;
}

/* Items do portfólio */
.portfolio-item {
    flex: 0 0 calc(33.333% - 1rem);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: 4px;
    background-color: var(--black-50);
}

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

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Overlay nos items */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.view-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .view-icon {
    transform: scale(1);
}

/* Responsividade */
@media (max-width: 992px) {
    .portfolio-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .portfolio-item {
        flex: 0 0 100%;
    }
    
    .category-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .slider-controls {
        align-self: flex-end;
    }
}

/* Service Dropdowns */
.service-dropdown {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
    background-color: var(--black);
    border-bottom: 1px solid var(--border);
}

.service-dropdown-separator {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 20px 0;
    max-width: 100%;
}

.service-dropdown.open {
    max-height: 800px;
    opacity: 1;
    padding: 30px 0;
}

.service-dropdown-content {
    display: flex;
    padding: 0 20px;
    gap: 40px;
    align-items: flex-start;
    max-width: var(--content-max-width);
    margin: 0 auto;
    width: 100%;
}

.service-dropdown-content .featured-artwork {
    width: 40%;
    max-width: 400px;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    flex-shrink: 0;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.service-dropdown.open .featured-artwork {
    transform: translateY(0);
    opacity: 1;
}

.lucide-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lucide-icon-container svg {
    width: 40%;
    height: 40%;
    stroke: #ffffff;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    animation: iconPulse 2s infinite alternate;
    z-index: 1;
}

.lucide-icon-container::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    animation: pulseGlow 3s infinite alternate;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.service-dropdown-content .featured-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: none;
}

/* Dropdown details styling */
.dropdown-details {
    flex: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}

.service-dropdown.open .dropdown-details {
    transform: translateY(0);
    opacity: 1;
}

.dropdown-details .service-details-header {
    margin-bottom: 20px;
}

.dropdown-details .service-details-header h2 {
    font-family: 'Geometos', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0;
}

.dropdown-details .service-description {
    margin-bottom: 30px;
}

.dropdown-details .service-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
}

.dropdown-details .service-steps h3 {
    font-family: 'Geometos', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.dropdown-details .service-steps h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.dropdown-details .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.dropdown-details .step {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.dropdown-details .step:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-details .step-number {
    font-family: 'Geometos', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 15px;
    opacity: 0.7;
}

.dropdown-details .step-content h4 {
    font-family: 'Geometos', sans-serif;
    font-size: 1rem;
    margin: 0 0 5px 0;
    color: var(--white);
}

.dropdown-details .step-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

/* Media queries for responsive layout */
@media (max-width: 992px) {
    .service-dropdown-content {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .service-dropdown-content .featured-artwork {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

/* Restaurando estilos para o hero text e animação */
.hero-text {
    position: absolute;
    bottom: 6%;
    left: 3%;
    transform: none;
    color: var(--white);
    text-align: left;
    z-index: 2;
    width: 40%;
    max-width: 500px;
}

.hero-text h2 {
    font-family: 'Geometos', sans-serif;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.text-animation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 90%;
    margin: 0 0 0 0;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 1.8rem;
    border-right: 3px solid var(--white);
    border-left: none;
}

.text-animation:hover {
    /* Removendo mudança de cor de fundo */
}

.changing-words {
    position: relative;
    height: 3.6rem;
    overflow: hidden;
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.word {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    font-family: 'Geometos', sans-serif;
    font-size: 2.52rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.word.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add responsive styles for mobile */
@media (max-width: 768px) {
    .hero-text {
        bottom: 6%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
    }
    
    .text-animation {
        align-items: center;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        padding: 1.35rem;
        border-right: none;
        margin: 0 auto;
    }
    
    .text-animation:hover {
        transform: none;
    }
    
    .static-prefix {
        text-align: center;
    }
    
    .static-prefix::after {
        right: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .changing-words {
        text-align: center;
    }
    
    .word {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.62rem;
    }
    
    .word.active {
        transform: translateX(-50%);
    }
}

/* Estilo para o botão de portfólio nos dropdowns de serviços */
.portfolio-link-container {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.portfolio-link-btn {
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    font-family: 'Geometos', sans-serif;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-link-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.portfolio-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-link-btn:hover::before {
    width: 300px;
    height: 300px;
}

.portfolio-link-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.portfolio-link-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .portfolio-link-container {
        justify-content: center;
    }
}

/* Apply Outfit font to all paragraph elements for better readability */
p, .service-description p, .dropdown-details .step-content p, 
.contact-info-item p, .form-field input, .form-field textarea, 
.footer-tagline, .footer-nav-section li, .gallery-overlay p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

/* Modal de Imagem */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.modal.open,
.modal.active {
    display: block;
}

.modal-content {
    position: relative;
    width: fit-content;
    min-width: 320px;
    max-width: 90%;
    margin: 40px auto;
    z-index: 1001;
    background-color: rgba(13, 13, 13, 0.95);
    padding: 40px;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
}

.modal-images-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.modal-image.loaded {
    opacity: 1;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px auto;
        padding: 20px;
        width: calc(100% - 40px);
    }
}

/* Estilização da Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #333333 #0D0D0D;
}

.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
    display: none;
}

.loading-indicator .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Store Promo Section */
.store-promo-section {
    padding: var(--space-xxxl) 0;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-promo-card {
    display: flex;
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    background-color: var(--black);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-left: 20px;
    margin-right: 20px;
}

.store-promo-content {
    flex: 1;
    padding: var(--space-xxxl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-subtitle {
    font-family: 'Geometos', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--white-70);
    margin-bottom: var(--space-sm);
}

.promo-title {
    font-family: 'Geometos', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.promo-description {
    font-size: 1.1rem;
    color: var(--white-80);
    max-width: 450px;
    margin-bottom: var(--space-xl);
}

.promo-button {
    background-color: #4A90E2; /* Blue color from image */
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: background-color var(--hover-transition);
    align-self: flex-start;
}

.promo-button:hover {
    background-color: #357ABD; /* Darker blue on hover */
}

.store-promo-image {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.store-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .store-promo-card {
        flex-direction: column;
    }
    .store-promo-content {
        padding: var(--space-xxl);
        text-align: center;
    }
    .promo-button {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .promo-title {
        font-size: 2.5rem;
    }
    .promo-description {
        font-size: 1rem;
    }
    .store-promo-content {
        padding: var(--space-xl);
    }
    .store-promo-card {
        margin-left: 20px;
        margin-right: 20px;
    }
}
   