/* ====== HOSTING SECTION - DEEP MIDNIGHT UX (somefriends 2026) ====== */

.hosting-page {
    position: relative;
    overflow-x: hidden;
}

/* Background Characters - As requested, preserved but refined for new UX */
.hosting-page::before,
.hosting-page::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    transition: opacity 0.5s ease;
}

.hosting-page::before {
    top: 10vh;
    left: -5vw;
    width: 400px;
    height: 400px;
    background: url('../Personajes/Corre.gif') center/contain no-repeat;
    transform: rotate(-5deg);
}

.hosting-page::after {
    bottom: 5vh;
    right: -5vw;
    width: 450px;
    height: 450px;
    background: url('../Personajes/Tienda.gif') center/contain no-repeat;
    transform: rotate(5deg);
}

.hosting-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.hosting-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hosting-hero .lede {
    font-size: 1.25rem;
    color: var(--fg-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.hosting-card {
    background: var(--base-200);
    border: 1px solid var(--border-default);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.hosting-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}

.hosting-card.featured {
    background: var(--base-300);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 30px 60px -15px rgba(255, 204, 0, 0.1);
}

.hosting-card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: #fff;
}

.hosting-card .subtitle {
    color: var(--fg-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hosting-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--accent-primary);
}

.hosting-card .price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--fg-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    color: var(--fg-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list li::before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: bold;
}

.buy-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: var(--accent-primary);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(255, 204, 0, 0.3);
}

.buy-btn:hover {
    background: #ffdb4d;
    transform: scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(255, 204, 0, 0.4);
}

.hosting-sections-title {
    text-align: center;
    margin: 80px 0 40px;
    font-size: 2.5rem;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.dev-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-default);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dev-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-primary);
}

.dev-info {
    flex: 1;
}

.dev-info h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.dev-info p {
    font-size: 0.95rem;
}

.dev-price {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 24px;
    white-space: nowrap;
}

.lead-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background: var(--base-200);
    border-radius: 32px;
    border: 1px solid var(--border-default);
}

.lead-section h2 {
    margin-bottom: 32px;
    text-align: center;
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lead-form .full {
    grid-column: span 2;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.9rem;
    color: var(--fg-secondary);
}

.input-group input {
    background: var(--base-100);
    border: 1px solid var(--border-default);
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: var(--accent-primary);
}

.submit-btn {
    grid-column: span 2;
    padding: 16px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .hosting-grid { grid-template-columns: 1fr; }
    .development-grid { grid-template-columns: 1fr; }
    .hosting-card.featured { transform: scale(1); }
}

@media (max-width: 600px) {
    .lead-form { grid-template-columns: 1fr; }
    .lead-form .full { grid-column: span 1; }
    .submit-btn { grid-column: span 1; }
    .dev-card { flex-direction: column; text-align: center; gap: 20px; }
    .dev-price { margin: 10px 0; }
}
