/** 
 * MrGrifinhos Landing Page v2
 * Design clean e pessoal baseado no mockup
 * Cores: Dark navy + Neon green/blue (logo)
 */

/* CSS Variables */
:root {
    /* Colors - MrGrifinhos Brand */
    --primary: #00FF88;
    --primary-dark: #00cc6a;
    --secondary: #0088FF;
    --accent: #00FFFF;
    --dark: #0a1628;
    --dark-light: #0f1d33;
    --dark-lighter: #1a2d4a;
    --light: #FFFFFF;
    --gray: #8b9bb4;
    --gray-light: #a8b5cc;
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1100px;
    --section-padding: 80px;
}

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

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.logo-img-small {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Hero Card - New Design */
.hero-card {
    display: flex;
    gap: 48px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(15, 29, 51, 0.8) 0%, rgba(10, 22, 40, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 255, 136, 0.05);
    align-items: center;
}

/* Left Side - Profile Photo with Neon Frame */
.hero-card-left {
    flex-shrink: 0;
}

.profile-photo-frame {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #00FF88 0%, #00cc6a 50%, #00FF88 100%);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.4),
        0 0 80px rgba(0, 255, 136, 0.2),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
    position: relative;
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { 
        box-shadow: 
            0 0 40px rgba(0, 255, 136, 0.4),
            0 0 80px rgba(0, 255, 136, 0.2),
            inset 0 0 20px rgba(0, 255, 136, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 60px rgba(0, 255, 136, 0.6),
            0 0 100px rgba(0, 255, 136, 0.3),
            inset 0 0 30px rgba(0, 255, 136, 0.2);
    }
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--dark);
}

/* Right Side - Content */
.hero-card-right {
    flex: 1;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* Live badge - commented out for now, will be used for dynamic indicator later
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
*/

.gtz-badge-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #dc2626;
    text-decoration: none;
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.gtz-badge-red:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-logo-small {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.hero-name {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 0 60px rgba(0, 255, 136, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-description {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 540px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00FF88 0%, #00cc6a 100%);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 136, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Twitch Button */
.btn-twitch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #9146FF 0%, #7c3aed 100%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(145, 70, 255, 0.3);
}

.btn-twitch:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(145, 70, 255, 0.4);
}

.btn-twitch svg {
    transition: transform 0.3s ease;
}

.btn-twitch:hover svg {
    transform: scale(1.1);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--dark-light);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-header p {
    color: var(--gray);
}

/* Sobre Section */
.sobre {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.sobre-grid > * {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.sobre-texto h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.sobre-texto p {
    color: var(--gray);
    margin-bottom: 16px;
}

.sobre-texto strong {
    color: var(--primary);
}

.sobre-pilares {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.pilar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--dark);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

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

.pilar-texto {
    font-weight: 600;
    font-size: 0.9rem;
}

.sobre-imagem {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.imagem-card {
    background: var(--dark-lighter);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.sobre-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Galeria Section */
.galeria {
    padding: 60px 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.galeria-item {
    aspect-ratio: 1;
    background: var(--dark-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: 0.2s;
    cursor: pointer;
}

.galeria-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.galeria-icon {
    font-size: 2.5rem;
}

.galeria-label {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Apoia Section */
.apoia {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.apoia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.code-card {
    background: var(--dark-light);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid rgba(0, 255, 136, 0.1);
    transition: 0.2s;
}

.code-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.code-card.epic {
    border-left: 4px solid #9146FF;
}

.code-card.gtz {
    border-left: 4px solid #dc2626;
}

.code-header {
    margin-bottom: 20px;
}

.code-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.code-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.code-platform {
    font-size: 0.85rem;
    color: var(--gray);
}

.code-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.code-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px dashed var(--primary);
    flex: 1;
    text-align: center;
}

.btn-copy {
    padding: 10px 16px;
    background: var(--dark);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    color: var(--light);
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.2s;
}

.btn-copy:hover {
    background: var(--primary);
    color: var(--dark);
}

.code-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.gtz-info {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 136, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.gtz-logo {
    flex-shrink: 0;
}

.gtz-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.gtz-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.gtz-text strong {
    color: var(--primary);
}

.gtz-text p {
    color: var(--gray);
    margin-bottom: 16px;
}

/* Profile badges */
.profile-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gtz-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
    transition: 0.2s;
}

.gtz-badge:hover {
    background: #dc2626;
    color: #fff;
}

.badge-logo {
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.code-logo {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Conteúdo Section */
.conteudo {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.conteudo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.conteudo-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: 0.2s;
}

.conteudo-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    font-size: 1.75rem;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.conteudo-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.card-link:hover {
    color: var(--light);
}

.link-icon {
    font-size: 1.1rem;
}

/* Agenda Section */
.agenda {
    padding: var(--section-padding) 0;
}

.agenda-lista {
    max-width: 600px;
    margin: 0 auto;
}

.agenda-item {
    display: grid;
    grid-template-columns: 100px 80px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    background: var(--dark-light);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: 0.2s;
}

.agenda-item:hover {
    border-color: var(--primary);
}

.agenda-dia {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray);
}

.agenda-hora {
    font-weight: 700;
    color: var(--primary);
}

.agenda-tipo {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Comunidade Section */
.comunidade {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.comunidade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.comunidade-info h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.comunidade-info > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.comunidade-stats {
    display: flex;
    gap: 32px;
}

.comunidade-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.comunidade-stat div {
    display: flex;
    flex-direction: column;
}

.comunidade-stat strong {
    font-weight: 600;
}

.comunidade-stat span {
    font-size: 0.85rem;
    color: var(--gray);
}

.social-links h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray);
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--dark);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: 0.2s;
}

.social-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.social-icon {
    font-size: 1.5rem;
}

.social-info {
    flex: 1;
}

.social-info strong {
    display: block;
    font-weight: 600;
}

.social-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.arrow {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Footer */
.footer {
    padding: 32px 0;
    background: var(--dark);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================================
   MOBILE RESPONSIVENESS - COMPREHENSIVE BREAKPOINTS
   ============================================================ */

/* Large Tablets & Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .sobre-grid,
    .comunidade-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .conteudo-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero Card Responsive */
    .hero-card {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 40px 32px;
    }
    
    .hero-card-left {
        order: -1;
    }
    
    .profile-photo-frame {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Contact grid */
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Fix overflow issues */
    .sobre-grid,
    .parceiros-grid,
    .contacto-grid {
        width: 100%;
        max-width: 100%;
    }
    
    .sobre-texto,
    .sobre-imagem,
    .schedule-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Navigation - Mobile menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 255, 136, 0.05);
        text-align: center;
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .navbar .btn-primary {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero .container {
        padding: 0 12px;
    }
    
    .hero-card {
        padding: 24px 16px;
        border-radius: 16px;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .profile-photo-frame {
        width: 130px;
        height: 130px;
        padding: 4px;
    }
    
    .hero-name {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-twitch,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .gtz-badge-red {
        width: fit-content;
        margin: 0 auto;
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .badge-logo-small {
        width: 14px;
        height: 14px;
    }
    
    /* Hero Stats */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 20px 0;
        width: 100%;
    }
    
    .stat-box {
        padding: 14px 8px;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    /* Sobre Section */
    .sobre-texto h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .sobre-texto p {
        font-size: 0.9rem;
    }
    
    /* Achievements */
    .achievements {
        padding: 20px;
        margin-top: 24px;
    }
    
    .achievements h3 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .achievement-card {
        padding: 14px;
    }
    
    .achievement-icon {
        font-size: 1.3rem;
    }
    
    .achievement-content strong {
        font-size: 0.85rem;
    }
    
    .achievement-content span {
        font-size: 0.75rem;
    }
    
    /* Schedule Card */
    .schedule-card {
        padding: 20px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .schedule-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .schedule-icon {
        font-size: 2rem;
    }
    
    .schedule-header h3 {
        font-size: 1.1rem;
    }
    
    .schedule-list {
        gap: 10px;
    }
    
    .schedule-item {
        padding: 12px 10px;
        flex-wrap: wrap;
        gap: 6px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .day-badge {
        font-size: 0.65rem;
        padding: 5px 6px;
        min-width: 38px;
        flex-shrink: 0;
    }
    
    .time {
        font-size: 0.8rem;
        min-width: auto;
        flex-shrink: 0;
    }
    
    .stream-type {
        font-size: 0.75rem;
        width: auto;
        flex: 1;
        text-align: right;
        padding-left: 0;
    }
    
    .schedule-cta {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    /* Parceiros Section */
    .parceiros-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .parceiro-card {
        padding: 20px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .gtz-promo-img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .parceiro-card.brincar-card .brincar-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .parceiro-card.brincar-card h3 {
        font-size: 1.1rem;
    }
    
    .parceiro-card.brincar-card p {
        font-size: 0.85rem;
    }
    
    .btn-brincar {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .parceiro-card.placeholder-card .placeholder-icon {
        width: 60px;
        height: 60px;
    }
    
    .parceiro-card.placeholder-card h3 {
        font-size: 1.1rem;
    }
    
    .parceiro-card.placeholder-card p {
        font-size: 0.85rem;
    }
    
    /* Contact Section */
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .contacto-card {
        padding: 24px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contacto-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .contacto-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .card-label {
        font-size: 0.65rem;
    }
    
    .card-value {
        font-size: 1rem;
    }
    
    .creator-code-wrapper {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .creator-code,
    .gtz-shop-code {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
    
    .btn-copy-code {
        width: 32px;
        height: 32px;
    }
    
    .card-description {
        font-size: 0.8rem;
    }
    
    .card-action {
        margin-top: 20px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .card-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: 16px;
        right: 16px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-copy {
        font-size: 0.8rem;
    }
}

/* iPhone SE / Small Phones (375px and below) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    /* Achievements Section - O Que Me Define - Fix overflow issues */
    .achievements {
        padding: 14px 10px;
        margin-top: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .achievements h3 {
        font-size: 0.9rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }
    
    .achievement-card {
        padding: 12px 10px;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    
    .achievement-icon {
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .achievement-content {
        min-width: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }
    
    .achievement-content strong {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 4px;
    }
    
    .achievement-content span {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Parceiros Section - Partner cards sizing fixes */
    .parceiros-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .parceiro-card {
        padding: 16px 14px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 14px;
    }
    
    /* GTZ Card specific fixes */
    .parceiro-card.gtz-card {
        padding: 10px;
    }
    
    .gtz-promo-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    /* Brincar Card specific fixes */
    .parceiro-card.brincar-card {
        padding: 16px 14px;
    }
    
    .parceiro-card.brincar-card .brincar-logo-img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .parceiro-card.brincar-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .parceiro-card.brincar-card p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .btn-brincar {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Placeholder Card fixes */
    .parceiro-card.placeholder-card {
        padding: 16px 14px;
    }
    
    .parceiro-card.placeholder-card .placeholder-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    
    .parceiro-card.placeholder-card .placeholder-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .parceiro-card.placeholder-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .parceiro-card.placeholder-card p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .btn-placeholder {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Section header adjustments */
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    /* Hero minimal */
    .hero-card {
        padding: 18px 12px;
    }
    
    .profile-photo-frame {
        width: 90px;
        height: 90px;
    }
    
    .hero-name {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    /* Stats single column for very small screens */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .stat-box {
        padding: 10px 4px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    /* Schedule minimal */
    .schedule-header h3 {
        font-size: 1rem;
    }
    
    .day-badge {
        font-size: 0.55rem;
        min-width: 34px;
        padding: 4px 5px;
    }
    
    .time {
        font-size: 0.7rem;
    }
    
    .stream-type {
        font-size: 0.65rem;
    }
    
    /* Partner cards minimal */
    .parceiro-card {
        padding: 18px 14px;
    }
    
    .parceiro-card.brincar-card .brincar-logo-img {
        width: 50px;
        height: 50px;
    }
    
    /* Contact minimal */
    .contacto-card {
        padding: 18px 12px;
    }
    
    .contacto-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .contacto-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .creator-code,
    .gtz-shop-code {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .card-value {
        font-size: 0.85rem;
    }
    
    .card-description {
        font-size: 0.75rem;
    }
}

/* Touch target optimization for mobile */
@media (max-width: 768px) {
    .btn,
    .card-action,
    .schedule-cta,
    .btn-brincar,
    .btn-placeholder,
    .social-link,
    .btn-copy-code {
        min-height: 44px;
    }
    
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================================
   NEW/REFINED SECTIONS - MrGrifinhos Simplified Landing Page
   ============================================================ */

/* Achievements Section in Sobre - Redesigned */
.achievements {
    margin-top: 32px;
    padding: 24px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.achievements h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.achievement-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.08);
    transition: all 0.2s ease;
}

.achievement-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.achievement-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.achievement-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.achievement-content strong {
    font-size: 0.9rem;
    color: var(--light);
}

.achievement-content span {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Schedule Card */
.schedule-card {
    background: linear-gradient(135deg, rgba(15, 29, 51, 0.9) 0%, rgba(10, 22, 40, 0.95) 100%);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.schedule-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.schedule-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.schedule-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 4px;
}

.timezone {
    font-size: 0.8rem;
    color: var(--gray);
    background: rgba(0, 255, 136, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(0, 255, 136, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.08);
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: rgba(0, 255, 136, 0.06);
    border-color: rgba(0, 255, 136, 0.15);
}

.schedule-item.highlight {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.1) 0%, rgba(145, 70, 255, 0.05) 100%);
    border-color: rgba(145, 70, 255, 0.2);
}

.schedule-item.highlight .day-badge {
    background: linear-gradient(135deg, #9146FF 0%, #7c3aed 100%);
    color: #fff;
}

.schedule-item.weekend {
    background: rgba(255, 255, 255, 0.03);
    border-style: dashed;
}

.day-badge {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 255, 136, 0.15);
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
}

.time {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--light);
    min-width: 110px;
}

.stream-type {
    font-size: 0.8rem;
    color: var(--gray);
    flex: 1;
}

.schedule-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #9146FF 0%, #7c3aed 100%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.schedule-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(145, 70, 255, 0.3);
}

.schedule-cta svg {
    transition: transform 0.3s ease;
}

.schedule-cta:hover svg {
    transform: scale(1.1);
}

/* Parceiros Section */
.parceiros {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.parceiro-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.parceiro-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.parceiro-card.gtz-card {
    border: 2px solid rgba(220, 38, 38, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
}

.parceiro-card.gtz-card:hover {
    border-color: rgba(220, 38, 38, 0.6);
}

.gtz-image-link {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
}

.gtz-image-link:hover {
    transform: scale(1.02);
}

/* GTZ Promotional Image */
.gtz-promo-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.parceiro-card.gtz-card h3 {
    color: #fff;
    margin-top: 8px;
}

.parceiro-card.gtz-card .btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    margin-top: auto;
}

.parceiro-card.gtz-card .btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Brincar Automóveis Card */
.parceiro-card.brincar-card {
    border: 2px solid rgba(46, 204, 113, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
}

.parceiro-card.brincar-card:hover {
    border-color: rgba(46, 204, 113, 0.6);
}

.brincar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btn-brincar {
    margin-top: 16px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-brincar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.parceiro-card.brincar-card .brincar-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    margin-bottom: 16px;
}

.parceiro-card.brincar-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 8px;
    text-align: center;
}

.parceiro-card.brincar-card p {
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* Simplified Partner Cards - Image Only */
.parceiro-card {
    padding: 24px;
}

/* Placeholder Card - Subdued style for future partners */
.parceiro-card.placeholder-card {
    border: 2px dashed rgba(139, 155, 180, 0.3);
    background: linear-gradient(135deg, rgba(15, 29, 51, 0.5) 0%, rgba(10, 22, 40, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parceiro-card.placeholder-card:hover {
    border-color: rgba(139, 155, 180, 0.5);
    background: linear-gradient(135deg, rgba(15, 29, 51, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    transform: translateY(-4px);
}

.parceiro-card.placeholder-card .placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 2px dashed rgba(139, 155, 180, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    margin-bottom: 8px;
}

.parceiro-card.placeholder-card h3 {
    color: var(--gray-light);
    margin-top: 8px;
}

.parceiro-card.placeholder-card p {
    color: var(--gray);
}

.btn-placeholder {
    background: transparent;
    border: 1px solid rgba(139, 155, 180, 0.5);
    color: var(--gray-light);
    margin-top: auto;
    transition: all 0.3s ease;
}

.btn-placeholder:hover {
    background: rgba(139, 155, 180, 0.1);
    border-color: var(--gray-light);
    color: #fff;
    transform: translateY(-2px);
}

/* StreamElements Widget Card */
.parceiro-card.widget-card {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    background: var(--dark-light);
}

.widget-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 Aspect Ratio - adjusts automatically */
    overflow: hidden;
}

.widget-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.parceiro-logo-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parceiro-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.parceiro-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.parceiro-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.placeholder-card {
    border: 2px dashed rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.02);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* Contacto Section - Elegant Card Design */
.contacto {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.contacto-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contacto-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 29, 51, 0.9) 0%, rgba(10, 22, 40, 0.95) 100%);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contacto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.4), transparent);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contacto-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 255, 136, 0.08);
}

.contacto-card:hover .card-glow {
    opacity: 1;
}

/* Email Card Specific */
.email-card .contacto-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    color: #60a5fa;
}

.email-card:hover .contacto-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.2) 100%);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

/* Creator Code Card Specific */
.code-card .contacto-card-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 106, 0.1) 100%);
    color: var(--primary);
}

.code-card:hover .contacto-card-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25) 0%, rgba(0, 204, 106, 0.2) 100%);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

/* CTA Card Specific */
.cta-card .contacto-card-icon {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: #a78bfa;
}

.cta-card:hover .contacto-card-icon {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.25) 0%, rgba(124, 58, 237, 0.2) 100%);
    box-shadow: 0 0 30px rgba(145, 70, 255, 0.3);
}

/* GTZ Shop Card Specific */
.gtz-shop-card {
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.gtz-shop-card:hover {
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(220, 38, 38, 0.1);
}

.gtz-shop-card .contacto-card-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(185, 28, 28, 0.1) 100%);
    color: #ef4444;
}

.gtz-shop-card:hover .contacto-card-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25) 0%, rgba(185, 28, 28, 0.2) 100%);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.gtz-shop-code {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ef4444;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.05) 100%);
    padding: 8px 16px;
    border-radius: 10px;
    border: 2px dashed rgba(220, 38, 38, 0.3);
}

.gtz-copy-btn {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #ef4444;
}

.gtz-copy-btn:hover {
    background: #ef4444;
    color: #fff;
}

.gtz-shop-action {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.15) 100%);
    border-color: rgba(220, 38, 38, 0.3);
    color: #fca5a5;
}

.gtz-shop-action:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(185, 28, 28, 0.25) 100%);
    border-color: rgba(220, 38, 38, 0.5);
    color: #fecaca;
}

.contacto-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contacto-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}

.card-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 0.5px;
}

.email-link {
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #60a5fa;
}

.creator-code-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.creator-code {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 106, 0.05) 100%);
    padding: 8px 16px;
    border-radius: 10px;
    border: 2px dashed rgba(0, 255, 136, 0.3);
}

.btn-copy-code {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-code:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

.btn-copy-code:active {
    transform: scale(0.95);
}

.card-description {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-top: 12px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    margin: 0;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
}

.card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-action:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.card-action svg {
    transition: transform 0.3s ease;
}

.card-action:hover svg {
    transform: translateX(4px);
}

.cta-action {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.2) 0%, rgba(124, 58, 237, 0.15) 100%);
    border-color: rgba(145, 70, 255, 0.3);
    color: #c4b5fd;
}

.cta-action:hover {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.3) 0%, rgba(124, 58, 237, 0.25) 100%);
    border-color: rgba(145, 70, 255, 0.5);
    color: #ddd6fe;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* Footer Updates */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--dark-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.2s;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Additional Responsive Adjustments */
@media (max-width: 1024px) {
    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .parceiros-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contacto-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Mobile fix v3: prevent overflow in "O que me define" and normalize partner card sizing */
@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .achievement-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .achievement-content {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .parceiros-grid {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .parceiro-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .gtz-promo-img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 375px) {
    .achievements {
        padding: 14px 10px;
    }

    .achievement-card {
        padding: 12px 10px;
        gap: 10px;
    }

    .achievement-content strong {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .achievement-content span {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Parceiros: tighten spacing and prevent overflow/cropping on iPhone width */
    .parceiros .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .parceiros-grid {
        gap: 12px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .parceiro-card,
    .parceiro-card.brincar-card,
    .parceiro-card.placeholder-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 16px 14px;
        border-radius: 14px;
        box-sizing: border-box;
    }

    .parceiro-card.gtz-card {
        padding: 10px;
    }

    .parceiro-card.gtz-card .gtz-image-link,
    .parceiro-card.gtz-card .gtz-promo-img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .parceiro-card.brincar-card .brincar-content {
        width: 100%;
        min-width: 0;
    }

    .parceiro-card.brincar-card .brincar-logo-img {
        width: 50px;
        height: 50px;
    }

    .parceiro-card.brincar-card h3,
    .parceiro-card.brincar-card p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .parceiro-card.brincar-card .btn-brincar {
        width: 100%;
        max-width: 220px;
        text-align: center;
    }
}

/* Final mobile safeguard: force parceiros stack to a single full-width column */
@media (max-width: 768px) {
    .parceiros-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .parceiro-card,
    .parceiro-card.gtz-card,
    .parceiro-card.brincar-card,
    .parceiro-card.placeholder-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Final mobile safeguard: force Contacto cards to stack vertically */
@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }

    .contacto-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
}

/* Small Phones (480px and below) - extended coverage for 376px-479px */
@media (max-width: 480px) {
    /* Ensure achievements don't overflow */
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .achievement-card {
        padding: 14px 12px;
    }
    
    .achievement-content strong {
        font-size: 0.88rem;
    }
    
    .achievement-content span {
        font-size: 0.82rem;
    }
    
    /* Ensure parceiros cards are contained */
    .parceiros-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .parceiro-card {
        padding: 18px 16px;
    }
    .container {
        padding: 0 12px;
    }
    
    :root {
        --section-padding: 50px;
    }
    
    /* Hero further refinements */
    .hero-card {
        padding: 20px 14px;
        border-radius: 12px;
    }
    
    .profile-photo-frame {
        width: 100px;
        height: 100px;
    }
    
    .hero-name {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .btn-twitch,
    .btn-hero-outline {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Stats - better spacing */
    .hero-stats {
        gap: 6px;
    }
    
    .stat-box {
        padding: 12px 6px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 1.25rem;
    }
    
    /* Schedule adjustments */
    .schedule-card {
        padding: 16px 12px;
    }
    
    .schedule-item {
        padding: 10px 8px;
    }
    
    .day-badge {
        font-size: 0.6rem;
        padding: 4px 6px;
        min-width: 38px;
    }
    
    .time {
        font-size: 0.75rem;
    }
    
    .stream-type {
        font-size: 0.7rem;
    }
    
    /* Contact cards */
    .contacto-card {
        padding: 20px 14px;
    }
    
    .creator-code,
    .gtz-shop-code {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    
    .creator-code-wrapper {
        flex-wrap: wrap;
        gap: 8px;
    }
}
