        :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #f39c12;
            --light: #ecf0f1;
            --dark: #34495e;
            --success: #27ae60;
        }
        
        * {
            margin: -5px;block
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .promo-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: white;
            overflow: hidden;
            position: relative;
        }
        
        .promo-header {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 25px;
            border-radius: 10px 10px 0 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .promo-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }
        
        .promo-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        .promo-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            transform: rotate(15deg);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 3;
        }
        
        .promo-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px;
        }
        
        .promo-left {
            flex: 1;
            min-width: 300px;
            padding-right: 20px;
        }
        
        .promo-right {
            flex: 1;
            min-width: 300px;
            border-left: 1px dashed #ddd;
            padding-left: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .benefits-list {
            margin: 20px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            background-color: rgba(46, 204, 113, 0.1);
        }
        
        .benefit-item:hover {
            transform: translateX(5px);
            background-color: rgba(46, 204, 113, 0.2);
        }
        
        .benefit-icon {
            font-size: 1.5rem;
            color: var(--success);
            margin-right: 15px;
            min-width: 30px;
        }
        
        .price-box {
            background: linear-gradient(135deg, var(--accent), #e67e22);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .old-price {
            text-decoration: line-through;
            font-size: 1.2rem;
            opacity: 0.8;
        }
        
        .current-price {
            font-size: 3rem;
            font-weight: bold;
            margin: 10px 0;
        }
        
        .price-note {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
            border: none;
            cursor: pointer;
            width: 100%;
            margin-bottom: 20px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
            background-color: #c0392b;
        }

		.ini-sesion{
		    display: inline-block;
            background-color: lightgray;
            color: black;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
            border: none;
            cursor: pointer;
            width: 100%;
            margin-bottom: 20px;
		}

        .ini-sesion:hover {
			color:white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
            background-color: gray;<!--#c0392b;-->
        }
        
        .guarantee-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(46, 204, 113, 0.2);
            border: 2px dashed var(--success);
            padding: 15px;
            border-radius: 10px;
            margin-top: auto;
        }
        
        .guarantee-icon {
            font-size: 2rem;
            color: var(--success);
            margin-right: 15px;
        }
        
        .guarantee-text {
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .timer-container {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
        }
        
        .timer-title {
            font-size: 0.9rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
        .timer {
            font-size: 1.8rem;
            font-weight: bold;
            font-family: monospace;
        }
        
        @media (max-width: 768px) {
            .promo-content {
                flex-direction: column;
            }
            
            .promo-left, .promo-right {
                padding: 0;
                border-left: none;
            }
            
            .promo-right {
                margin-top: 30px;
            }
            
            .promo-header h1 {
                font-size: 2rem;
            }
        }

/* Inicia botón de WhatsApp */

    .h1Whats {
      color: #333;
    }

/*
.whatsapp-buttons{
    display: flex;
    justify-content: center;
    gap: 20px; /* separación entre botones */
 /*   flex-wrap: wrap;
    margin-top: 20px;
}

.whatsappBtn{
    background-color: #25D366;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}


.whatsappBtn:hover{
    background-color: #1ebe5d;
}

.whatsappBtn a{
    color: white;
    text-decoration: none;
    display: block;
}
*/



    #whatsappBtn {
      background-color: #25D366;
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 18px;
      border-radius: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
	  display: inline-block;
	  margin:5px;
    }

    #whatsappBtn:hover {
      background-color: #1ebe5d;
    }


	
    /* Top bar */
    .topbar{background:var(--primary);color:#fff}
    .container{max-width:1120px;margin:0 auto;padding:0 20px}
    .topbar-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 0;font-size:.95rem}
    .brand{display:flex;gap:10px;align-items:center;font-weight:700}
    .brand-logo{width:36px;height:36px;border-radius:8px;background:#fff;display:grid;place-items:center;color:var(--primary);font-weight:800}
    .contact{display:flex;gap:14px;align-items:center}
    .pill{display:inline-flex;align-items:center;gap:8px;background:#0b6; background:var(--whatsapp);color:#062; padding:6px 10px;border-radius:999px;color:#fff;font-weight:600}
    .pill svg{width:18px;height:18px}

	
	    /* FAQ */
    .faq{display:grid;gap:10px;}
    details{background:var(--card);border:1px solid black;border-radius:14px;padding:12px;margin:1px;}
	/*details{background:var(--card);border:1px solid #e5e7eb;border-radius:14px;padding:12px}*/
    summary{cursor:pointer;font-weight:700}

/*  .pill{display:inline-flex;align-items:center;gap:8px;background:#0b6; background:var(--whatsapp);color:#062; padding:6px 10px;border-radius:999px;color:#fff;font-weight:600}
    .pill svg{width:18px;height:18px}
*/	
	
	
	
	
	
	
	   /* Footer */
    footer{background:#0b1220;color:#cbd5e1;margin:auto;weight:70%;}
    .footer{display:grid;grid-template-columns:2.0fr 1.0fr;gap:18px;padding:30px 0}
	/*.footer{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:18px;padding:36px 0}*/
    .footer a{color:#cbd5e1}
    .copyright{border-top:1px solid #1f2937;padding:14px 0;color:#94a3b8;font-size:.9rem}

    /* Floating WhatsApp */
    .wa-float{position:fixed;right:18px;bottom:68px;z-index:50}
    .wa-float a{display:inline-flex;align-items:center;gap:10px;background:var(--whatsapp);color:#fff;padding:12px 14px;border-radius:999px;box-shadow:0 10px 25px rgba(0,0,0,.15);font-weight:700}

    /* Responsive */
    @media (max-width: 900px){
      .hero .inner{grid-template-columns:1fr}
      .pricing{grid-template-columns:1fr}
      .features{grid-template-columns:1fr}
      .grid-3{grid-template-columns:1fr}
      .nav-links{display:none}
      .burger{display:block}
    }
    
  .whatsapp-link {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f0f0f0;
  }
  
  .whatsapp-link:hover {
    background-color: #e0e0e0;
  }    
    
    /* Botón Ir Arriba */
    .ir-arriba{position:fixed;bottom:20px;right:20px;width:50px;height:50px;background-color:#1e3a8a;color:#fff;border:none;border-radius:50%;font-size:24px;font-weight:1900;cursor:pointer;display:none;align-items:center;justify-content:center;box-shadow:0 4px 10px rgba(0,0,0,0.3);z-index:999}
	/*.ir-arriba{position:fixed;bottom:20px;right:20px;width:50px;height:50px;background-color:var(--primary-dark);color:#fff;border:none;border-radius:50%;font-size:24px;cursor:pointer;display:none;align-items:center;justify-content:center;box-shadow:0 4px 10px rgba(0,0,0,0.3);z-index:999}*/
    .ir-arriba:hover{background-color:#0f172a;transform:translateY(-3px)}
    .ir-arriba::after{content:"↑"}
   


