/* Importação das fontes */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
    --primary-color: #1B365D;
    --secondary-color: #FFD700;
    --text-color: #1B365D;
    --light-bg: #F8F9FA;
    --gradient-primary: linear-gradient(135deg, #1B365D 0%, #0A1F3D 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    --font-size-hero: 4rem;
    --font-size-large: 3rem;
    --font-size-normal: 1.2rem;
    --font-primary: 'DM Sans', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6,
.logo span,
.quote-text,
.nav-links a {
    font-family: var(--font-primary);
}

.section-title h2,
.methodology-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.service-card h3,
.use-case-card h3,
.methodology-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

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

.logo span {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
}

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

.lang-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-separator {
    color: #000000;
    opacity: 0.5;
    font-size: 0.9rem;
}

.nav-links .cta-button {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.75) 0%, rgba(255, 165, 0, 0.75) 100%);
    border: 2px solid #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.nav-links .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.85) 0%, rgba(255, 165, 0, 0.85) 100%);
}

.nav-links .lang-pt,
.nav-links .lang-en,
.nav-links .lang-es,
.nav-links .lang-fr {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-links .lang-pt:hover,
.nav-links .lang-en:hover,
.nav-links .lang-es:hover,
.nav-links .lang-fr:hover {
    opacity: 0.7;
}

/* Hero Image Section */
.hero-image-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.75) 0%, rgba(255, 165, 0, 0.75) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.quote-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-align: left;
    color: #202020;
    max-width: 800px;
}

/* Services Section */
.services {
    padding: 6rem 0;
    scroll-margin-top: 80px;
}

.services-title {
    width: 100%;
    margin: 0;
    padding: 0 0 3rem 0;
}

.services-title h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
    letter-spacing: 0em;
    padding: 0.8rem 2rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    margin: 0;
}

.service-item {
    width: 80%;
    position: relative;
    padding-left: 5%;
}

.service-content {
    text-align: left;
    padding: 0 2rem;
    width: 100%;
    position: relative;
}

.service-content h3 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.service-content p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text-color);
    width: 100%;
    opacity: 0.8;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1B365D 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.use-cases .section-title {
    width: 100%;
    margin: 0;
    padding: 0 0 3rem 0;
}

.use-cases .section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    letter-spacing: 0em;
    padding: 0.8rem 2rem;
    text-align: left;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 2rem;
}

.use-case-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.use-case-card h3 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.use-case-card p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.use-case-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.75) 0%, rgba(255, 165, 0, 0.75) 100%);
    color: #000000;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.footer-info {
    max-width: 600px;
}

.footer-info .company-name {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.2;
}

.footer-info p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: #000000;
}

/* Clients Section */
.clients {
    padding: 8rem 0;
    background: var(--light-bg);
    position: relative;
}

.clients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.clients-text {
    position: sticky;
    top: 8rem;
}

.clients-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-color);
    max-width: 400px;
    padding-left: 5%;
}

.clients-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-item {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-color);
}

.client-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.client-item a:hover {
    opacity: 0.7;
}

.client-item:last-child {
    color: #666;
    font-size: 2rem;
}

/* Remover todos os estilos da metodologia */
.methodology-section,
.methodology-title,
.methodology-grid,
.methodology-card,
.methodology-phases {
    display: none;
}

/* Estilos responsivos */
@media (max-width: 968px) {
    .container {
        padding: 0 2.5%;
    }

    .use-cases {
        padding: 2rem 0 6rem 0;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 2%;
        padding: 0 2.5%;
    }

    .use-case-card {
        margin-bottom: 2%;
        padding: 10%;
        border-radius: 10px;
    }
    
    .use-case-card:last-child {
        margin-bottom: 8%;
    }

    .use-case-card h3 {
        font-size: 2rem;
        margin-bottom: 2%;
    }

    .use-case-card p {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .use-cases .section-title h2 {
        font-size: 2.25rem;
        padding: 0.4rem 1rem;
    }

    .use-case-stats {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }

    .services {
        padding: 4rem 0;
        scroll-margin-top: 80px;
    }

    .services-grid {
        gap: 4rem;
    }

    .service-item,
    .service-item:first-child,
    .service-item:nth-child(2) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }

    .service-item:first-child .service-content {
        padding-right: 0;
    }

    .service-content {
        max-width: 100%;
    }

    .service-image img {
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5%;
    }

    .footer-image {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        order: -1;
    }

    .footer-info {
        text-align: left;
        padding: 0;
    }

    .footer-info .company-name {
        text-align: left;
        font-size: 2.5rem;
    }

    .footer-info p {
        text-align: left;
        font-size: 1.2rem;
    }

    .clients-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .clients-text {
        position: relative;
        top: 0;
    }

    .clients-text h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    .clients-list {
        padding: 0 5%;
    }

    .client-item {
        font-size: 2rem;
    }

    .client-item:last-child {
        font-size: 1.8rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .lang-links {
        gap: 0.4rem;
    }

    .lang-separator {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.65rem;
    }
    
    .stat-label {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 2.5%;
    }

    .services {
        padding: 4rem 0;
        scroll-margin-top: 170px;
    }

    .use-cases {
        padding: 2rem 0 6rem 0;
    }

    .use-cases-grid {
        gap: 2%;
        padding: 0 2.5%;
    }

    .use-case-card {
        padding: 10%;
        margin-bottom: 2%;
    }

    .clients-list {
        padding: 0 5%;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-image {
        border-radius: 10px;
    }

    .footer-info .company-name {
        font-size: 2rem;
        text-align: left;
    }

    .footer-info p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }

    .clients {
        padding: 4rem 0;
    }

    .clients-text h2 {
        font-size: 1.8rem;
    }

    .clients-list {
        padding: 0;
        width: 100%;
    }

    .client-item {
        font-size: 1.8rem;
    }

    .client-item:last-child {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .lang-links {
        gap: 0.3rem;
    }

    .lang-separator {
        font-size: 0.8rem;
    }

    .use-case-stats {
        gap: 0.3rem;
        margin-top: 0.5rem;
    }

    .stat {
        gap: 0.3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }

    .use-case-card p {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .clients-content {
        width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .clients {
        padding: 6rem 0;
    }

    nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 968px) {
    /* Removido technologies-section */
}

@media screen and (max-width: 480px) {
    /* Removido technologies-section */
} 