/* ========================================
   CSS Variables (Cores da identidade MAC)
======================================== */
:root {
    /* Cores principais da MAC */
    --primary-color: #097d6d;      /* Verde/Teal */
    --secondary-color: #6e4020;    /* Marrom */
    --accent-color: #fff27d;       /* Amarelo */
    --light-color: #e6cfae;        /* Bege/Creme */
    
    /* Cores complementares */
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-warm: linear-gradient(135deg, var(--accent-color), var(--light-color));
    
    /* Fontes */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Bryndan Write', cursive;
    
    /* Tamanhos */
    --container-max-width: 1200px;
    --border-radius: 12px;
    --border-radius-small: 6px;
    --border-radius-large: 20px;
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Reset e Configurações Base
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   Loader
======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.logo-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.logo-loader i {
    font-size: 2.5rem;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   Container e Layout Base
======================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Botões
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 1.1rem;
}

/* ========================================
   Header e Navegação
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo i {
    font-size: 2rem;
}

.brand-text h1 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary-color); /* fallback color */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(9, 125, 109, 0.7)), url('../images/foto_mac_1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(9, 125, 109, 0.3), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-logo i {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.contact-item i {
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-size: 1.2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   About Section
======================================== */
.about {
    padding: 100px 0;
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-large);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ========================================
   Como Chegar Section (New Design)
======================================== */
.como-chegar {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a9b8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.como-chegar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave" patternUnits="userSpaceOnUse" width="100" height="20"><path d="M 0 20 Q 25 0 50 20 T 100 20 V 0 H 0 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave)"/></svg>') repeat;
    opacity: 0.1;
}

.journey-wrapper {
    position: relative;
    z-index: 2;
}

/* Transport Comparison */
.transport-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.transport-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.transport-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.transport-option.selected {
    background: rgba(255, 242, 125, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 242, 125, 0.3);
}

.option-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.transport-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.lancha-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.barco-icon {
    background: linear-gradient(135deg, #4834d4, #686de0);
}

.transport-title h3 {
    font-size: 24px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.transport-subtitle {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 300;
}

.transport-stats {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stat i {
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

.stat span {
    flex: 1;
    font-size: 13px;
    opacity: 0.9;
}

.stat strong {
    font-weight: 600;
    color: var(--accent-color);
}

.journey-btn {
    background: linear-gradient(135deg, var(--accent-color), #e6c14f);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.journey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.journey-btn i {
    transition: transform 0.3s ease;
}

.journey-btn:hover i {
    transform: scale(1.2);
}

/* VS Separator */
.vs-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.separator-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.separator-text {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Journey Simulator */
.journey-simulator {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.simulator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.simulator-header h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin: 0;
    font-weight: 600;
}

.current-selection {
    text-align: right;
}

.current-selection span {
    font-size: 14px;
    opacity: 0.7;
    display: block;
}

.current-selection strong {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Route Visualization */
.route-visualization {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 20px 0;
}

.location-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    position: relative;
}

.point-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.origin .point-marker {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
}

.destination .point-marker {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.point-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.point-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

.journey-path {
    flex: 1;
    margin: 0 40px;
    position: relative;
}

.path-line {
    position: relative;
    height: 4px;
    background: linear-gradient(to right, #ddd, var(--primary-color), #ddd);
    border-radius: 2px;
    overflow: visible;
}

.progress-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, var(--accent-color), #ff6b6b);
    border-radius: 2px;
    width: 0%;
    transition: width 0.5s ease;
}

.moving-vehicle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 5;
    transition: left 0.5s ease;
}

.path-details {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--primary-color);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.distance-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Journey Controls */
.journey-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.control-group {
    display: flex;
    gap: 10px;
}

.control-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.control-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.control-button span {
    font-size: 10px;
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.progress-info {
    text-align: right;
}

.journey-status {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 500;
}

.progress-percentage {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
}

/* Journey Timeline */
.journey-timeline {
    margin-bottom: 30px;
}

.journey-timeline h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(9, 125, 109, 0.2);
}

.timeline-content h5 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-content p {
    margin: 0;
    font-size: 12px;
    opacity: 0.7;
}

/* Journey Info */
.journey-info {
    margin-top: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.info-card h4 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.location-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255, 242, 125, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.location-link:hover {
    background: rgba(255, 242, 125, 0.3);
    transform: translateX(5px);
}

.coordinates {
    text-align: center;
    opacity: 0.7;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design para Como Chegar */
@media (max-width: 768px) {
    .transport-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-separator {
        transform: rotate(90deg);
        height: 60px;
    }
    
    .separator-line {
        width: 30px;
        height: 2px;
    }
    
    .route-visualization {
        flex-direction: column;
        gap: 20px;
    }
    
    .journey-path {
        margin: 20px 0;
        width: 100%;
        transform: rotate(90deg);
        height: 100px;
    }
    
    .moving-vehicle {
        top: 0%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    
    .journey-controls {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .timeline-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-item {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .timeline-dot {
        margin: 0;
        flex-shrink: 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Fim da seção Como Chegar - removido CSS antigo */

/* ========================================
   Services Section
======================================== */
.transport-selection-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    padding: 30px;
    box-shadow: var(--shadow-heavy);
    max-width: 90%;
    width: 800px;
}

.overlay-header {
    text-align: center;
    margin-bottom: 30px;
}

.overlay-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.overlay-header p {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.transport-cards-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.transport-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.transport-card.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.transport-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.transport-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--white);
}

.transport-card[data-transport="barco"] .transport-icon {
    background: var(--secondary-color);
}

.transport-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.transport-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
    width: 14px;
}

.select-transport-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    width: 100%;
    font-size: 0.9rem;
}

.transport-card[data-transport="barco"] .select-transport-btn {
    background: var(--secondary-color);
}

.select-transport-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-light);
}

/* Painel de controle da simulação */
.simulation-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 25;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 20px;
}

.simulation-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.simulation-status strong {
    color: var(--primary-color);
}

.simulation-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    font-size: 0.85rem;
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.control-btn span {
    font-size: 0.7rem;
    margin-left: 2px;
}

/* Painel de progresso */
.journey-progress-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
    padding: 40px 20px 20px;
    z-index: 20;
}

.progress-section {
    max-width: 1200px;
    margin: 0 auto 25px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-header span {
    font-size: 1rem;
    font-weight: 500;
}

.progress-header #progressPercent {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.progress-bar-container {
    position: relative;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.5s ease;
}

.estimated-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.journey-checkpoints {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
    flex-wrap: wrap;
}

.checkpoint {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.4;
    transition: var(--transition-normal);
    flex: 1;
    min-width: 100px;
}

.checkpoint.active {
    opacity: 1;
}

.checkpoint-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-bottom: 12px;
    transition: var(--transition-normal);
}

.checkpoint.active .checkpoint-dot {
    background: var(--accent-color);
    box-shadow: 0 0 12px var(--accent-color);
}

.checkpoint-info {
    text-align: center;
}

.checkpoint-info i {
    font-size: 1.1rem;
    margin-bottom: 6px;
    display: block;
}

.checkpoint-info span {
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Painel de informações rápidas */
.quick-info-panel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 25;
    max-width: 280px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 1rem;
}

.info-grid {
    display: grid;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.info-item i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.info-item span {
    flex: 1;
    color: var(--gray-medium);
    font-size: 0.85rem;
}

.info-item strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

.info-item a:hover {
    color: var(--secondary-color);
}

/* Estados de transporte */
.transport-barco .transport-icon-moving {
    background: var(--light-color);
    color: var(--secondary-color);
}

.transport-barco .transport-icon-moving i::before {
    content: "\f21a"; /* Ship icon */
}

/* Animações específicas */
.journey-active .fullscreen-map-container {
    animation: mapFocus 1s ease-out;
}

@keyframes mapFocus {
    from {
        transform: scale(0.98);
        opacity: 0.9;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   Services Section
======================================== */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ========================================
   Location Section
======================================== */
.location {
    padding: 100px 0;
    background: var(--gray-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-color);
}

.info-item:last-child {
    margin-bottom: 40px;
    border-bottom: none;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--gray-medium);
    line-height: 1.5;
}

.location-map {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.location-map iframe {
    border-radius: var(--border-radius-large);
}

/* ========================================
   Donation Section
======================================== */
.donation {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10,6 C8,4 4,4 4,8 C4,12 10,16 10,16 C10,16 16,12 16,8 C16,4 12,4 10,6 Z" fill="rgba(9,125,109,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.3;
}

.donation-content {
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 2;
}

.donation-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.donation-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.donation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 30px;
    color: white;
    box-shadow: 0 10px 20px rgba(9, 125, 109, 0.3);
}

.donation-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.donation-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.donation-card li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    color: var(--text-color);
    font-weight: 500;
}

.donation-card li i {
    color: var(--primary-color);
    font-size: 16px;
}

.donation-values {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.donation-values h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.value-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.value-btn {
    background: var(--light-gray);
    color: var(--primary-color);
    border: 2px solid transparent;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.value-btn:hover, .value-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 125, 109, 0.3);
}

.donation-form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    width: 100%;
}

.donation-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donation-form h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.amount-input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.amount-input-group input {
    padding: 20px 25px;
    border: 3px solid var(--light-gray);
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.amount-input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(9, 125, 109, 0.1), 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.amount-input-group input::placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
}

.pix-info {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pix-key label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.key-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.key-display span {
    flex: 1;
    font-family: monospace;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.qr-code-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.qr-code-header {
    margin-bottom: 30px;
}

.qr-code-header h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.donation-amount-display {
    color: var(--text-color);
    font-size: 16px;
}

.donation-amount-display strong {
    color: var(--primary-color);
    font-size: 24px;
}

.qr-code-display {
    margin-bottom: 30px;
}

.qr-code-display #qrcode {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.qr-instructions {
    color: var(--text-color);
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.qr-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.donation-thanks {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.thanks-content i {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.thanks-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.thanks-content p {
    opacity: 0.9;
    font-size: 16px;
    margin: 0;
}

.donation-impact {
    margin-top: 80px;
    text-align: center;
}

.donation-impact h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 600;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.impact-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.impact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.impact-label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
}

/* Responsive Design para Doações */
@media (max-width: 768px) {
    .donation-form-container {
        max-width: 100%;
    }
    
    .qr-actions {
        flex-direction: column;
    }
    
    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .impact-number {
        font-size: 36px;
    }
}

/* ========================================
   Contact Section
======================================== */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.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(9, 125, 109, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-quick {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: var(--border-radius-large);
    color: var(--white);
    text-align: center;
}

.contact-quick h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-quick p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    margin-bottom: 30px;
}

.whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 2rem;
    color: var(--accent-color);
}

.whatsapp-btn div {
    text-align: left;
}

.whatsapp-btn span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.whatsapp-btn strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.social-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icons i {
    font-size: 1.3rem;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ========================================
   Animações AOS Customizadas
======================================== */
[data-aos] {
    transition-duration: 0.8s;
}

/* ========================================
   Responsividade - Tablet
======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .transport-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vs-divider {
        display: none;
    }
    
    .transport-selection-overlay {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        max-width: none;
        width: auto;
        padding: 20px;
    }
    
    .simulation-panel {
        position: static;
        margin: 15px;
        justify-content: center;
    }
    
    .quick-info-panel {
        position: static;
        max-width: none;
        margin: 15px;
    }
    
    .journey-checkpoints {
        gap: 8px;
    }
    
    .checkpoint {
        min-width: 70px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Responsividade - Mobile
======================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .brand-text {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-contact {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 2.5rem;
    }
    
    .hero-logo i {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .contact-form,
    .location-info,
    .contact-quick {
        padding: 25px;
    }
    
    .values-grid {
        gap: 15px;
    }
    
    .value-item {
        padding: 15px;
    }
    
    .journey-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .journey-actions {
        justify-content: center;
    }
    
    .info-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        justify-content: flex-start;
        padding: 10px 15px;
    }
    
    .journey-checkpoints {
        justify-content: center;
        gap: 15px;
    }
    
    .checkpoint {
        min-width: 60px;
    }
    
    .checkpoint span {
        font-size: 0.7rem;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .transport-card {
        padding: 20px;
    }
    
    .transport-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .vs-divider {
        display: none;
    }
    
    .journey-controls {
        margin: 20px 15px 0;
        padding: 15px;
    }
    
    .quick-info-panel {
        margin: 15px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .fullscreen-map-container {
        height: 70vh;
    }
    
    .journey-header {
        padding: 40px 0 20px;
    }
    
    .transport-cards-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .transport-card {
        padding: 18px;
    }
    
    .transport-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .transport-selection-overlay {
        top: 5px;
        left: 5px;
        right: 5px;
        padding: 15px;
    }
    
    .overlay-header h2 {
        font-size: 1.5rem;
    }
    
    .overlay-header p {
        font-size: 0.95rem;
    }
    
    .simulation-panel {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .fullscreen-map-container {
        height: 60vh;
    }
}

/* ========================================
   Otimizações de Performance
======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-down {
        animation: none;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .header,
    .footer,
    .back-to-top,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
}

/* ========================================
   Founders Section
======================================== */
.founders {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #097d6d, #6e4020);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.founder-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 125, 109, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-card:hover .founder-overlay {
    opacity: 1;
}

.founder-overlay i {
    color: white;
    font-size: 2rem;
}

.founder-info h3 {
    color: #097d6d;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.founder-role {
    color: #6e4020;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.founder-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.founder-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.founder-contact a {
    width: 45px;
    height: 45px;
    background: #097d6d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-contact a:hover {
    background: #6e4020;
    transform: translateY(-3px);
}

/* ========================================
   Communities Section
======================================== */
.communities {
    padding: 100px 0;
    background: linear-gradient(135deg, #097d6d 0%, #0a6b5d 100%);
    color: white;
}

.communities .section-title,
.communities .section-subtitle {
    color: white;
}

.communities-map {
    margin: 60px 0;
    position: relative;
}

.map-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.amazon-map {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAwIiBoZWlnaHQ9IjQwMCIgdmlld0JveD0iMCAwIDgwMCA0MDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSI4MDAiIGhlaWdodD0iNDAwIiBmaWxsPSIjMGE2YjVkIiBvcGFjaXR5PSIwLjIiLz4KPHN2ZyB4PSIzMDAiIHk9IjEwMCIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPgo8cGF0aCBkPSJNMTAwIDUwIDIwMCA1MCAyMDAgMTUwIDEwMCAxNTB6IiBmaWxsPSIjNmU0MDIwIiBvcGFjaXR5PSIwLjQiLz4KPHN2ZyB4PSI0MCIgeT0iNDAiIHdpZHRoPSIxMjAiIGhlaWdodD0iNzAiPgo8cGF0aCBkPSJNMTAgMTAgMTUwIDEwIDE1MCA4MCA2MCA4MCA2MCA1MCA1MCA1MCA1MCA0MCAyMCA0MCAyMCAyMCAxMCAxMHoiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuMyIvPgo8L3N2Zz4KPC9zdmc+Cjwvc3ZnPgo=') center/cover;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.community-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: #fff22d;
    border-radius: 50%;
    border: 3px solid white;
    animation: pulse 2s infinite;
    position: relative;
}

.marker-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #097d6d;
    border-radius: 50%;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 242, 45, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 242, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 242, 45, 0); }
}

.marker-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 150px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.marker-info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.community-marker:hover .marker-info {
    opacity: 1;
    visibility: visible;
}

.marker-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.marker-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.communities-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    background: #fff22d;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #097d6d;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ========================================
   Church Partnership Section
======================================== */
.church-partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, #6e4020 0%, #5a3319 100%);
    color: white;
}

.church-partnership .section-title,
.church-partnership .section-subtitle {
    color: white;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.card-icon {
    background: #fff22d;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #6e4020;
    font-size: 2rem;
}

.info-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.benefits-list h4 {
    color: #fff22d;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li i {
    color: #fff22d;
    margin-right: 15px;
    font-size: 1.1rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-container h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.church-form .form-group {
    margin-bottom: 25px;
}

.church-form label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}

.church-form input,
.church-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.church-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.church-form input:focus,
.church-form select:focus {
    outline: none;
    border-color: #fff22d;
    background: rgba(255, 255, 255, 0.15);
}

.church-form select option {
    background: #6e4020;
    color: white;
}

.church-form .btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #fff22d 0%, #e6c75a 100%);
    color: #6e4020;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.church-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 242, 45, 0.3);
}

/* ========================================
   Gallery Section
======================================== */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 60px;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #097d6d;
    background: transparent;
    color: #097d6d;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #097d6d;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 125, 109, 0.9) 0%, rgba(110, 64, 32, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.overlay-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.view-btn {
    background: #fff22d;
    color: #097d6d;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.view-btn:hover {
    transform: scale(1.1);
    background: white;
}

/* ========================================
   Lightbox
======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    animation: lightboxAppear 0.3s ease;
}

@keyframes lightboxAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-image {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
}

.lightbox-info {
    padding: 30px;
    text-align: center;
}

.lightbox-title {
    color: #097d6d;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.lightbox-description {
    color: #6c757d;
    line-height: 1.6;
}

/* ========================================
   New Sections Responsive Design
======================================== */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .founder-card {
        padding: 30px;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .communities-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amazon-map {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .communities-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .church-form input,
    .church-form select {
        padding: 12px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .info-card {
        padding: 25px;
    }
}