/* NDC Agência - Design Profissional Otimizado */
/* Cores inspiradas na identidade visual da marca */

:root {
    /* Cores Principais - Baseadas na Logo NDC */
    --ndc-green: #7FFF00;            /* Verde vibrante da logo */
    --ndc-green-dark: #6BDB00;       /* Verde mais escuro */
    --ndc-green-light: #9FFF33;      /* Verde claro */
    --ndc-black: #000000;            /* Preto da logo */
    --ndc-dark: #0f0f0f;             /* Preto suavizado */
    --ndc-gray-dark: #1a1a1a;        /* Cinza escuro */
    --ndc-gray-medium: #333333;      /* Cinza médio */
    --ndc-gray-light: #f5f5f5;       /* Cinza claro */
    --ndc-white: #ffffff;            /* Branco puro */
    
    /* Cores de Apoio */
    --ndc-success: #28a745;          /* Verde de sucesso */
    --ndc-warning: #ffc107;          /* Amarelo de aviso */
    --ndc-info: #17a2b8;             /* Azul informativo */
    
    /* Tipografia */
    --text-primary: #1a1a1a;         /* Texto principal */
    --text-secondary: #333333;       /* Texto secundário */
    --text-muted: #666666;           /* Texto suavizado */
    --text-light: #ffffff;           /* Texto claro */
    
    /* Gradientes da Marca */
    --gradient-primary: linear-gradient(135deg, var(--ndc-green) 0%, var(--ndc-green-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--ndc-black) 0%, var(--ndc-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--ndc-green-light) 0%, var(--ndc-green) 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-green: 0 10px 15px -3px rgba(127, 255, 0, 0.1), 0 4px 6px -2px rgba(127, 255, 0, 0.05);
    
    /* Transições */
    --transition-fast: all 0.15s ease-in-out;
    --transition-base: all 0.3s ease-in-out;
    --transition-slow: all 0.5s ease-in-out;
}

/* Reset e Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--ndc-white);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ndc-gray-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-nav {
    height: 60px;
    width: auto;
    transition: var(--transition-base);
}

.logo-nav:hover {
    transform: scale(1.05);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--ndc-green-dark);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--ndc-white) 0%, var(--ndc-gray-light) 100%);
    min-height: 100vh;
    min-height: -webkit-fill-available; /* iOS Safari fix */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    padding: 6rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(127, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 255, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--ndc-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-green);
}

.hero-logo {
    height: 300px;
    width: auto;
    max-width: 90vw; /* Garante responsividade */
    margin: 0 auto 3rem auto;
    display: block;
    transition: var(--transition-slow);
    -webkit-transition: var(--transition-slow);
    -moz-transition: var(--transition-slow);
    filter: drop-shadow(0 0 30px rgba(127, 255, 0, 0.4));
    -webkit-filter: drop-shadow(0 0 30px rgba(127, 255, 0, 0.4));
    will-change: transform; /* Performance */
}\n
.hero-logo:hover {
    transform: scale(1.05) rotate(2deg);
    -webkit-transform: scale(1.05) rotate(2deg);
    -ms-transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 40px rgba(127, 255, 0, 0.6));
    -webkit-filter: drop-shadow(0 0 40px rgba(127, 255, 0, 0.6));
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--ndc-green-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    min-height: 44px; /* Touch target mínimo */
    min-width: 44px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-base);
    -webkit-transition: var(--transition-base);
    -moz-transition: var(--transition-base);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.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: var(--transition-base);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--ndc-black);
    box-shadow: var(--shadow-green);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 255, 0, 0.3);
}

.btn-secondary {
    background: var(--ndc-white);
    color: var(--text-primary);
    border: 2px solid var(--ndc-green);
}

.btn-secondary:hover {
    background: var(--ndc-green);
    color: var(--ndc-black);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--ndc-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--ndc-gray-light);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    border-color: var(--ndc-green);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ndc-green-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--ndc-gray-light);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--ndc-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--ndc-gray-light);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    border-color: var(--ndc-green);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ndc-black);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

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

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

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ndc-green-dark);
    font-weight: 600;
}

/* Creators Section - Estilo Moderno */
.creators-section {
    padding: 6rem 0;
    background: var(--ndc-white);
}

.creators-section .container {
    max-height: none;
}
-ms-grid;
    display: 
.creators-title {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1400px) {
    .creators-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .creators-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .creators-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        height: 200px;
    }
    
    .creators-title {
        font-size: 3rem;
    }
    
    .contact {
        padding: 3rem 1rem;
    }
}

/* Media Queries para Dispositivos Específicos */

/* Tablets em modo retrato */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-logo {
        width: 250px;
    }
    
    .stats-grid-contact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets em modo paisagem */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .creators-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero {
        min-height: 100vh;
    }
}

/* Smartphones em modo paisagem */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem;
    }
    
    .hero-logo {
        width: 200px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Telas muito pequenas (< 360px) */
@media (max-width: 360px) {
    .hero-logo {
        width: 200px;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .creator-card h3 {
        font-size: 1rem;
    }
    
    .stat-number-contact {
        font-size: 2rem;
    }
}

/* Telas muito grandes (> 1920px) */
@media (min-width: 1921px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-logo {
        width: 350px;
    }
    
    .creators-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .stats-grid-contact {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* iPhone X, XS, 11 Pro, 12 mini, 13 mini */
@media only screen 
    and (device-width: 375px) 
    and (device-height: 812px) 
    and (-webkit-device-pixel-ratio: 3) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* iPhone XR, 11 */
@media only screen 
    and (device-width: 414px) 
    and (device-height: 896px) 
    and (-webkit-device-pixel-ratio: 2) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* iPad Pro 12.9" */
@media only screen 
    and (device-width: 1024px) 
    and (device-height: 1366px) 
    and (-webkit-device-pixel-ratio: 2) {
    .creators-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.creator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-10px);
}

.creator-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Background colors para cada card */
.creator-card[data-color="purple"] .creator-image-wrapper {
    background: linear-gradient(135deg, #7B3FF2, #A855F7);
    padding: 8px;
}

.creator-card[data-color="orange"] .creator-image-wrapper {
    background: linear-gradient(135deg, #FF8A3C, #FFB347);
    padding: 8px;
}

.creator-card[data-color="pink"] .creator-image-wrapper {
    background: linear-gradient(135deg, #E91E63, #F06292);
    padding: 8px;
}

.creator-card[data-color="teal"] .creator-image-wrapper {
    background: linear-gradient(135deg, #2B7A78, #3AAFA9);
    padding: 8px;
}

.creator-card[data-color="purple-alt"] .creator-image-wrapper {
    background: linear-gradient(135deg, #6B3FA0, #9B59B6);
    padding: 8px;
}

.creator-card[data-color="yellow"] .creator-image-wrapper {
    background: linear-gradient(135deg, #FFB800, #FFC93C);
    padding: 8px;
}

.creator-card[data-color="blue"] .creator-image-wrapper {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    padding: 8px;
}

.creator-card[data-color="green"] .creator-image-wrapper {
    background: linear-gradient(135deg, #10B981, #34D399);
    padding: 8px;
}

.creator-card[data-color="red"] .creator-image-wrapper {
    background: linear-gradient(135deg, #DC2626, #F87171);
    padding: 8px;
}

.creator-card[data-color="indigo"] .creator-image-wrapper {
    background: linear-gradient(135deg, #4F46E5, #818CF8);
    padding: 8px;
}

.creator-card[data-color="cyan"] .creator-image-wrapper {
    background: linear-gradient(135deg, #06B6D4, #22D3EE);
    padding: 8px;
}

.creator-card[data-color="lime"] .creator-image-wrapper {
    background: linear-gradient(135deg, #84CC16, #BEF264);
    padding: 8px;
}

.creator-card[data-color="amber"] .creator-image-wrapper {
    background: linear-gradient(135deg, #F59E0B, #FCD34D);
    padding: 8px;
}

.creator-card[data-color="emerald"] .creator-image-wrapper {
    background: linear-gradient(135deg, #059669, #10B981);
    padding: 8px;
}

.creator-card[data-color="rose"] .creator-image-wrapper {
    background: linear-gradient(135deg, #F43F5E, #FB7185);
    padding: 8px;
}

.creator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
}

.creator-card:hover .creator-image {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.creator-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.creator-btn {
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    min-height: 44px; /* Touch target */
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.creator-btn:hover {
    background: var(--ndc-green);
    color: #000000;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .creator-btn:active {
        background: var(--ndc-green);
        color: #000000;
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }
}

/* Instagram Section - Manter para compatibilidade */
.instagram-section {
    padding: 6rem 0;
    background: var(--ndc-white);
}

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

.instagram-post {
    background: var(--ndc-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--ndc-gray-light);
    cursor: pointer;
}

.instagram-post:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    border-color: var(--ndc-green);
}

.post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-base);
}

.instagram-post:hover .post-image {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.post-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.instagram-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--ndc-black);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-green);
}

/* Stats na seção de contato - Estilo cards brancos */
.stats-grid-contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item-contact {
    text-align: center;
    padding: 2rem 1rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(127, 255, 0, 0.1);
}

.stat-item-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(127, 255, 0, 0.2);
    border-color: var(--ndc-green);
}

.stat-number-contact {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ndc-green);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-number-contact span {
    color: var(--ndc-green);
}

.stat-label-contact {
    font-size: 0.875rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (max-width: 968px) {
    .stats-grid-contact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .stats-grid-contact {
        grid-template-columns: 1fr;
    }
    
    .stat-number-contact {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--ndc-gray-light);
}

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

.contact-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--ndc-white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ndc-gray-light);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-green);
    border-color: var(--ndc-green);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--ndc-green-dark);
    width: 40px;
    text-align: center;
}

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Moderno */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2.5rem;
    border-bottom: 1px solid rgba(127, 255, 0, 0.15);
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(127, 255, 0, 0.08);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 8px;
    color: var(--ndc-green);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--ndc-green);
    color: #000000;
    transform: translateY(-3px);
    border-color: var(--ndc-green);
}

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

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--ndc-green);
    transform: translateX(3px);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--ndc-green);
    font-size: 1rem;
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.4rem 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--ndc-green);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--ndc-green-dark);
}

/* Footer Responsivo */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem 2rem;
        text-align: center;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

.footer a {
}

.footer a:hover {
    color: var(--ndc-green-light);
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 2rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Performance e Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

@media (prefers-contrast: high) {
    :root {
        --ndc-green: #00FF00;
        --text-primary: #000000;
        --text-muted: #333333;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}
