/* Global Styles */
:root {
    --bg-color: #0F172A;
    --primary-color: #22D3EE;
    --secondary-color: #FACC15;
    --text-color: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.1);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.logo span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 1000;
    padding-top: 100px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: 2px solid var(--primary-color);
}

.btn.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

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

.btn.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: left;
    padding-top: var(--header-height);
    background: linear-gradient(to bottom right, rgba(34, 211, 238, 0.1), rgba(250, 204, 21, 0.05));
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
}

/* O Que Fazemos Section */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
}

/* Stack e Tecnologias Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tech-category h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-icon {
    background-color: rgba(34, 211, 238, 0.1);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tech-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Marcas e Tecnologias Section */
.brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.brand {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.brand:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    transform: scale(1.05);
}

.integration-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
}

/* Quem Procuramos Section */
.bullet-points {
    list-style-position: inside;
    margin: 40px 0;
    max-width: 800px;
}

.bullet-points li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    padding-left: 30px;
}

.bullet-points li::before {
    content: '•';
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Por Que Trabalhar Aqui Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.benefit:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit p {
    color: var(--text-muted);
}

/* Depoimentos Section */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(34, 211, 238, 0.1);
    font-family: serif;
}

.testimonial p {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: var(--primary-color);
}

.author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Jobs Section */
#vagas {
    padding: 100px 0;
}

.application-info {
    background-color: rgba(250, 204, 21, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.important-note {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.important-note strong {
    color: var(--secondary-color);
}

.important-note a {
    text-decoration: underline;
    font-weight: 600;
}

.jobs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.job-header {
    background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(250, 204, 21, 0.05));
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header h3 {
    margin-bottom: 0;
    color: var(--primary-color);
}

.job-type {
    background-color: var(--secondary-color);
    color: var(--bg-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.job-details {
    padding: 20px;
}

.job-details p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.job-requirements {
    list-style-type: none;
    margin-bottom: 25px;
}

.job-requirements li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-muted);
}

.job-requirements li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.job-card .btn {
    margin-top: 10px;
}

/* Special job card styling */
.job-card.special-card {
    background: linear-gradient(to bottom right, rgba(34, 211, 238, 0.15), rgba(250, 204, 21, 0.15));
    border: 1px dashed var(--secondary-color);
}

.job-card.special-card .job-header {
    background: linear-gradient(to right, rgba(250, 204, 21, 0.2), rgba(34, 211, 238, 0.1));
}

.job-card.special-card .job-header h3 {
    color: var(--secondary-color);
}

.job-card.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.15);
    border: 1px solid var(--secondary-color);
}

/* CTA Section */
#cta {
    text-align: center;
    background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(250, 204, 21, 0.05));
    padding: 120px 0;
}

#cta h2 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

#cta h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-logo h2::after {
    display: none;
}

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

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 50px 0;
}

.modal-content {
    background-color: var(--bg-color);
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input[type="file"] {
    padding: 10px;
    background-color: transparent;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 30px 0;
}

.success-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.success-message h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 80%;
    margin: 0 auto;
}

/* Accessibility focus styles */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .cards, .tech-grid, .benefits, .testimonials {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }
}
