/* Estilos Globais */
body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: white;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* Efeitos de Scroll Suave */
html {
    scroll-behavior: smooth;
}

/* Container Principal */
.container {
    position: relative;
    z-index: 1;
}

/* Efeito de partículas de fundo */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Logo e Header */
.hawk-logo {
    width: 350px;
    height: 250px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.hawk-logo:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.hawk-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(102, 126, 234, 0.08), 
        transparent
    );
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 750px;
    background: radial-gradient(
        circle, 
        rgba(102, 126, 234, 0.2) 0%, 
        rgba(102, 126, 234, 0.1) 40%, 
        rgba(102, 126, 234, 0) 70%
    );
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: glow 8s infinite alternate;
    z-index: -1;
}

@keyframes glow {
    0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    100% { transform: translateX(-50%) scale(1.3); opacity: 0.9; }
}

/* Cards */
.card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(102, 126, 234, 0) 50%
    );
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-image {
    height: 190px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.7s ease;
}

.card:hover .card-image {
    transform: scale(1.08);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.7) 60%, 
        rgba(0,0,0,0.95) 100%
    );
    border-radius: 1.8rem 1.8rem 0 0;
    z-index: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.card:hover .overlay-gradient {
    opacity: 0.7;
}

/* Badges e Ícones */
.platform-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
    border-radius: 1.2rem;
    font-weight: 600;
    margin-right: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.platform-ios {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.platform-ios:hover {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.platform-android {
    background: rgba(76, 175, 80, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.platform-android:hover {
    background: rgba(76, 175, 80, 0.25);
    transform: translateY(-2px);
}

.platform-pc {
    background: rgba(250, 204, 21, 0.15);
    color: #fcd34d;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.platform-pc:hover {
    background: rgba(250, 204, 21, 0.25);
    transform: translateY(-2px);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 1.2rem;
    flex-shrink: 0;
    color: #818cf8;
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    background: rgba(102, 126, 234, 0.25);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Botões */
.link-btn, .platform-btn {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.link-btn:hover, .platform-btn:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    color: white;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.hero-btn {
    background: linear-gradient(45deg, #6366f1, #818cf8);
    color: white;
    border: none;
    border-radius: 1.2rem;
    padding: 1.3rem 2.8rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.hero-btn:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.13), 
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.hero-btn:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* Modal Styling */
.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(38, 38, 38, 0.95));
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
}

.modal-header .modal-title {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 1.5rem;
}

.modal-header .modal-title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 65%;
    background: linear-gradient(to bottom, #6366f1, #818cf8);
    border-radius: 3px;
}

.modal-body {
    padding: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list {
    list-style: none;
    padding-left: 0.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
}

.feature-list li:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: #818cf8;
    font-weight: bold;
    font-size: 1rem;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.98);
}

.product-image:hover {
    transform: scale(1.01);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.online-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    position: relative;
    top: -2px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

.online-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #10b981;
    opacity: 0.8;
    z-index: 1;
    animation: iconPulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.pulse-effect {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

.hawk-logo.glow {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    border-color: rgba(102, 126, 234, 0.3);
    animation: softGlow 3s infinite alternate;
}

@keyframes softGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
    100% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}



/* Card Content Styling Enhancement */
.card-content {
    position: relative;
    z-index: 1;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

/* Título principal com efeito */
h2.text-center.fw-bold {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 2.5rem;
}

h2.text-center.fw-bold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, #6366f1, #818cf8);
    border-radius: 3px;
} 