/*
Theme Name: WebDomain Elite
Description: Tema corporativo para servicios de subdominios empresariales
Version: 1.0
Author: WebDomain Elite
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 255, 150, 0.3);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00ff96;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #b8b8b8;
    font-weight: 500;
}

.nav a:hover {
    color: #00ff96;
}

.btn {
    background: #00ff96;
    color: #000000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #00cc77;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 150, 0.3);
}

.btn-outline {
    background: transparent;
    color: #00ff96;
    border: 2px solid #00ff96;
}

.btn-outline:hover {
    background: #00ff96;
    color: #000000;
}

/* Hero */
.hero {
    padding: 100px 0;
    background: transparent;
    color: #e5e5e5;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00ff96;
    line-height: 1.1;
}

.hero-text p {
    font-size: 18px;
    color: #b8b8b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-radius: 20px;
    border: 2px dashed rgba(0, 255, 150, 0.3);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.hero-image::before {
    content: '🖼️ Zona para Imagen';
    color: #00ff96;
    font-size: 24px;
    font-weight: 500;
}

.hero-image:has(img)::before {
    display: none;
}

/* Efectos adicionales */
.hero-image:hover {
    border-color: rgba(0, 255, 150, 0.6);
    box-shadow: 0 0 30px rgba(0, 255, 150, 0.2);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: bold;
    color: #00ff96;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing */
.pricing {
    padding: 60px 0 120px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 255, 150, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 255, 150, 0.2);
    border-color: rgba(0, 255, 150, 0.5);
}

.pricing-card.popular {
    border-color: #00ff96;
    position: relative;
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 8px 30px rgba(0, 255, 150, 0.25);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'Más Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff96;
    color: #000000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.plan-subtitle {
    font-size: 16px;
    color: #b8b8b8;
    margin-bottom: 30px;
}

.plan-price {
    font-size: 56px;
    font-weight: bold;
    color: #00ff96;
    margin-bottom: 8px;
}

.plan-price span {
    font-size: 20px;
    color: #b8b8b8;
}

.plan-billing {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.plan-features {
    list-style: none;
    margin: 40px 0;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: #e5e5e5;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: '✓';
    color: #00ff96;
    font-weight: bold;
    margin-right: 15px;
    font-size: 18px;
    flex-shrink: 0;
}

.plan-cta {
    margin-top: 40px;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.comparison h2 {
    text-align: center;
    font-size: 36px;
    color: #00ff96;
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    overflow: hidden;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 150, 0.1);
}

th {
    background: rgba(0, 255, 150, 0.1);
    color: #00ff96;
    font-weight: 600;
    text-align: center;
}

td {
    color: #e5e5e5;
}

.feature-name {
    font-weight: 500;
    color: #ffffff;
}

.check {
    color: #00ff96;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.cross {
    color: #ff4757;
    text-align: center;
    font-size: 18px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: #00ff96;
    margin-bottom: 50px;
}

.faq-item {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    background: rgba(0, 255, 150, 0.05);
    border: none;
    width: 100%;
    text-align: left;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(0, 255, 150, 0.1);
}

.faq-answer {
    padding: 0 25px 25px;
    color: #b8b8b8;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #0f0f0f;
    color: #c0c0c0;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #c0c0c0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #c0c0c0;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .btn {
        width: 200px;
        text-align: center;
    }

    .hero-image {
        min-height: 300px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .plan-price {
        font-size: 48px;
    }

    .comparison-table {
        font-size: 14px;
    }

    th, td {
        padding: 15px 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}