/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary: #0c1b33;
    --secondary: #1a3658;
    --accent: #ef5350;
    --accent-light: #ff8a80;
    --accent-dark: #d32f2f;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border: #e2e8f0;
    --muted-foreground: #64748b;
    --warning: #ffa726;
    --success: #66bb6a;
}

/* ===== HERO MODERNO COMPLETO ===== */
.hero-moderno {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px; /* ESPAÇO GENEROSO: 140px top, 100px bottom */
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

/* Background Animado */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 65%;
    right: 12%;
    animation-delay: 5s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 10s;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(239, 83, 80, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 83, 80, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(25px, 25px) rotate(90deg);
    }
    50% {
        transform: translate(0, 50px) rotate(180deg);
    }
    75% {
        transform: translate(-25px, 25px) rotate(270deg);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Ícones Flutuantes */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.6rem;
    animation: floatIcon 8s ease-in-out infinite;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.float-icon:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 32%; right: 18%; animation-delay: 1.5s; }
.float-icon:nth-child(3) { top: 68%; left: 18%; animation-delay: 3s; }
.float-icon:nth-child(4) { top: 58%; right: 12%; animation-delay: 4.5s; }
.float-icon:nth-child(5) { top: 42%; left: 8%; animation-delay: 6s; }
.float-icon:nth-child(6) { top: 52%; right: 8%; animation-delay: 7.5s; }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) rotate(5deg) scale(1.08);
        opacity: 1;
    }
}

/* Conteúdo Principal */
.hero-main-content {
    text-align: center;
    color: var(--white);
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 60px 0 80px;
}

/* Título */
.hero-main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 35px;
    animation: slideUp 0.8s ease-out 0.2s both;
    text-align: center;
    padding: 0 30px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.title-part {
    display: block;
    opacity: 0.95;
}

.title-accent {
    display: block;
    color: var(--accent);
    position: relative;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 12px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
    border-radius: 6px;
    z-index: -1;
}

/* Descrição */
.hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: slideUp 0.8s ease-out 0.4s both;
    text-align: center;
    padding: 0 40px;
    color: var(--white);
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-description strong {
    color: var(--accent-light);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-light), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botões CTA */
.hero-actions-modern {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.6s both;
    width: 100%;
    padding: 0 30px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid;
    font-size: 1.15rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.primary-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 35px rgba(239, 83, 80, 0.4);
}

.primary-cta:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(239, 83, 80, 0.6);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

/* Animações */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVIDADE MOBILE ===== */
@media (max-width: 768px) {
    .hero-moderno {
        padding: 120px 0 80px; /* MOBILE: 120px top, 80px bottom */
        min-height: auto;
    }
    
    .hero-container {
        min-height: auto;
        padding: 0 15px;
    }
    
    .hero-main-content {
        min-height: auto;
        padding: 50px 0 60px; /* MOBILE: 50px top, 60px bottom */
        justify-content: flex-start;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
        padding: 0 20px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 40px;
        padding: 0 25px;
        line-height: 1.6;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .float-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .float-icon:nth-child(1) { top: 20%; left: 10%; }
    .float-icon:nth-child(2) { top: 30%; right: 10%; }
    .float-icon:nth-child(3) { top: 70%; left: 10%; }
    .float-icon:nth-child(4) { top: 60%; right: 10%; }
    .float-icon:nth-child(5) { top: 40%; left: 8%; }
    .float-icon:nth-child(6) { top: 50%; right: 8%; }
    
    .circle-1 {
        width: 200px;
        height: 200px;
        top: 18%;
        left: 5%;
    }
    
    .circle-2 {
        width: 150px;
        height: 150px;
        top: 65%;
        right: 5%;
    }
    
    .circle-3 {
        width: 250px;
        height: 250px;
        bottom: 12%;
        left: 50%;
    }
}

@media (max-width: 480px) {
    .hero-moderno {
        padding: 100px 0 60px; /* MOBILE PEQUENO: 100px top, 60px bottom */
    }
    
    .hero-main-content {
        padding: 40px 0 50px;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
        padding: 0 20px;
    }
    
    .hero-actions-modern {
        gap: 15px;
        padding: 0 15px;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    
    .cta-btn {
        padding: 16px 25px;
        font-size: 1rem;
        max-width: 280px;
    }
    
    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .circle-1 {
        width: 180px;
        height: 180px;
        top: 20%;
    }
    
    .circle-2 {
        width: 120px;
        height: 120px;
        top: 68%;
    }
    
    .circle-3 {
        width: 220px;
        height: 220px;
        bottom: 15%;
    }
}

/* ===== MODALIDADES DE TRANSPORTE ===== */
.modalidades-transporte {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.section-description {
    font-size: 1.3rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.modalidade-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modalidade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 83, 80, 0.05), transparent);
    transition: left 0.6s ease;
}

.modalidade-card:hover::before {
    left: 100%;
}

.modalidade-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.1);
}

.modalidade-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(239, 83, 80, 0.3);
}

.modalidade-card:hover .modalidade-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(239, 83, 80, 0.4);
}

.modalidade-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.modalidade-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

.modalidade-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 2;
}

.modalidade-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.modalidade-features i {
    color: var(--accent);
    font-size: 0.9rem;
    width: 20px;
}

.modalidade-cobertura {
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.cobertura-tag {
    display: inline-block;
    background: rgba(239, 83, 80, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(239, 83, 80, 0.2);
}

.modalidade-card:hover .cobertura-tag {
    background: rgba(239, 83, 80, 0.2);
    transform: scale(1.08);
    border-color: rgba(239, 83, 80, 0.3);
}

/* ===== COBERTURA INTERATIVA COMPLETA ===== */
.cobertura-interativa {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
}

.cobertura-header {
    text-align: center;
    margin-bottom: 80px;
}

.cobertura-header .section-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cobertura-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.mapa-container {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.mapa-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.mocambique-map-interativo {
    width: 100%;
    height: 500px;
    background: var(--light-bg);
    border-radius: 15px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mapa-placeholder {
    text-align: center;
    color: var(--muted-foreground);
    padding: 40px;
}

.mapa-placeholder i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.5;
}

.mapa-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.mapa-legenda {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    border: 1px solid var(--border);
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.legenda-color {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.legenda-color.alta { background: var(--accent); }
.legenda-color.media { background: var(--warning); }
.legenda-color.baixa { background: var(--success); }

/* Informações da Província */
.provincia-info {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    height: fit-content;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.provincia-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.info-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 30px;
    text-align: center;
}

.info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.provincia-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.info-content {
    padding: 30px;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.info-stat {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.info-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.info-stat .label {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

.info-details h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px;
}

.details-list {
    list-style: none;
    margin-bottom: 25px;
}

.details-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--muted-foreground);
}

.details-list i {
    color: var(--accent);
    font-size: 0.9rem;
}

.info-actions {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 5px 15px rgba(239, 83, 80, 0.3);
}

.btn-primary:hover {
    background: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 83, 80, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    flex: 1;
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.info-placeholder {
    text-align: center;
    padding: 60px 40px;
    color: var(--muted-foreground);
}

.info-placeholder i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 25px;
    opacity: 0.5;
}

.info-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-placeholder p {
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ===== CENTROS LOGÍSTICOS ===== */
.centros-logisticos {
    padding: 100px 0;
    background: var(--white);
}

.centros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.centro-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.centro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 83, 80, 0.03), transparent);
    transition: left 0.6s ease;
}

.centro-card:hover::before {
    left: 100%;
}

.centro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.centro-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.centro-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.centro-card:hover .centro-icon {
    transform: scale(1.1);
}

.centro-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.centro-tag {
    background: rgba(239, 83, 80, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.centro-card:hover .centro-tag {
    background: rgba(239, 83, 80, 0.2);
    transform: scale(1.05);
}

.centro-card p {
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 20px;
}

.centro-stats {
    display: flex;
    gap: 20px;
}

.centro-stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* ===== PRAZOS E ROTAS ===== */
.prazos-rotas {
    padding: 100px 0;
    background: var(--light-bg);
}

.rotas-container {
    margin-top: 60px;
}

.rotas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.rota-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rota-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 83, 80, 0.02), transparent);
    transition: left 0.6s ease;
}

.rota-card:hover::before {
    left: 100%;
}

.rota-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rota-cidades {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary);
}

.rota-cidades i {
    color: var(--accent);
}

.rota-tempo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted-foreground);
}

.rota-modalidade {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.rotas-observacoes {
    max-width: 600px;
    margin: 0 auto;
}

.observacao-card {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.observacao-card i {
    font-size: 2.5rem;
    color: #ffa726;
    margin-bottom: 15px;
}

.observacao-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.observacao-card p {
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* ===== CTA ATUAÇÃO ===== */
.cta-atuacao {
    background: linear-gradient(135deg, var(--primary) 0%, #1a0b1a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-atuacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,0 1000,1000" fill="rgba(239,83,80,0.05)"/></svg>');
    background-size: cover;
}

.cta-content-atuacao {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title-atuacao {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description-atuacao {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions-atuacao {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section img.footer-logo {
    margin-bottom: 20px;
    max-width: 180px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-line i {
    color: var(--accent);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 25px;
}

/* ===== VERSÃO MOBILE ===== */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* HERO MOBILE */
    .atuacao-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-content-atuacao {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title-atuacao {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .hero-description-atuacao {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .hero-stats-atuacao {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item-atuacao {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-visual-atuacao {
        height: 400px;
        margin-top: 20px;
    }
    
    .ponto-estrategico {
        width: 16px;
        height: 16px;
    }
    
    .ponto-estrategico::after {
        font-size: 0.7rem;
        top: -35px;
        padding: 4px 8px;
    }
    
    /* MODALIDADES MOBILE */
    .modalidades-transporte {
        padding: 80px 20px;
    }
    
    .section-header-center {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .modalidades-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .modalidade-card {
        padding: 30px 25px;
    }
    
    .modalidade-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    /* COBERTURA INTERATIVA MOBILE */
    .cobertura-interativa {
        padding: 80px 20px;
    }
    
    .cobertura-header .section-title {
        font-size: 2.5rem;
    }
    
    .cobertura-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .mapa-container {
        padding: 25px 20px;
    }
    
    .mocambique-map-interativo {
        height: 400px;
    }
    
    .mapa-legenda {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 20px;
    }
    
    .provincia-info {
        position: relative;
        top: 0;
    }
    
    .info-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-actions {
        flex-direction: column;
    }
    
    /* CENTROS LOGÍSTICOS MOBILE */
    .centros-logisticos {
        padding: 80px 20px;
    }
    
    .centros-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .centro-card {
        padding: 25px 20px;
    }
    
    .centro-header {
        gap: 12px;
    }
    
    .centro-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* PRAZOS E ROTAS MOBILE */
    .prazos-rotas {
        padding: 80px 20px;
    }
    
    .rotas-container {
        margin-top: 40px;
    }
    
    .rotas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .rota-card {
        padding: 20px;
    }
    
    .rotas-observacoes {
        padding: 0 10px;
    }
    
    .observacao-card {
        padding: 20px;
    }
    
    /* CTA MOBILE */
    .cta-atuacao {
        padding: 60px 20px;
    }
    
    .cta-title-atuacao {
        font-size: 2.2rem;
    }
    
    .cta-description-atuacao {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-actions-atuacao {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 25px;
    }
    
    /* FOOTER MOBILE */
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-line {
        justify-content: center;
    }
}

/* ===== MOBILE PEQUENO (até 480px) ===== */
@media (max-width: 480px) {
    .atuacao-hero {
        padding: 80px 15px 40px;
    }
    
    .hero-title-atuacao {
        font-size: 2.2rem;
    }
    
    .hero-description-atuacao {
        font-size: 1rem;
        padding: 15px;
    }
    
    .hero-stats-atuacao {
        gap: 15px;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .cta-title-atuacao {
        font-size: 1.8rem;
    }
    
    .cta-description-atuacao {
        font-size: 1rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}