/* ==================== SERVICES DETAIL PAGE ==================== */
.services-detail-section {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 15px;
}

/* SP to RO Section */
.sp-ro-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.sp-ro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.sp-ro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.sp-ro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Coletas SP Section */
.coletas-sp-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Transport Types Section */
.transport-types-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.transport-card {
    padding: 2.5rem;
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.transport-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.transport-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Unidades e Abrangência Section */
.unidades-abrangencia-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.unidades-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.unidades-list {
    list-style: none;
    margin-bottom: 2rem;
}

.unidades-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 53, 128, 0.1);
}

.unidades-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.unidades-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
}

.unidades-map {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.unidades-map img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Tecnologia Section */
.tecnologia-section {
    padding: 5rem 0;
    background: var(--primary-color);
    text-align: center;
}

.tecnologia-text {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== ABOUT PAGE - NEW SECTIONS ==================== */
/* Nossa Essência Section */
.nossa-essencia-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.essencia-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.essencia-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.essencia-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Dona Jane Section */
.dona-jane-section {
    padding: 5rem 0;
    background: url('../jane.png') center center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.dona-jane-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 53, 128, 0.92);
}

.dona-jane-section .container {
    position: relative;
    z-index: 1;
}

.dona-jane-section .section-divider {
    background: var(--white);
}

.dona-jane-section .section-subtitle {
    color: var(--white);
}

.jane-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.jane-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jane-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.jane-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.jane-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.jane-photo img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

/* Guerreira Section */
.guerreira-section {
    padding: 4rem 0;
    background: var(--secondary-color);
    text-align: center;
}

.guerreira-section .section-title-center {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 0;
}

/* MVV Section */
.mvv-section {
    padding: 5rem 0;
    background: var(--white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.mvv-card {
    padding: 2.5rem;
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.mvv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* About CTA Section */
.about-cta-section {
    padding: 3rem 0;
    background: var(--white);
    text-align: center;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.service-detail-content {
    max-width: 800px;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.service-detail h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    color: var(--text-dark);
    text-align: center;
    padding: 5rem 0;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* ==================== CITIES PAGE ==================== */
.cities-section {
    padding: 5rem 0;
}

.cities-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.cities-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== BRAZIL MAP ==================== */
.brazil-map-section {
    margin: 0;
    padding: 5rem 0;
    background: linear-gradient(135deg, #001a3d 0%, #003580 50%, #001a3d 100%);
    position: relative;
    overflow: hidden;
}

.brazil-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.brazil-map-section .container {
    position: relative;
    z-index: 1;
}

.map-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

#map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.simple-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-radius: 20px;
    border: 3px solid rgba(0, 53, 128, 0.1);
}

.map-region {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.map-region:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.map-region.north {
    grid-column: 2 / 4;
    grid-row: 1;
}

.map-region.northwest {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.map-region.centerwest {
    grid-column: 2;
    grid-row: 2 / 4;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.map-region.northeast {
    grid-column: 3;
    grid-row: 2;
}

.map-region.southeast {
    grid-column: 2 / 4;
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.map-region.south {
    grid-column: 2 / 3;
    grid-row: 4;
}

.state-label {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.state-label.active {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.state-label.active:hover {
    background: var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.state-label.partial {
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
}

.state-label.partial:hover {
    background: #0070FF;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.state-label.inactive {
    background: #E8E8E8;
    color: var(--text-light);
}

.state-label.inactive:hover {
    background: #D8D8D8;
}

.state-code {
    font-size: 1.3rem;
    font-weight: 800;
    display: block;
}

.region-name {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.region-states {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-legend {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    align-self: start;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-height: 650px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.map-legend::-webkit-scrollbar {
    width: 6px;
}

.map-legend::-webkit-scrollbar-track {
    background: rgba(0, 53, 128, 0.05);
    border-radius: 10px;
}

.map-legend::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.map-legend::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.map-legend h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.legend-color {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 3px solid rgba(0, 53, 128, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legend-color.active {
    background: var(--primary-color);
}

.legend-color.partial {
    background: var(--accent-color);
}

.legend-color.inactive {
    background: #90C695;
}

.map-units {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 53, 128, 0.1);
}

.map-units h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.units-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.units-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.35rem;
    border-radius: 6px;
    transition: var(--transition);
}

.units-list li:hover {
    background: rgba(0, 53, 128, 0.05);
    transform: translateX(5px);
}

.unit-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.units-list li strong {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.map-cta {
    text-align: center;
    margin-top: 3rem;
}

.map-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.map-cta .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Map Tooltip */
.map-tooltip {
    position: fixed;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coverage-list {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 53, 128, 0.1);
}

.coverage-list h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.coverage-list ul {
    list-style: none;
    padding: 0;
}

.coverage-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.coverage-list li strong {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.3rem;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Unit Containers */
.unit-container {
    margin-bottom: 4rem;
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.unit-container:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.unit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.unit-reverse .unit-content {
    direction: rtl;
}

.unit-reverse .unit-info {
    direction: ltr;
}

.unit-info {
    padding: 3rem;
}

.unit-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.unit-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.unit-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.unit-coverage {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.unit-coverage h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.unit-coverage p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.unit-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.cities-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--secondary-color);
    border-radius: 20px;
}

.cities-cta h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cities-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ==================== CAREERS PAGE ==================== */
.careers-section {
    padding: 5rem 0;
}

.careers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.careers-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.benefit-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

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

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== FORMS ==================== */
.careers-form-section,
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
}

.careers-form-section h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.careers-form,
.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: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(0, 53, 128, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 53, 128, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==================== ABOUT CONTENT PAGE ==================== */
.about-content-section {
    padding: 5rem 0;
}

.about-story {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-story h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-story p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--secondary-color);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.values-section {
    margin: 5rem 0;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.mission-item {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
}

.mission-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mission-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 5rem 0;
}

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

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

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== TRACKING PAGE ==================== */
.tracking-section {
    padding: 5rem 0;
}

.tracking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tracking-form-container {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
}

.tracking-form-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tracking-form-container p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.tracking-form {
    max-width: 500px;
    margin: 0 auto;
}

.tracking-result {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.tracking-result h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.tracking-timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 53, 128, 0.2);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid rgba(0, 53, 128, 0.3);
}

.timeline-item.completed .timeline-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.timeline-item.active .timeline-marker {
    background: var(--accent-color);
    border-color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 86, 210, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 86, 210, 0);
    }
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.tracking-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--secondary-color);
}

.tracking-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tracking-info ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.tracking-info ol li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.tracking-help {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.tracking-help h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.tracking-help p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

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

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

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

    .about-grid,
    .contact-grid,
    .mission-section,
    .sp-ro-grid,
    .transport-grid,
    .unidades-grid,
    .essencia-grid,
    .mvv-grid,
    .jane-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jane-photo img {
        max-width: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    /* Units responsive */
    .unit-content {
        grid-template-columns: 1fr;
    }

    .unit-reverse .unit-content {
        direction: ltr;
    }

    .unit-image {
        min-height: 300px;
        order: -1;
    }

    .unit-info {
        padding: 2rem;
    }

    .unit-title {
        font-size: 1.6rem;
    }

    /* Map responsive */
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-legend {
        order: -1;
    }

    .simple-map {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 0.8rem;
    }

    .map-region.north {
        grid-column: 1 / 3;
    }

    .map-region.northwest {
        grid-column: 1;
    }

    .map-region.centerwest {
        grid-column: 2;
        grid-row: 2 / 4;
    }

    .map-region.northeast {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .map-region.southeast {
        grid-column: 1 / 3;
        grid-row: 4;
        grid-template-columns: repeat(2, 1fr);
    }

    .map-region.south {
        grid-column: 1 / 3;
        grid-row: 5;
    }

    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .brazil-map-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

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

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

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

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

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Units mobile */
    .unit-image {
        min-height: 250px;
    }

    .unit-info {
        padding: 1.5rem;
    }

    .unit-title {
        font-size: 1.4rem;
    }

    .unit-description {
        font-size: 1rem;
    }

    .unit-coverage {
        padding: 1rem;
    }

    .unit-coverage h4 {
        font-size: 1rem;
    }

    .unit-coverage p {
        font-size: 0.9rem;
    }

    .unit-container {
        margin-bottom: 2.5rem;
    }

    /* Map mobile */
    .map-title {
        font-size: 1.5rem;
    }

    .simple-map {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.5rem;
    }

    .map-region.north,
    .map-region.northwest,
    .map-region.centerwest,
    .map-region.northeast,
    .map-region.southeast,
    .map-region.south {
        grid-column: 1;
        grid-row: auto;
    }

    .map-region.southeast {
        grid-template-columns: 1fr;
    }

    .map-region {
        padding: 1rem;
    }

    .state-label {
        padding: 0.8rem;
        min-height: 50px;
    }

    .state-code {
        font-size: 1.1rem;
    }

    .region-name {
        font-size: 1rem;
    }

    .region-states {
        font-size: 0.75rem;
    }

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

    .stat-box {
        padding: 1.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

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

    .brazil-map-section {
        padding: 1.5rem;
    }

    .map-legend {
        padding: 1.5rem;
    }

    .legend-item {
        font-size: 0.9rem;
    }

    .legend-color {
        width: 25px;
        height: 25px;
    }

    .coverage-list h5 {
        font-size: 1rem;
    }

    .coverage-list li {
        font-size: 0.85rem;
    }
}
