<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #333;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

/* Hero Styles */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--secondary-color);
}

/* Footer Styles */
footer {
    background: #111827;
    color: #e5e7eb;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(59, 130, 246, 0.5), 
        transparent
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-section {
    position: relative;
    padding: 0.5rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-contact:hover {
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-contact:hover i {
    color: #60a5fa;
}

.footer-contact p {
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: #d1d5db;
}

.footer-contact a {
    text-decoration: none;
    color: inherit;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    margin: 0 3rem;
}

.footer-section p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 1rem;
    }

    .footer-divider {
        width: 50%;
        height: 1px;
        margin: 0.5rem auto;
    }

    .footer-contact {
        justify-content: center;
    }

    .footer-contact:hover {
        transform: translateY(-3px);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
        right: 0;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1;
    }

    .menu-overlay.active {
        display: block;
    }

    .logo img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }

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

    .footer-section,
    .footer-section:last-child {
        text-align: center;
    }
}

/* Servicios Page Styles */
.servicios-container {
    padding-top: 80px;
    min-height: 100vh;
}

.servicios-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.7), rgba(30, 64, 175, 0.7)), 
                url('images/servicios.png');  /* Corregida la ruta de la imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.servicios-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.servicios-hero p {
    font-size: 1.2rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-5px);
}

.servicio-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.servicio-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Servicios Page Additional Styles */
.servicio-lista {
    list-style: none;
    margin-top: 1rem;
}

.servicio-lista li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.servicio-lista li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contacto-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    margin-top: 3rem;
}

.contacto-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contacto-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .servicios-hero h1 {
        font-size: 2rem;
    }
    
    .servicios-grid {
        padding: 2rem;
    }
    
    .servicio-lista li {
        font-size: 0.9rem;
    }
    
    .contacto-cta h2 {
        font-size: 1.5rem;
    }
}

/* Planes Page Styles */
.planes-container {
    padding-top: 80px;
    min-height: 100vh;
    background: #f8fafc;
}

.planes-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(30, 64, 175, 0.8)),
                url('images/planes.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.planes-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.plan-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.plan-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.plan-features {
    margin: 1.5rem 0;
}

.plan-features h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.plan-card .cta-button {
    width: 100%;
    margin-top: 1.5rem;
}

.intermedio {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.feature-highlight {
    color: var(--primary-color);
    font-weight: 500;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
}

.feature-highlight::before {
    content: '★';
    color: var(--primary-color);
}

.plan-price {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.hosting-note {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.hosting-detail {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-top: 1rem !important;
    color: #475569;
}

.hosting-detail::before {
    content: '🌐';
}

.price-note {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}

/* Payment Info Styles */
.payment-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    display: inline-block;
}

.payment-info p {
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-terms {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.payment-terms p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-terms p::before {
    content: '💰';
    font-size: 1rem;
}

@media (max-width: 768px) {
    .planes-grid {
        padding: 2rem 1rem;
    }
    
    .intermedio {
        transform: none;
    }
    
    .plan-card:hover {
        transform: translateY(-5px);
    }

    .price {
        font-size: 1.5rem;
    }
    
    .hosting-note {
        font-size: 0.8rem;
    }

    .payment-info {
        margin: 1.5rem 1rem 0;
    }
    
    .payment-terms {
        padding: 0.8rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    max-width: 500px;
    margin: 50px auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #9ca3af;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group textarea::placeholder {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.8;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group input[readonly] {
    background-color: #f8fafc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 1.5rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.contact-form {
    margin-top: 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* 404 Page Styles */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #f8fafc, #e2e8f0);
}

.error-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.error-404 h1 {
    font-size: 8rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    animation: pulse 2s infinite;
}

.error-404 h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 1rem 0;
}

.error-404 p {
    color: #64748b;
    margin-bottom: 2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .error-404 h1 {
        font-size: 6rem;
    }
    
    .error-404 h2 {
        font-size: 1.5rem;
    }
}
</pre></body></html>