/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    
    position: relative;
    overflow: hidden;
    
}

/* Glow decorativo */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(13,110,253,0.25),
        transparent 70%
    );
    top: -200px;
    right: -200px;
}

/* Contenido */
.hero-content {
    max-width: 550px;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #eaf0ff;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #0d6efd;
}

.hero-content p {
    font-size: 16px;
    color: #a1adc4;
    margin-bottom: 30px;
}

/* Botones */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(90deg, #0d6efd, #13189b);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(13,110,253,0.4);
}

.btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(13,110,253,0.6);
}

.btn-secondary {
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #eaf0ff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
}

/* Imagen */
.hero-image {
    max-width: 520px;
    z-index: 2;
    animation: fadeRight 1.2s ease forwards;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}



/* ===============================
   CONTACT FORM
================================ */

.contact-content {
    padding: 80px 8%;
}

.contact-container {
    max-width: 700px;
    margin: auto;
}

/* Card */

.contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Header */

.contact-card-header {
    margin-bottom: 30px;
}

.contact-card-header h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.contact-card-header p {
    color: #a1adc4;
    font-size: 15px;
}

.contact-card-header strong {
    color: #0d6efd;
}

/* Form layout */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form group */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    color: #a1adc4;
}

/* Inputs */

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

/* Focus */

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13,110,253,0.25);
    background: rgba(255,255,255,0.08);
}

/* Submit button */

.btn-submit {
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13,110,253,0.4);
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Responsive */

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 24px;
    }
}




/* ===============================
   INFO SECTION
================================ */

.info {
    padding: 80px 8%;
}

.info-container {
    max-width: 1000px;
    margin: auto;
}

/* Header */

.info-header {
    margin-bottom: 40px;
}

.info-header h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.info-header p {
    color: #a1adc4;
    font-size: 16px;
}

/* Cards layout */

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Card base */

.info-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.25s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Discord card highlight */

.info-card-discord {
    border-color: rgba(13,110,253,0.5);
    box-shadow: 0 0 25px rgba(13,110,253,0.25);
}

/* Icon */

.info-card-icon img {
    width: 48px;
}

/* Content */

.info-card-content h3 {
    font-size: 20px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-link {
    display: inline-block;
    margin-bottom: 6px;
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

.info-link:hover {
    text-shadow: 0 0 8px rgba(13,110,253,0.6);
}

.info-meta {
    font-size: 14px;
    color: #a1adc4;
    margin-bottom: 14px;
}

/* Badge */

.badge-primary {
    background: #0d6efd;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 800px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
}
