/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #202124;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* 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: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #5f6368;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a73e8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Q5LtuKdUwVFF.jpg') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.8) 0%, rgba(66, 133, 244, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1a73e8;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #202124;
}

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

/* Jobs Section */
.jobs-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

/* Mobile Carousel for Jobs */
@media (max-width: 768px) {
    .jobs-carousel-container {
        position: relative;
    }
    
    .jobs-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 0 20px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer 10+ */
        scroll-behavior: smooth;
    }
    
    .jobs-grid::-webkit-scrollbar {
        display: none; /* WebKit */
    }
    
    .job-card {
        flex: 0 0 320px; /* Mais largo: 280px -> 320px */
        scroll-snap-align: center;
        margin-bottom: 0;
        padding: 20px; /* Reduzir padding: 30px -> 20px */
        min-height: auto; /* Remover altura mínima fixa */
    }
    
    /* Ajustar conteúdo dos cards para mobile */
    .job-card .job-title {
        font-size: 1.2rem; /* Reduzir: 1.4rem -> 1.2rem */
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .job-card .job-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Limitar a 3 linhas */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .job-card .job-requirements {
        margin-bottom: 15px;
    }
    
    .job-card .job-requirements h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .job-card .job-requirements ul {
        margin-bottom: 15px;
    }
    
    .job-card .job-requirements li {
        font-size: 0.8rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .job-card .job-benefits {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .job-card .benefit-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    /* Carousel Indicators */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 25px;
        padding: 0 20px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e0e0e0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .indicator.active {
        background: #1a73e8;
        transform: scale(1.2);
    }
    
    /* Swipe Hint */
    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        color: #5f6368;
        font-size: 0.85rem;
        animation: fadeInOut 3s ease-in-out infinite;
    }
    
    .swipe-hint i {
        color: #1a73e8;
        animation: swipeAnimation 2s ease-in-out infinite;
    }
}

/* Desktop - hide mobile elements */
@media (min-width: 769px) {
    .carousel-indicators,
    .swipe-hint {
        display: none;
    }
}

/* Animations */
@keyframes swipeAnimation {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.job-salary {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.job-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #202124;
}

.job-location {
    color: #5f6368;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-description {
    color: #5f6368;
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-requirements h4 {
    color: #202124;
    margin-bottom: 10px;
    font-size: 1rem;
}

.job-requirements ul {
    list-style: none;
    margin-bottom: 20px;
}

.job-requirements li {
    color: #5f6368;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: bold;
}

.job-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-tag {
    background: #f1f3f4;
    color: #5f6368;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Office Gallery */
.office-gallery {
    padding: 100px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Application Section */
.application-section {
    padding: 80px 0; /* Reduzir: 100px -> 80px */
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem; /* Reduzir: 4rem -> 3rem */
}

.application-form {
    background: white;
    border-radius: 20px;
    padding: 35px; /* Reduzir: 40px -> 35px */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px; /* Reduzir: 40px -> 35px */
    margin-bottom: 35px; /* Reduzir: 40px -> 35px */
}

.form-section {
    background: #f8f9fa;
    padding: 25px; /* Reduzir: 30px -> 25px */
    border-radius: 16px;
}

.form-section.full-width {
    grid-column: 1 / -1;
    background: transparent;
    padding: 0;
}

.form-section-title {
    font-size: 1.2rem; /* Reduzir: 1.3rem -> 1.2rem */
    font-weight: 600;
    margin-bottom: 20px; /* Reduzir: 25px -> 20px */
    color: #202124;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 18px; /* Reduzir: 20px -> 18px */
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px; /* Reduzir: 25px -> 20px */
}

/* Mobile Form Adjustments */
@media (max-width: 768px) {
    .application-section {
        padding: 60px 0; /* Reduzir para mobile */
    }
    
    .application-form {
        padding: 25px; /* Reduzir: 35px -> 25px */
        border-radius: 16px;
        margin: 0 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .form-section {
        padding: 20px;
        border-radius: 12px;
    }
    
    .form-section-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    /* Ajustar file uploads no mobile */
    .file-upload-area {
        padding: 20px; /* Reduzir: 30px -> 20px */
    }
    
    .file-upload-area i {
        font-size: 1.5rem; /* Reduzir: 2rem -> 1.5rem */
    }
    
    /* Ajustar termos no mobile */
    .terms-section {
        padding: 20px; /* Reduzir: 30px -> 20px */
        border-radius: 12px;
    }
    
    .checkbox-group {
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .checkbox-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Ajustar botão de submit */
    .submit-button {
        padding: 16px 35px; /* Reduzir: 18px 40px -> 16px 35px */
        font-size: 1rem; /* Reduzir: 1.1rem -> 1rem */
    }
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #202124;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-help {
    font-size: 0.9rem;
    color: #5f6368;
    margin-top: 5px;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
}

.file-upload-area:hover {
    border-color: #1a73e8;
    background: #f8f9ff;
}

.file-upload-area i {
    font-size: 2rem;
    color: #1a73e8;
    margin-bottom: 10px;
    display: block;
}

.file-upload-area span {
    display: block;
    color: #202124;
    font-weight: 500;
    margin-bottom: 5px;
}

.file-upload-area small {
    color: #5f6368;
    font-size: 0.9rem;
}

/* Document Info */
.document-info {
    background: #e8f0fe;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.document-info h4 {
    color: #1a73e8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.document-info ul {
    list-style: none;
}

.document-info li {
    color: #5f6368;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.document-info li::before {
    content: '📄';
    position: absolute;
    left: 0;
}

/* Terms Section */
.terms-section {
    background: #fff3e0;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #ff9800;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label {
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-text {
    color: #5f6368;
}

.checkbox-text strong {
    color: #d93025;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-button {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #202124;
}

.faq-icon {
    color: #1a73e8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #5f6368;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #202124;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #9aa0a6;
    line-height: 1.6;
    max-width: 400px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: #9aa0a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4285f4;
}

.contact-info p {
    color: #9aa0a6;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #4285f4;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #3c4043;
    padding-top: 20px;
    text-align: center;
    color: #9aa0a6;
}

.footer-bottom a {
    color: #4285f4;
    text-decoration: none;
}

/* Messages */
.message-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
}

.message {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #34a853;
    animation: slideInRight 0.3s ease-out;
}

.message.error {
    border-left-color: #ea4335;
}

.message.success {
    border-left-color: #34a853;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav {
        display: none;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .application-form {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


/* Mobile Header and Hero Adjustments */
@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 12px 0;
    }
    
    .nav-wrapper {
        justify-content: center; /* Centralizar logo no mobile */
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px; /* Reduzir um pouco no mobile */
    }
    
    .nav {
        display: none; /* Esconder menu no mobile */
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        padding-top: 80px; /* Adicionar padding-top para compensar header fixo */
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin: 2rem 0 !important;
    }
    
    .stat-item {
        padding: 0 15px;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
    }
    
    .cta-button {
        padding: 16px 32px !important;
        font-size: 1rem !important;
        margin-top: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .cta-button {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
    }
}

