/*
Theme Name: JLCC Angola - Simplifying Your Operations in Angola
Theme URI: https://jlcc.ao/
Author: Claudio Rodrigues
Description: JLCC Angola - Simplifying Your Operations in Angola. Soluções completas em suprimentos, logística, facility management, RH, segurança e mais para suas operações em Angola.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jlccangola
*/

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

body.scrolled .header {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #425214, #5a6b1a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
body.scrolled .logo-text h1 {
    color: #425214;
    text-shadow: none;
}

.logo-text p {
    font-size: 0.7rem;
    color: #e0e0e0;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
body.scrolled .logo-text p {
    color: #666;
    text-shadow: none;
}

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

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
body.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    color: #c1b53d;
}

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

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

.contact-info {
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.contact-info .items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.contact-item i {
    color: #425214;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(66, 82, 20, 0.8), rgba(90, 107, 26, 0.8), rgba(66, 82, 20, 0.8)),
        url('assets/img/plataforma-petrolifera.jpg');
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: #c1b53d;
    top: 25%;
    left: 25%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #5a6b1a;
    bottom: 25%;
    right: 25%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: #c1b53d;
    top: 50%;
    right: 30%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #c1b53d;
    display: block;
}

.hero-title small {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #a8d4a8;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    color: #a8d4a8;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #d4e8d4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #c1b53d;
    color: #333;
}

.btn-primary:hover {
    background: #d4c850;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(193, 181, 61, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #425214;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #425214;
    border: 2px solid #425214;
}

.btn-outline:hover {
    background: #425214;
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #c1b53d;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #a8d4a8;
}

.scroll-indicator {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(8px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
    scroll-margin-top: 120px;
}

/* Centralizar títulos e subtítulos em todas as seções exceto 'Sobre Nós' */
section:not(.about) .section-header,
section:not(.about) h2,
section:not(.about) h3,
section:not(.about) p {
    text-align: center;
}

.section-header {
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f8f1 0%, #e8f5e8 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(66, 82, 20, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(193, 181, 61, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 40% 80%, rgba(66, 82, 20, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Sobre Nós - Alinhamento à Esquerda */
.about-text {
    text-align: left;
}

.section-header {
    text-align: left;
}

.section-header h2 {
    text-align: left;
}

.section-header h2::after {
    left: 0;
    right: auto;
}

.about-description p {
    text-align: left;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.highlight-card {
    width: 100%;
    text-align: left;
}

.highlight-content {
    text-align: left;
}

.about-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.about-stats .stat-card {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-stats .stat {
    background: #f1f3f5;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
}

.about-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #425214;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-vision {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-left: 5px solid #425214;
    transition: all 0.3s ease;
}

.about-vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-vision h4 {
    color: #425214;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.about-vision h4 i {
    margin-right: 1rem;
    color: #c1b53d;
    font-size: 2rem;
}

.about-vision p {
    color: #666;
    line-height: 1.7;
}

.stats-grid {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    min-width: 100px;
}

.stat-green { background: #425214; }
.stat-yellow { background: #c1b53d; color: #333; }
.stat-dark { background: #333; }

.stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #425214, #5a6b1a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(66, 82, 20, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(193, 181, 61, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.services .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}

.services .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #425214, #c1b53d);
    border-radius: 2px;
}

.services .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    padding: 2.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 82, 20, 0.02), rgba(193, 181, 61, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover,
.service-card.active {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #425214;
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-blue { 
    background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.service-green { 
    background: linear-gradient(135deg, #10b981, #047857); 
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.service-purple { 
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); 
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}
.service-orange { 
    background: linear-gradient(135deg, #f59e0b, #d97706); 
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}
.service-red { 
    background: linear-gradient(135deg, #ef4444, #dc2626); 
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}
.service-yellow { 
    background: linear-gradient(135deg, #eab308, #ca8a04); 
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.3);
}
.service-indigo { 
    background: linear-gradient(135deg, #6366f1, #4f46e5); 
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.service-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.service-detail {
    background: linear-gradient(135deg, #425214, #5a6b1a);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    position: sticky;
    top: 120px;
    box-shadow: 0 10px 30px rgba(66, 82, 20, 0.2);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.service-detail h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-detail p {
    color: #a8d4a8;
    font-size: 0.95rem;
}

#serviceDetailDescription {
    color: #d4e8d4;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #d4e8d4;
    font-size: 1rem;
}

.feature i {
    color: #c1b53d;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.service-detail .btn {
    background: rgba(193, 181, 61, 0.9);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-detail .btn:hover {
    background: #c1b53d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 181, 61, 0.3);
}

/* Clients Section */
.clients {
    background: #f8f9fa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.client-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 100px;
}

.client-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #425214;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
}

.testimonial p {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #425214;
}

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

.client-stat {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.client-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.client-stat:nth-child(1) .client-stat-icon {
    background: linear-gradient(135deg, #425214, #5a6b1a);
    color: white;
}

.client-stat:nth-child(2) .client-stat-icon {
    background: linear-gradient(135deg, #c1b53d, #d4c850);
    color: #333;
}

.client-stat:nth-child(3) .client-stat-icon {
    background: linear-gradient(135deg, #425214, #5a6b1a);
    color: white;
}

.client-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
}

.client-stat-label {
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #425214;
    box-shadow: 0 0 0 3px rgba(66, 82, 20, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.contact-info .items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.contact-info .items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Careers Section */
.careers {
    background: #f8f9fa;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #425214, #5a6b1a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.jobs-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.job-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #425214, #5a6b1a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.job-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.job-meta i {
    color: #425214;
    font-size: 0.8rem;
}

.job-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.careers-cta {
    background: linear-gradient(135deg, #425214, #5a6b1a);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.careers-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.careers-cta p {
    color: #d4e8d4;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand .logo-text h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.footer-brand .logo-text p {
    color: #999;
    font-size: 0.8rem;
}

.footer-section p {
    color: #ccc;
    margin: 1rem 0;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #425214;
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.footer-contact-item i {
    color: #5a6b1a;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail {
        position: static;
        top: auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .services .section-header h2 {
        font-size: 2rem;
    }
    
    .services .section-header p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .service-detail {
        padding: 1.5rem;
    }
    
    .service-detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-meta {
        flex-direction: column;
    }

    .about {
        padding: 4rem 0;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .about-vision {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .value-card,
    .service-card,
    .benefit-card,
    .job-card {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .careers-cta {
        padding: 2rem;
    }
}

/* Espaçamento entre seções */
.hero + .about {
    position: relative;
    z-index: 10;
    background: white;
    padding-top: 10rem;
}

/* Botão Ver Mais */
.about-actions {
    margin-top: 2rem;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background-color: #425214;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #5a6b1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(66, 82, 20, 0.2);
}

.btn-more i {
    margin-left: 0.5rem;
}

/* Galeria de Imagens */
.about-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-image-thumbnails {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .about-image-thumbnails {
        grid-template-columns: 1fr;
    }
}

/* Estilos para Modal de Galeria */
.modal-xl {
    max-width: 90%;
    margin: 1.75rem auto;
}

.gallery-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-main-image {
    width: 100%;
    max-height: 70vh;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    opacity: 1;
    border-color: #425214;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(66, 82, 20, 0.2);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-xl {
        max-width: 95%;
        margin: 1rem auto;
    }

    .gallery-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-thumbnail {
        width: 80px;
        height: 80px;
        margin: 0.5rem;
    }
}

/* Efeito de transição para troca de imagens */
.gallery-main-image img.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.gallery-main-image img.fade-in {
    opacity: 1;
    transform: scale(1);
}