/* Estilos para el Header y Logo */
.main-header {
    background-color: black;
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
	margin-bottom: 0;
    border-bottom: 1px solid #eee; /* Opcional: una línea sutil de separación */
	padding-bottom: 10px;
	margin: -10px;
}

.container-header {
    display: flex;
    justify-content: space-between; /* Esto empuja los elementos a los extremos */
    align-items: center;
    padding: 10px 20px;
}

.header-dev p {
    margin: 0;
    font-size: 0.9rem;
    color: white; /* Ajusta el color según tu diseño */
}

/* Reduce el espacio superior de la sección de planes */
.hosting-section {
	margin-top: 0;
    padding-top: 10px !important; /* Estaba probablemente en 60px o 80px */
}

.header-dev a {
    text-decoration: none;
    font-weight: bold;
    color: #007bff; /* Color del enlace */
}

/* Diseño del logo basado en texto */
.logo {
    font-size: 40px;
    font-family: 'Arial', sans-serif;
}

.logo-bold {
    color: #e30613; /* Paraguay Hosting */
    font-weight: bold;
}

.logo-light {
    color: #FFFFFF;
}

.logo-country {
    color: #004a99; /* Azul Paraguay */
    font-weight: bold;
    font-size: 28px;
    margin-left: 5px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    background: #f4f4f4;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background 0.3s;
}

.main-nav a:hover {
    background: #e8e8e8;
}

body { font-family: 'Segoe UI', sans-serif; background-color: #f4f7f6; margin: 0; color: #333; }
.container { max-width: 1100px; margin: auto; padding: 50px 20px; }
.main-title { text-align: center; font-size: 25px; margin-bottom: 0; color: #004a99; border-bottom: 1px solid #eee; padding-bottom: 0;}
.subtitle { text-align: center; margin-bottom: 90px; opacity: 0.8; font-size: 15px;}

/* Grid de Precios */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;

}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #eee;
	
}

.pricing-card:hover { transform: translateY(-10px); }

/* Plan Destacado */
.pricing-card.featured {
    border: 2px solid #004a99;
    transform: scale(1.05);
    z-index: 2;
}

.badge {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: #004a99; color: #fff; padding: 5px 20px;
    border-radius: 20px; font-size: 12px; font-weight: bold;
}

/* Elementos Internos */
.card-header h3 { font-size: 18px; margin-bottom: 5px; }
.icon { font-size: 40px; color: #004a99; margin-bottom: 20px; }
.price { font-size: 18px; font-weight: bold; margin-bottom: 20px; color: #333; }
.price span { font-size: 16px; font-weight: normal; color: #777; }

.features { list-style: none; padding: 0; margin-bottom: 20px; text-align: left; }
.features li { margin-bottom: 10px; font-size: 12px; display: flex; align-items: center; }
.features i { color: #25d366; margin-right: 10px; }
.features li.disabled { color: #ccc; text-decoration: line-through; }
.features li.disabled i { color: #ccc; }

.btn-plan {
    display: block; background: #004a99; color: #fff;
    padding: 12px; border-radius: 8px; text-decoration: none;
    font-weight: bold; transition: background 0.3s;
}

.btn-plan:hover { background: #003366; }
/* Estilos del botón flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

/* Ajuste para móviles */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    padding: 10px 20px; /* Espaciado interno para que parezca botón */
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre el icono y el texto */
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px; /* Icono un poco más grande */
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px); /* Salto sutil al pasar el mouse */
    color: #FFF;
}

/* Ajuste para móviles: ocultar el texto si el espacio es poco */
@media screen and (max-width: 480px) {
    .whatsapp-float span {
        display: none; /* En celulares pequeños solo queda el icono circular */
    }
    .whatsapp-float {
        padding: 15px;
        right: 20px;
        bottom: 20px;
    }
}
.main-footer {
            text-align: center;
            padding: 20px;
            background-color: #f4f4f4; /* Color suave para el fondo */
            color: #555;
            font-size: 14px;
            margin-top: 40px;
        }
        .main-footer a {
            color: #007bff; /* Color del link */
            text-decoration: none;
            font-weight: bold;
        }
        .main-footer a:hover {
            text-decoration: underline;
        }

