/* ecoguardians-specific.css */

/* ===== VARIÁVEIS ESPECÍFICAS ECOGUARDIANS ===== */
:root {
    --eco-green: #228B22;
    --eco-green-light: #32CD32;
    --eco-green-dark: #006400;
    --eco-blue: #1E90FF;
    --eco-blue-dark: #0066CC;
    --eco-fire: #FF4500;
    --eco-fire-light: #FF6B35;
    --eco-gold: #FFD700;
    --eco-earth: #8B4513;
    --eco-gradient: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
    --eco-gradient-fire: linear-gradient(135deg, var(--eco-fire) 0%, var(--eco-gold) 100%);
}

/* ===== BODY ESPECÍFICO ===== */
.ecoguardians-detail {
    background-color: #f8fdf8;
}

/* ===== HERO SECTION ===== */
.ecoguardians-hero {
    background: var(--eco-gradient);
    position: relative;
    overflow: hidden;
}

.ecoguardians-hero::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 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    animation: floatBg 20s linear infinite;
}

@keyframes floatBg {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 10s infinite ease-in-out;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.eco-title {
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.eco-mission {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.eco-mission .mission-icon {
    font-size: 2rem;
}

.eco-mission p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== AMAZON MOCKUP ===== */
.amazon-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-element.tree {
    top: 10%;
    left: 10%;
}

.floating-element.fire {
    bottom: 20%;
    left: 5%;
}

.floating-element.satellite {
    top: 5%;
    right: 15%;
}

.floating-element.earth {
    bottom: 15%;
    right: 10%;
}

.dashboard-preview {
    width: 350px;
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(90deg, var(--eco-green-dark), var(--eco-blue-dark));
}

.preview-logo {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.preview-nav {
    display: flex;
    gap: 0.5rem;
}

.preview-nav span {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
}

.preview-content {
    padding: 1.5rem;
}

.preview-map {
    position: relative;
    height: 200px;
    background: linear-gradient(180deg, #0a0a1a, #1a1a3a);
    border-radius: 8px;
    overflow: hidden;
}

.amazon-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 100px;
    background: rgba(34, 139, 34, 0.4);
    border: 2px solid var(--eco-green);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.fire-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--eco-fire);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--eco-fire), 0 0 20px var(--eco-fire-light);
}

.fire-dot.dot-1 {
    top: 35%;
    left: 40%;
}

.fire-dot.dot-2 {
    top: 50%;
    left: 55%;
}

.fire-dot.dot-3 {
    top: 60%;
    left: 45%;
}

/* ===== STATS SECTION ===== */
.eco-stats {
    background: linear-gradient(180deg, #f0fff0, #f8fdf8);
}

.eco-stats .stats-grid {
    grid-template-columns: repeat(6, 1fr);
}

.eco-stats .stat-card {
    background: white;
    border-left: 4px solid var(--eco-green);
    transition: all 0.3s ease;
}

.eco-stats .stat-card:hover {
    border-left-color: var(--eco-blue);
    transform: translateY(-5px);
}

.eco-stats .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.eco-stats .stat-number {
    color: var(--eco-green-dark);
}

/* ===== FEATURES SECTION ===== */
.eco-features {
    padding: 5rem 0;
    background: white;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: #f8fdf8;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-block:hover {
    box-shadow: 0 10px 40px rgba(34, 139, 34, 0.1);
}

.feature-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-visual:hover .feature-screenshot {
    transform: scale(1.02);
}

.feature-overlay-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--eco-green-dark);
}

.feature-content>p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--eco-green);
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-left-color: var(--eco-blue);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 1.25rem;
}

/* Feature alternation */
.eonet-feature,
.dashboard-feature {
    direction: rtl;
}

.eonet-feature>*,
.dashboard-feature>* {
    direction: ltr;
}

/* Feature specific colors */
.firms-feature {
    border-left: 4px solid var(--eco-fire);
}

.eonet-feature {
    border-left: 4px solid #9b59b6;
}

.epic-feature {
    border-left: 4px solid var(--eco-blue);
}

.dashboard-feature {
    border-left: 4px solid var(--eco-gold);
}

/* ===== MAP SECTION ===== */
.eco-map-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #e8f5e9, #f0fff0);
}

.map-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.map-feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--eco-green);
}

.map-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(34, 139, 34, 0.15);
}

.map-feature-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-feature-card h4 {
    font-size: 1.25rem;
    color: var(--eco-green-dark);
    margin-bottom: 0.5rem;
}

.map-feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== TECH STACK SECTION ===== */
.eco-tech-stack {
    padding: 5rem 0;
    background: #1a1a2e;
    color: white;
}

.eco-tech-stack .section-header h2,
.eco-tech-stack .section-header p {
    color: white;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--eco-green-light);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.tech-badge.highlight {
    background: var(--eco-gradient);
    border: none;
    font-weight: 600;
    color: white !important;
    -webkit-text-fill-color: white !important;
    background-clip: padding-box !important;
    -webkit-background-clip: padding-box !important;
}

.tech-badge.nasa {
    background: linear-gradient(135deg, #0B3D91, #FC3D21);
    border: none;
}

.gsap-premium {
    background: linear-gradient(135deg, rgba(136, 206, 2, 0.1), rgba(136, 206, 2, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(136, 206, 2, 0.3);
}

.gsap-plugins-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.plugin-group h4 {
    color: #88CE02;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.plugin-group span {
    display: block;
    font-size: 0.85rem;
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== DATA SECTION ===== */
.eco-data-section {
    padding: 5rem 0;
    background: white;
}

.data-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.data-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.data-card.negative {
    background: linear-gradient(135deg, #ffe6e6, #fff0f0);
    border-left: 4px solid #dc3545;
}

.data-card.warning {
    background: linear-gradient(135deg, #fff8e6, #fffaf0);
    border-left: 4px solid #ffc107;
}

.data-card.positive {
    background: linear-gradient(135deg, #e6ffe6, #f0fff0);
    border-left: 4px solid var(--eco-green);
}

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

.data-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.data-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.data-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.data-trend {
    font-size: 0.85rem;
    color: #999;
}

.coverage-info {
    background: #f8fdf8;
    padding: 2rem;
    border-radius: 16px;
}

.coverage-info h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--eco-green-dark);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.coverage-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--eco-green-dark);
    margin-bottom: 0.25rem;
}

.coverage-item span {
    color: #666;
}

/* ===== CTA SECTION ===== */
.eco-cta {
    padding: 5rem 0;
    background: var(--eco-gradient);
    color: white;
    text-align: center;
}

.eco-cta .cta-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.eco-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.eco-cta>.container>.cta-content>p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.eco-cta .btn-primary {
    background: white;
    color: var(--eco-green-dark);
}

.eco-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
}

.final-message {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.final-message p {
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .eco-stats .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gsap-plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .feature-block {
        grid-template-columns: 1fr;
    }

    .eonet-feature,
    .dashboard-feature {
        direction: ltr;
    }

    .map-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .data-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eco-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .gsap-plugins-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-preview {
        width: 280px;
    }

    .floating-element {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .eco-stats .stats-grid {
        grid-template-columns: 1fr;
    }

    .data-highlights {
        grid-template-columns: 1fr;
    }

    .eco-cta h2 {
        font-size: 1.75rem;
    }
}