/* --- VARIABLES Y RESET --- */
:root {
    --vicon-green: #008006;
    --vicon-green-hover: #008006;
    --vicon-dark: #1a1a1a;
    --vicon-gray: #f4f7f6;
    --white: #ffffff;
}

.diseno-web-page {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--vicon-dark);
    line-height: 1.6;
}

/* --- HERO SECTION --- */
.dw-hero {
    height: 750px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    
}


.dw-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.dw-hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.dw-btn-main {
    background-color: var(--vicon-green);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.dw-btn-main:hover {
    background-color: var(--vicon-green-hover);
    transform: translateY(-3px);
}

/* --- SECCIÓN DE PRECIOS --- */
.dw-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dw-header-text {
    text-align: center;
    margin-bottom: 60px;
}

.vicon-green-title {
    color: var(--vicon-green);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.dw-header-text p {
    font-size: 1.1rem;
    color: #666;
}

/* --- GRID DE TARJETAS --- */
.dw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dw-card {
    background: var(--white);
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.dw-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

/* Destacado (Web Pro) */
.dw-featured {
    border: 2px solid var(--vicon-green);
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.1);
}

.dw-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vicon-green);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Detalles de la Card */
.dw-card-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-align: center;
}

.dw-subtitle {
    display: block;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.dw-card-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.dw-card-info ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.dw-card-info ul li i {
    color: var(--vicon-green);
    font-size: 1rem;
}

/* Botones de Plan */
.dw-btn-plan {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--vicon-gray);
    color: var(--vicon-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    margin-top: auto; /* Empuja el botón al fondo */
    transition: background 0.3s;
}

.dw-btn-featured {
    background: var(--vicon-green);
    color: var(--white);
}

.dw-btn-plan:hover {
    filter: brightness(0.95);
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .dw-hero { height: 400px; }
    .vicon-green-title { font-size: 2.2rem; }
    .dw-grid { grid-template-columns: 1fr; }
}