@font-face {
    font-family: 'Conthrax';
    src: url('Conthrax-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('Fonte secundária/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('Fonte secundária/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('Fonte secundária/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('Fonte secundária/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --color-primary: #040328;
    --color-secondary: #014599;
    --color-accent: #0699B3;
    --color-success: #22D387;
    --color-light: #EBEBEB;
    --color-white: #FFFFFF;
    --color-text: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Conthrax', sans-serif;
    font-weight: 600;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(4, 3, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo img {
    height: 70px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 2px 10px rgba(6, 153, 179, 0.3));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: brightness(1.4) drop-shadow(0 4px 20px rgba(6, 153, 179, 0.5));
}

.logo-text {
    font-family: 'Conthrax', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(6, 153, 179, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    text-shadow: 0 2px 15px rgba(6, 153, 179, 0.5);
}

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

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-success));
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a0a3a 50%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('logos/simbolo gradient sem fundo.png') no-repeat center;
    background-size: 60%;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 153, 179, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 153, 179, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(6, 153, 179, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-light);
    font-size: 1rem;
}

/* Section Styles */
section {
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.accent-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: #ffffff;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.125rem;
    color: #666;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.company-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 153, 179, 0.2);
}

.company-card h3 {
    font-family: 'Conthrax', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.company-card p {
    color: #666;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-success) 100%);
    color: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 153, 179, 0.3);
    text-align: center;
}

.highlight-box h3 {
    font-family: 'Conthrax', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

.project-highlight {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-content h3 {
    font-family: 'Conthrax', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.project-location {
    color: var(--color-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.project-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--color-light);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.spec-value {
    font-family: 'Conthrax', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
}

.project-desc {
    color: var(--color-light);
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.about {
    background: #f8f9fa;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(6, 153, 179, 0.2);
    border-top-color: var(--color-accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-white);
    stroke-width: 2;
    fill: none;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--color-primary);
    position: relative;
    padding: 120px 20px 80px;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: url('logos/simbolo gradient sem fundo.png') no-repeat center;
    background-size: 50%;
    opacity: 0.03;
}

.services .section-title {
    color: var(--color-white);
}

.services .section-subtitle {
    color: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(6, 153, 179, 0.2);
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    color: var(--color-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--color-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 1;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-info > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-success));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
    stroke-width: 2;
    fill: none;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.contact-item p {
    color: #666;
}

.contact-item p a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-item p a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.contact-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(6, 153, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-logo p {
    color: var(--color-light);
    max-width: 300px;
}

.footer-links h4,
.footer-services h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-services li {
    color: var(--color-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        justify-content: center;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .nav-container {
        justify-content: center;
        gap: 1rem;
    }

    .logo {
        justify-content: center;
    }

    .about,
    .services,
    .contact {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 130px 15px 60px;
        min-height: auto;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .stat-card {
        padding: 1.2rem 0.8rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.5rem 15px;
    }

    .logo {
        width: 100%;
        justify-content: center;
        gap: 0.6rem;
    }

    .nav-menu {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .about,
    .services,
    .contact {
        padding: 80px 10px 60px;
    }

    .services-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 110px 10px 40px;
    }

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

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

    .stat-card {
        padding: 1rem;
    }

    .logo img {
        height: 30px;
    }

    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    .nav-container {
        gap: 0.4rem;
        padding: 0.4rem 10px;
    }

    .logo {
        gap: 0.4rem;
    }

    .about,
    .services,
    .contact {
        padding: 60px 8px 40px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .about-section {
        padding: 80px 15px 60px;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .project-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-box {
        padding: 2rem 1.5rem;
    }

    .project-highlight {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .spec-value {
        font-size: 1.5rem;
    }
}
