/* Reset e variáveis globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C3B69;
    --secondary-color: #e7b142;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    border-bottom: 5px solid var(--secondary-color);
    padding: 10px 0;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    margin: 10px 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

nav a.active {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 59, 105, 0.8), rgba(44, 59, 105, 0.8)), 
                url('/images/onshore.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 .highlight {
    background-color: var(--secondary-color);
    padding: 0 10px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 59, 105, 0.8), rgba(44, 59, 105, 0.8)), 
                url('/images/onshore.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 .highlight {
    background-color: var(--secondary-color);
    padding: 0 10px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.service-card li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: var(--secondary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Portfolio Sections */
.portfolio-section {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.portfolio-section h2 {
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 15px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 20px;
    text-align: center;
}

.gallery-caption h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.gallery-caption p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Career Sections */
.career-section {
    margin-bottom: 50px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.benefit-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.benefit-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-text p {
    color: #666;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s, background 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
}

/* Forms */
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1a2540;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

/* Blue Sections */
.blue-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2540 100%);
    color: var(--white);
    padding: 80px 20px;
    margin: 60px 0;
}

.blue-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blue-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

hr {
    width: 85px;
    border-top: 3px solid var(--secondary-color);
    margin: 20px auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-wrapper {
        padding: 0 15px;
    }
    
    nav li {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        padding: 10px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }
    
    nav li {
        margin: 5px 8px;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .services {
        padding: 40px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .about {
        padding: 40px 15px;
    }
    
    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-section {
        padding: 25px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    nav a {
        font-size: 14px;
        padding: 8px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .page-header p {
        font-size: 16px;
    }
}