* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #f4f6f9;
color: #1a1a2e;
padding: 0;
line-height: 1.6;
}
.container { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
/* Header */
.header {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: white;
padding: 48px 40px;
border-radius: 16px;
margin-bottom: 28px;
}
.badge {
display: inline-block;
background: #e94560;
color: white;
font-size: 13px;
font-weight: 700;
padding: 5px 14px;
border-radius: 20px;
letter-spacing: 0.5px;
margin-bottom: 14px;
}
.header h1 {
font-size: 32px;
font-weight: 800;
margin-bottom: 6px;
}
.header .subtitle {
font-size: 16px;
opacity: 0.8;
font-weight: 400;
}
/* Card base */
.card {
background: white;
border: 1px solid #e0e4ec;
border-radius: 12px;
padding: 28px 32px;
margin-bottom: 24px;
}
.card h2 {
font-size: 18px;
font-weight: 700;
margin-bottom: 20px;
color: #1a1a2e;
display: flex;
align-items: center;
gap: 8px;
}
.card h2 .icon { font-size: 20px; }
/* Grid layouts */
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.grid-3 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 16px;
}
.field-label {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.8px;
color: #7a7f93;
margin-bottom: 4px;
}
.field-value {
font-size: 15px;
font-weight: 500;
color: #1a1a2e;
}
.field-value a {
color: #2563eb;
text-decoration: none;
}
.field-value a:hover { text-decoration: underline; }
/* Pricing boxes */
.pricing-box {
background: #f0f4ff;
border: 1px solid #d6e0f0;
border-radius: 10px;
padding: 20px 16px;
text-align: center;
}
.pricing-box .amount {
font-size: 28px;
font-weight: 800;
color: #1a1a2e;
margin-bottom: 4px;
}
.pricing-box .label {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.6px;
color: #7a7f93;
margin-bottom: 2px;
}
.pricing-box .detail {
font-size: 13px;
color: #5a5f73;
}
/* Contact card */
.contact-row {
display: flex;
align-items: center;
gap: 16px;
padding: 12px 0;
border-bottom: 1px solid #f0f2f5;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .c-icon {
width: 40px;
height: 40px;
background: #f0f4ff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
flex-shrink: 0;
}
.contact-row .c-label {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.6px;
color: #7a7f93;
}
.contact-row .c-value {
font-size: 15px;
font-weight: 500;
}
.contact-row .c-value a {
color: #2563eb;
text-decoration: none;
}
/* Economic table */
.econ-table {
width: 100%;
border-collapse: collapse;
}
.econ-table th {
text-align: left;
padding: 10px 14px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.6px;
color: #7a7f93;
border-bottom: 2px solid #e0e4ec;
}
.econ-table td {
padding: 12px 14px;
font-size: 15px;
border-bottom: 1px solid #eef1f6;
}
.econ-table td:last-child,
.econ-table th:last-child {
text-align: right;
font-weight: 600;
}
.econ-table tr.total td {
background: #f0f4ff;
font-weight: 700;
font-size: 16px;
border-top: 2px solid #d6e0f0;
border-bottom: none;
}
/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
content: »;
position: absolute;
left: 8px;
top: 6px;
bottom: 6px;
width: 2px;
background: #e0e4ec;
}
.tl-item {
position: relative;
padding: 0 0 24px 16px;
font-size: 14px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item .dot {
position: absolute;
left: -24px;
top: 4px;
width: 14px;
height: 14px;
border-radius: 50%;
border: 2px solid white;
z-index: 1;
}
.tl-item .dot.completed { background: #22c55e; }
.tl-item .dot.pending { background: #eab308; }
.tl-item .tl-title {
font-weight: 600;
color: #1a1a2e;
}
.tl-item .tl-date {
font-size: 12px;
color: #7a7f93;
margin-top: 2px;
}
/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
display: inline-block;
padding: 5px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.3px;
}
.tag-primary { background: #2563eb; color: white; }
.tag-success { background: #16a34a; color: white; }
.tag-warning { background: #d97706; color: white; }
.tag-default { background: #e5e7eb; color: #4b5563; }
.tag-accent { background: #e94560; color: white; }
/* Responsive */
@media (max-width: 600px) {
.container { padding: 16px 12px; }
.header { padding: 32px 20px; }
.card { padding: 20px 16px; }
.grid-2, .grid-3 { grid-template-columns: 1fr; }
.header h1 { font-size: 24px; }
}
📋 Información General
💵 Pricing
📞 Contacto
📊 Desglose Económico
| Concepto | Importe |
|---|---|
| Cuota de Franquicia | $300,000 MXN |
| Equipamiento y Mobiliario | $90,000 MXN |
| Capacitación Inicial | $35,000 MXN |
| Marketing de Apertura | $25,000 MXN |
| Inversión Total Estimada | $450,000 MXN |
📅 Timeline de la Oportunidad
🏷 Etiquetas
Únete a nuestro canal de WhatsApp
Recibe las noticias más importantes y exclusivas.