/*
Theme Name: Collective Host
Description: Tema minimalista para empresa de hosting con personalización completa
Version: 1.0
Author: Tu Nombre
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Video Background */
.hero-video {
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-video h1,
.hero-video p {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-video h1 {
    color: #fff;
}

.hero p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: #333;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fafafa;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
}

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

.service-card {
    text-align: center;
    padding: 40px 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
}

.service-card p {
    color: #666;
    font-size: 16px;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: #fff;
}

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

.plan-card {
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.plan-card:hover {
    border-color: #000;
}

.plan-card.featured {
    border-color: #000;
    transform: scale(1.02);
}

.plan-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
}

.plan-price {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 8px;
}

.plan-period {
    color: #666;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f5f5f5;
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background: #fafafa;
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.client-logo {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    font-weight: 500;
    color: #666;
    border: 1px solid #eee;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-top: 40px;
}

.whatsapp-button:hover {
    background: #20b558;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    color: #666;
}

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

    .hero {
        min-height: 80vh;
        padding: 120px 0 80px;
    }

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

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }
    
    /* Video responsive */
    .hero-video-bg video {
        object-fit: cover;
        height: 100vh;
    }
}

/* Custom Logo Styling */
.custom-logo-link {
    display: inline-block;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

/* Widget Styling */
.footer-section ul {
    list-style: none;
    padding: 0;
}

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