Spaces:
Running
Running
File size: 65,749 Bytes
554900c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Housemoney - Dossier Premium de Gestión de Alquileres Vacacionales</title>
<!-- Preload fonts for crisp PDF rendering -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* Design Tokens - Spacing & Radii */
--space-1: 0.5rem;
--space-2: 1rem;
--space-3: 1.5rem;
--space-4: 2rem;
--space-5: 2.5rem;
--space-6: 3rem;
--space-8: 4rem;
--space-12: 6rem;
--space-16: 8rem;
--space-20: 10rem;
--space-24: 12rem;
--space-32: 16rem;
--radius: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
/* Typography Scale */
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
--text-lg: 1.125rem;
--text-xl: 1.25rem;
--text-2xl: 1.5rem;
--text-3xl: 1.875rem;
--text-4xl: 2.25rem;
--text-5xl: 3rem;
--text-6xl: 3.75rem;
/* Luxury Color Palette */
--gold: #D4AF37;
--gold-light: #F4E5C2;
--gold-dark: #B8941F;
--gold-accent: #FFD700;
--navy: #0A1628;
--navy-light: #1A2F4B;
--navy-medium: #2C4B6B;
--charcoal: #2C3E50;
--pearl: #FAFAF8;
--cream: #FFF8F0;
--silver: #C0C0C0;
--success: #2D7D32;
--success-light: #4CAF50;
--warning: #F57C00;
--text-primary: #2C3E50;
--text-secondary: #5D6D7E;
--text-light: #707B85;
--border: #E8E8E8;
--border-gold: rgba(212, 175, 55, 0.3);
/* Gradients */
--gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8941F 100%);
--gradient-navy: linear-gradient(135deg, #0A1628 0%, #1A2F4B 100%);
--gradient-luxury: linear-gradient(135deg, #F4E5C2 0%, #FFF8F0 50%, #FAFAF8 100%);
}
/* A4 Page Setup */
@page {
size: A4;
margin: 0;
}
body {
font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
font-size: var(--text-base);
line-height: 1.6;
color: var(--text-primary);
background: white;
margin: 0;
padding: 0;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', 'Georgia', serif;
font-weight: 700;
letter-spacing: 0.5px;
line-height: 1.2;
margin-bottom: var(--space-3);
text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }
/* A4 Page Container */
.page {
width: 210mm;
min-height: 297mm;
padding: var(--space-12) var(--space-8);
margin: 0 auto;
background: white;
position: relative;
page-break-after: always;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
border-radius: var(--radius);
}
/* Elegant page decorations */
.page::before {
content: '';
position: absolute;
top: var(--space-4);
left: var(--space-4);
right: var(--space-4);
bottom: var(--space-4);
border: 1px solid var(--border-gold);
opacity: 0.6;
pointer-events: none;
border-radius: var(--radius);
}
.page::after {
content: '';
position: absolute;
top: var(--space-6);
left: var(--space-6);
right: var(--space-6);
bottom: var(--space-6);
border: 1px solid var(--gold);
opacity: 0.3;
pointer-events: none;
border-radius: var(--radius);
}
.page-number {
position: absolute;
bottom: var(--space-8);
right: var(--space-8);
font-size: var(--text-sm);
color: var(--text-light);
font-family: 'Inter', Arial, sans-serif;
}
/* Cover Page */
.cover-page {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
background: var(--gradient-luxury);
}
.cover-logo {
width: var(--space-32);
height: var(--space-32);
margin-bottom: var(--space-12);
position: relative;
}
.cover-title {
font-size: var(--text-6xl);
color: var(--navy);
margin-bottom: var(--space-4);
letter-spacing: 3px;
line-height: 1.1;
}
.cover-subtitle {
font-size: var(--text-3xl);
color: var(--gold);
margin-bottom: var(--space-16);
font-weight: 500;
letter-spacing: 1.5px;
}
.cover-tagline {
font-size: var(--text-xl);
color: var(--text-secondary);
font-style: italic;
margin-bottom: var(--space-20);
max-width: 160mm;
line-height: 1.7;
font-weight: 400;
}
.cover-contact {
position: absolute;
bottom: var(--space-12);
left: var(--space-8);
right: var(--space-8);
display: flex;
justify-content: space-between;
font-size: var(--text-sm);
color: var(--text-secondary);
font-family: 'Inter', Arial, sans-serif;
}
/* Section Headers */
.section-header {
margin-bottom: var(--space-16);
text-align: center;
position: relative;
}
.section-number {
font-size: var(--text-6xl);
color: var(--gold);
opacity: 0.15;
font-weight: 300;
line-height: 1;
margin-bottom: calc(var(--space-8) * -1);
font-family: 'Playfair Display', serif;
}
.section-title {
font-size: var(--text-5xl);
color: var(--navy);
position: relative;
z-index: 1;
margin-bottom: var(--space-4);
line-height: 1.2;
}
.section-subtitle {
font-size: var(--text-lg);
color: var(--text-secondary);
font-weight: 400;
font-family: 'Inter', Arial, sans-serif;
font-style: italic;
}
/* Elegant Divider */
.gold-divider {
width: var(--space-24);
height: 2px;
background: var(--gradient-gold);
margin: var(--space-12) auto;
position: relative;
border-radius: var(--radius);
}
.gold-divider::before,
.gold-divider::after {
content: '';
position: absolute;
top: -3px;
width: 8px;
height: 8px;
background: var(--gold);
border-radius: 50%;
}
.gold-divider::before { left: -4px; }
.gold-divider::after { right: -4px; }
/* Content Sections */
.content-block {
margin-bottom: var(--space-8);
}
.content-title {
font-size: var(--text-3xl);
color: var(--navy);
margin-bottom: var(--space-6);
display: flex;
align-items: center;
gap: var(--space-4);
}
.gold-accent {
width: var(--space-6);
height: 3px;
background: var(--gradient-gold);
border-radius: var(--radius);
}
.content-text {
font-size: var(--text-lg);
line-height: 1.7;
color: var(--text-primary);
text-align: justify;
margin-bottom: var(--space-6);
}
/* Enhanced Statistics Grid */
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-8);
margin: var(--space-16) 0;
}
.stat-card {
text-align: center;
padding: var(--space-12) var(--space-8);
border: 1px solid var(--border-gold);
position: relative;
background: var(--gradient-luxury);
border-radius: var(--radius-lg);
overflow: hidden;
}
.stat-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient-gold);
}
.stat-card::after {
content: '';
position: absolute;
top: var(--space-4);
left: var(--space-4);
right: var(--space-4);
bottom: var(--space-4);
border: 1px solid var(--border-gold);
opacity: 0.4;
border-radius: var(--radius);
}
.stat-value {
font-size: var(--text-6xl);
color: var(--gold);
font-weight: 800;
margin-bottom: var(--space-3);
font-family: 'Playfair Display', serif;
position: relative;
z-index: 1;
}
.stat-label {
font-size: var(--text-lg);
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 1.5px;
font-family: 'Inter', Arial, sans-serif;
font-weight: 600;
position: relative;
z-index: 1;
}
.stat-description {
font-size: var(--text-sm);
color: var(--text-light);
margin-top: var(--space-2);
font-style: italic;
position: relative;
z-index: 1;
}
/* Enhanced Features List */
.luxury-list {
list-style: none;
padding: 0;
}
.luxury-list li {
position: relative;
padding-left: var(--space-8);
margin-bottom: var(--space-6);
font-size: var(--text-lg);
line-height: 1.6;
color: var(--text-primary);
}
.luxury-list li::before {
content: '';
position: absolute;
left: 0;
top: var(--space-2);
width: var(--space-5);
height: 2px;
background: var(--gradient-gold);
border-radius: var(--radius);
}
.luxury-list li::after {
content: '●';
position: absolute;
left: 0;
color: var(--gold);
font-size: var(--text-lg);
top: -2px;
}
/* Enhanced Service Cards */
.service-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-8);
margin: var(--space-16) 0;
}
.service-card {
padding: var(--space-12);
border: 1px solid var(--border-gold);
background: var(--gradient-luxury);
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: var(--gradient-gold);
}
.service-icon {
width: var(--space-20);
height: var(--space-20);
margin-bottom: var(--space-8);
position: relative;
}
.service-title {
font-size: var(--text-2xl);
color: var(--navy);
margin-bottom: var(--space-4);
line-height: 1.3;
}
.service-description {
font-size: var(--text-base);
color: var(--text-secondary);
line-height: 1.6;
}
/* Enhanced Process Timeline */
.timeline {
position: relative;
padding: var(--space-16) 0;
}
.timeline::before {
content: '';
position: absolute;
left: var(--space-16);
top: 0;
bottom: 0;
width: 2px;
background: var(--gradient-gold);
border-radius: var(--radius);
}
.timeline-item {
display: flex;
margin-bottom: var(--space-16);
position: relative;
}
.timeline-number {
width: var(--space-32);
text-align: center;
flex-shrink: 0;
}
.timeline-circle {
width: var(--space-20);
height: var(--space-20);
background: var(--gradient-gold);
color: var(--navy);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: var(--text-2xl);
font-weight: 800;
margin: 0 auto;
position: relative;
z-index: 2;
border: 4px solid white;
box-shadow: 0 0 0 2px var(--gold);
}
.timeline-content {
flex: 1;
padding-left: var(--space-12);
}
.timeline-title {
font-size: var(--text-2xl);
color: var(--navy);
margin-bottom: var(--space-4);
}
.timeline-description {
font-size: var(--text-base);
color: var(--text-secondary);
line-height: 1.6;
}
/* Enhanced Pricing Table */
.pricing-table {
border: 1px solid var(--gold);
margin: var(--space-16) 0;
background: white;
border-radius: var(--radius-lg);
overflow: hidden;
}
.pricing-header {
background: var(--gradient-navy);
color: white;
padding: var(--space-12);
text-align: center;
position: relative;
}
.pricing-header::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient-gold);
}
.pricing-title {
font-size: var(--text-4xl);
margin-bottom: var(--space-4);
line-height: 1.2;
}
.pricing-value {
font-size: var(--text-6xl);
color: var(--gold-accent);
font-weight: 800;
font-family: 'Playfair Display', serif;
}
.pricing-commission {
font-size: var(--text-xl);
margin-top: var(--space-4);
opacity: 0.9;
}
.pricing-features {
padding: var(--space-16);
}
.pricing-category {
margin-bottom: var(--space-12);
}
.pricing-category-title {
font-size: var(--text-2xl);
color: var(--navy);
margin-bottom: var(--space-6);
padding-bottom: var(--space-3);
border-bottom: 1px solid var(--gold);
position: relative;
}
.pricing-category-title::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: var(--space-16);
height: 2px;
background: var(--gradient-gold);
border-radius: var(--radius);
}
/* Enhanced Contact Section */
.contact-section {
background: var(--gradient-navy);
color: white;
padding: var(--space-20);
margin: calc(var(--space-12) * -1) calc(var(--space-8) * -1);
text-align: center;
position: relative;
border-radius: var(--radius-lg);
}
.contact-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: var(--gradient-gold);
}
.contact-title {
font-size: var(--text-5xl);
margin-bottom: var(--space-8);
line-height: 1.2;
}
.contact-subtitle {
font-size: var(--text-xl);
margin-bottom: var(--space-16);
opacity: 0.9;
line-height: 1.6;
}
.contact-info {
display: flex;
justify-content: center;
gap: var(--space-20);
font-size: var(--text-xl);
}
.contact-item {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--space-3);
}
.contact-icon {
width: var(--space-12);
height: var(--space-12);
background: var(--gradient-gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: var(--text-xl);
color: var(--navy);
font-weight: bold;
}
/* Links */
a {
color: var(--gold-dark) !important;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover, a:focus {
color: var(--gold-accent) !important;
}
/* Trust Indicators */
.trust-bar {
background: var(--pearl);
padding: var(--space-8) 0;
margin: var(--space-12) calc(var(--space-8) * -1);
border-top: 1px solid var(--border-gold);
border-bottom: 1px solid var(--border-gold);
border-radius: var(--radius);
}
.trust-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-6);
text-align: center;
}
.trust-item {
padding: var(--space-4);
}
.trust-value {
font-size: var(--text-4xl);
color: var(--gold);
font-weight: 800;
font-family: 'Playfair Display', serif;
}
.trust-label {
font-size: var(--text-sm);
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 1px;
margin-top: var(--space-2);
}
/* Technology Features Grid */
.tech-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-8);
margin: var(--space-12) 0;
}
.tech-card {
text-align: center;
padding: var(--space-8) var(--space-5);
border: 1px solid var(--border-gold);
background: var(--gradient-luxury);
border-radius: var(--radius-lg);
}
.tech-icon {
width: var(--space-16);
height: var(--space-16);
margin: 0 auto var(--space-4);
background: var(--gradient-gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--navy);
font-size: var(--text-3xl);
font-weight: bold;
}
.tech-title {
font-size: var(--text-xl);
color: var(--navy);
font-weight: 600;
margin-bottom: var(--space-2);
}
.tech-description {
font-size: var(--text-sm);
color: var(--text-secondary);
line-height: 1.5;
}
/* Print Styles */
@media print {
body {
margin: 0;
padding: 0;
}
.page {
margin: 0;
box-shadow: none;
page-break-after: always;
border-radius: 0;
}
.page:last-child {
page-break-after: auto;
}
}
/* Screen Preview Styles */
@media screen {
body {
background: #e8e8e8;
padding: var(--space-8) 0;
}
.page {
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
margin-bottom: var(--space-12);
}
}
</style>
```
</head>
<body>
<!-- Page 1: Cover -->
<div class="page cover-page">
<div class="cover-logo">
<svg viewBox="0 0 400 400" style="width: 100%; height: 100%;">
<defs>
<linearGradient id="goldGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="50%" style="stop-color:#D4AF37;stop-opacity:1" />
<stop offset="100%" style="stop-color:#B8941F;stop-opacity:1" />
</linearGradient>
<linearGradient id="navyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0A1628;stop-opacity:1" />
<stop offset="100%" style="stop-color:#1A2F4B;stop-opacity:1" />
</linearGradient>
</defs>
```
<rect x="20" y="20" width="360" height="360" fill="none" stroke="url(#goldGradient)" stroke-width="3" rx="8"/>
<rect x="30" y="30" width="340" height="340" fill="none" stroke="url(#goldGradient)" stroke-width="1" opacity="0.5" rx="6"/>
<polygon points="200,60 320,130 320,270 200,340 80,270 80,130"
fill="none" stroke="url(#goldGradient)" stroke-width="4" opacity="0.8"/>
<polygon points="200,80 300,140 300,260 200,320 100,260 100,140"
fill="none" stroke="url(#goldGradient)" stroke-width="2" opacity="0.6"/>
<g transform="translate(200, 200)">
<path d="M-50 -20 L0 -60 L50 -20 L50 40 L30 40 L30 10 L-30 10 L-30 40 L-50 40 Z"
fill="url(#navyGradient)"/>
<rect x="-12" y="10" width="24" height="30" fill="url(#goldGradient)" rx="2"/>
<rect x="-35" y="-5" width="15" height="12" fill="url(#goldGradient)" opacity="0.8" rx="2"/>
<rect x="20" y="-5" width="15" height="12" fill="url(#goldGradient)" opacity="0.8" rx="2"/>
<path d="M-45 -20 L0 -55 L45 -20" stroke="url(#goldGradient)" stroke-width="3" fill="none"/>
<circle cx="25" cy="25" r="8" fill="url(#goldGradient)" opacity="0.9"/>
<text x="25" y="30" text-anchor="middle" fill="#0A1628" font-size="8" font-weight="bold">IA</text>
</g>
<circle cx="50" cy="50" r="8" fill="url(#goldGradient)" opacity="0.3"/>
<circle cx="350" cy="50" r="8" fill="url(#goldGradient)" opacity="0.3"/>
<circle cx="50" cy="350" r="8" fill="url(#goldGradient)" opacity="0.3"/>
<circle cx="350" cy="350" r="8" fill="url(#goldGradient)" opacity="0.3"/>
<text x="200" y="280" text-anchor="middle" fill="#0A1628" font-size="32" font-weight="800" font-family="Playfair Display, serif">HOUSEMONEY</text>
<text x="200" y="300" text-anchor="middle" fill="#D4AF37" font-size="12" font-family="Arial, sans-serif" letter-spacing="4">MADRID</text>
<text x="200" y="330" text-anchor="middle" fill="#5D6D7E" font-size="10" font-style="italic">Gestión Premium Automatizada</text>
</svg>
</div>
<h1 class="cover-title">DOSSIER EJECUTIVO</h1>
<h2 class="cover-subtitle">Gestión Inteligente de Alquileres Vacacionales</h2>
<p class="cover-tagline">
Transformamos propiedades exclusivas en inversiones extraordinarias mediante
tecnología de inteligencia artificial, automatización total y servicio de consejería premium
</p>
<div class="gold-divider"></div>
<div class="cover-contact">
<span><a href="mailto:[email protected]">[email protected]</a></span>
<span>2025 - Confidencial</span>
<span><a href="https://wa.me/34679794037">+34 679 794 037</a></span>
</div>
</div>
<!-- Page 2: Executive Summary -->
<div class="page">
<div class="section-header">
<div class="section-number">01</div>
<h2 class="section-title">Resumen Ejecutivo</h2>
<p class="section-subtitle">Revolucionando la gestión inmobiliaria con tecnología inteligente</p>
</div>
<div class="content-block">
<p class="content-text">
Housemoney representa la evolución definitiva en la gestión de propiedades vacacionales
de alto standing en Madrid. Nuestro ecosistema tecnológico combina inteligencia artificial,
automatización completa y servicios de consejería premium para maximizar el rendimiento
de su inversión inmobiliaria sin comprometer la excelencia operativa.
</p>
</div>
<div class="trust-bar">
<div class="trust-grid">
<div class="trust-item">
<div class="trust-value">Multi</div>
<div class="trust-label">Propiedades Activas</div>
</div>
<div class="trust-item">
<div class="trust-value">40+</div>
<div class="trust-label">Plataformas</div>
</div>
<div class="trust-item">
<div class="trust-value">★★★★★</div>
<div class="trust-label">Valoración</div>
</div>
<div class="trust-item">
<div class="trust-value">24/7</div>
<div class="trust-label">Soporte</div>
</div>
</div>
</div>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-value">MAX</div>
<div class="stat-label">Incremento de Ingresos</div>
<div class="stat-description">vs. gestión tradicional</div>
</div>
<div class="stat-card">
<div class="stat-value">ALTA</div>
<div class="stat-label">Ocupación Media</div>
<div class="stat-description">anual garantizada</div>
</div>
<div class="stat-card">
<div class="stat-value">EXPRESS</div>
<div class="stat-label">Activación</div>
<div class="stat-description">proceso rápido</div>
</div>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Propuesta de Valor Diferencial
</h3>
<p class="content-text">
En un mercado saturado de gestores tradicionales, Housemoney se distingue por su
enfoque tecnológico integral. Nuestro sistema de inteligencia artificial optimiza
precios en tiempo real analizando múltiples variables de mercado, mientras que la
automatización completa del check-in y la gestión 24/7 garantizan una experiencia
impecable para huéspedes y propietarios.
</p>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Compromiso con la Excelencia
</h3>
<ul class="luxury-list">
<li>Tecnología propietaria de última generación con machine learning avanzado</li>
<li>Equipo multilingüe especializado disponible las 24 horas del día</li>
<li>Cumplimiento total de la normativa local aplicable</li>
<li>Transparencia absoluta con dashboard analytics en tiempo real</li>
<li>Modelo de negocio alineado: solo ganamos cuando usted gana</li>
</ul>
</div>
<div class="page-number">2</div>
</div>
<!-- Page 3: Technology & Automation -->
<div class="page">
<div class="section-header">
<div class="section-number">02</div>
<h2 class="section-title">Ecosistema Tecnológico</h2>
<p class="section-subtitle">Automatización inteligente para máximo rendimiento</p>
</div>
<div class="tech-grid">
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 80 80" style="width: 100%; height: 100%;">
<circle cx="40" cy="40" r="35" fill="none" stroke="currentColor" stroke-width="2" opacity="0.3"/>
<circle cx="40" cy="40" r="25" fill="none" stroke="currentColor" stroke-width="3" opacity="0.5"/>
<circle cx="25" cy="25" r="4" fill="currentColor"/>
<circle cx="55" cy="25" r="4" fill="currentColor"/>
<circle cx="25" cy="55" r="4" fill="currentColor"/>
<circle cx="55" cy="55" r="4" fill="currentColor"/>
<circle cx="40" cy="40" r="6" fill="currentColor"/>
<line x1="25" y1="25" x2="40" y2="40" stroke="currentColor" stroke-width="1" opacity="0.6"/>
<line x1="55" y1="25" x2="40" y2="40" stroke="currentColor" stroke-width="1" opacity="0.6"/>
<line x1="25" y1="55" x2="40" y2="40" stroke="currentColor" stroke-width="1" opacity="0.6"/>
<line x1="55" y1="55" x2="40" y2="40" stroke="currentColor" stroke-width="1" opacity="0.6"/>
</svg>
</div>
<h4 class="tech-title">Inteligencia Artificial</h4>
<p class="tech-description">Optimización de precios con análisis predictivo avanzado</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 80 80" style="width: 100%; height: 100%;">
<rect x="20" y="30" width="40" height="30" rx="4" fill="none" stroke="currentColor" stroke-width="2"/>
<circle cx="40" cy="45" r="8" fill="none" stroke="currentColor" stroke-width="2"/>
<path d="M32 45 L32 35 A8 8 0 0 1 48 35 L48 45" fill="none" stroke="currentColor" stroke-width="2"/>
<circle cx="40" cy="50" r="2" fill="currentColor"/>
<rect x="30" y="20" width="20" height="6" rx="2" fill="currentColor" opacity="0.3"/>
</svg>
</div>
<h4 class="tech-title">Acceso Inteligente</h4>
<p class="tech-description">Cerraduras premium con códigos temporales únicos</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 80 80" style="width: 100%; height: 100%;">
<rect x="25" y="15" width="30" height="50" rx="6" fill="none" stroke="currentColor" stroke-width="2"/>
<rect x="30" y="20" width="20" height="30" rx="2" fill="currentColor" opacity="0.2"/>
<circle cx="40" cy="58" r="3" fill="currentColor"/>
<path d="M15 30 Q20 25 25 30" stroke="currentColor" stroke-width="2" fill="none" opacity="0.5"/>
<path d="M55 30 Q60 25 65 30" stroke="currentColor" stroke-width="2" fill="none" opacity="0.5"/>
</svg>
</div>
<h4 class="tech-title">Control Remoto</h4>
<p class="tech-description">Gestión completa desde dispositivos móviles</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 80 80" style="width: 100%; height: 100%;">
<rect x="15" y="15" width="50" height="40" rx="2" fill="none" stroke="currentColor" stroke-width="2"/>
<polyline points="20,45 30,35 40,40 50,25 60,30" stroke="currentColor" stroke-width="2" fill="none"/>
<circle cx="20" cy="45" r="2" fill="currentColor"/>
<circle cx="30" cy="35" r="2" fill="currentColor"/>
<circle cx="40" cy="40" r="2" fill="currentColor"/>
<circle cx="50" cy="25" r="2" fill="currentColor"/>
<circle cx="60" cy="30" r="2" fill="currentColor"/>
</svg>
</div>
<h4 class="tech-title">Analytics Avanzado</h4>
<p class="tech-description">Dashboard con métricas en tiempo real</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 80 80" style="width: 100%; height: 100%;">
<circle cx="40" cy="40" r="8" fill="currentColor"/>
<circle cx="20" cy="20" r="6" fill="none" stroke="currentColor" stroke-width="2"/>
<circle cx="60" cy="20" r="6" fill="none" stroke="currentColor" stroke-width="2"/>
<circle cx="20" cy="60" r="6" fill="none" stroke="currentColor" stroke-width="2"/>
<circle cx="60" cy="60" r="6" fill="none" stroke="currentColor" stroke-width="2"/>
<line x1="25" y1="25" x2="35" y2="35" stroke="currentColor" stroke-width="1"/>
<line x1="55" y1="25" x2="45" y2="35" stroke="currentColor" stroke-width="1"/>
<line x1="25" y1="55" x2="35" y2="45" stroke="currentColor" stroke-width="1"/>
<line x1="55" y1="55" x2="45" y2="45" stroke="currentColor" stroke-width="1"/>
</svg>
</div>
<h4 class="tech-title">Multi-Plataforma</h4>
<p class="tech-description">Sincronización con múltiples canales</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 80 80" style="width: 100%; height: 100%;">
<path d="M15 25 Q15 15 25 15 L55 15 Q65 15 65 25 L65 40 Q65 50 55 50 L30 50 L20 60 L25 50 Q15 50 15 40 Z"
fill="none" stroke="currentColor" stroke-width="2"/>
<circle cx="30" cy="32" r="2" fill="currentColor"/>
<circle cx="40" cy="32" r="2" fill="currentColor"/>
<circle cx="50" cy="32" r="2" fill="currentColor"/>
</svg>
</div>
<h4 class="tech-title">Comunicación</h4>
<p class="tech-description">Respuestas automáticas multiidioma</p>
</div>
</div>
<div class="service-grid">
<div class="service-card">
<div class="service-icon">
<svg viewBox="0 0 200 200" style="width: 100%; height: 100%;">
<circle cx="100" cy="100" r="90" fill="none" stroke="#D4AF37" stroke-width="2" opacity="0.3"/>
<circle cx="100" cy="100" r="70" fill="none" stroke="#D4AF37" stroke-width="3" opacity="0.5"/>
<g>
<circle cx="60" cy="60" r="8" fill="#D4AF37"/>
<circle cx="140" cy="60" r="8" fill="#D4AF37"/>
<circle cx="60" cy="140" r="8" fill="#D4AF37"/>
<circle cx="140" cy="140" r="8" fill="#D4AF37"/>
<circle cx="100" cy="100" r="12" fill="#0A1628"/>
<line x1="60" y1="60" x2="100" y2="100" stroke="#D4AF37" stroke-width="2" opacity="0.6"/>
<line x1="140" y1="60" x2="100" y2="100" stroke="#D4AF37" stroke-width="2" opacity="0.6"/>
<line x1="60" y1="140" x2="100" y2="100" stroke="#D4AF37" stroke-width="2" opacity="0.6"/>
<line x1="140" y1="140" x2="100" y2="100" stroke="#D4AF37" stroke-width="2" opacity="0.6"/>
</g>
<text x="100" y="105" text-anchor="middle" fill="white" font-size="16" font-weight="bold">IA</text>
<path d="M20 100 Q40 80 60 60" stroke="#FFD700" stroke-width="2" fill="none" opacity="0.8"/>
<path d="M180 100 Q160 80 140 60" stroke="#FFD700" stroke-width="2" fill="none" opacity="0.8"/>
</svg>
</div>
<h3 class="service-title">Inteligencia Artificial Avanzada</h3>
<p class="service-description">
Sistema neuronal que procesa datos de mercado, eventos locales, competencia y
comportamiento de usuarios para optimizar precios automáticamente. Incremento
significativo en ingresos mediante machine learning predictivo y análisis
de patrones de demanda en tiempo real.
</p>
</div>
<div class="service-card">
<div class="service-icon">
<svg viewBox="0 0 200 200" style="width: 100%; height: 100%;">
<rect x="20" y="40" width="60" height="35" rx="4" fill="#0A1628" opacity="0.1"/>
<rect x="30" y="50" width="40" height="20" rx="3" fill="#D4AF37" opacity="0.2"/>
<circle cx="50" cy="60" r="8" fill="none" stroke="#D4AF37" stroke-width="2"/>
<path d="M42 60 L42 52 A8 8 0 0 1 58 52 L58 60"
fill="none" stroke="#D4AF37" stroke-width="2"/>
<circle cx="50" cy="63" r="2" fill="#0A1628"/>
<rect x="35" y="35" width="30" height="8" rx="2" fill="#0A1628"/>
<text x="50" y="41" text-anchor="middle" fill="#FFD700" font-size="4">****</text>
<g transform="translate(90, 40)">
<path d="M0 8 Q4 4 8 8" stroke="#D4AF37" stroke-width="1" fill="none" opacity="0.4"/>
<path d="M-2 10 Q4 2 10 10" stroke="#D4AF37" stroke-width="1" fill="none" opacity="0.6"/>
<path d="M-4 12 Q4 0 12 12" stroke="#D4AF37" stroke-width="1" fill="none" opacity="0.8"/>
</g>
<rect x="150" y="120" width="30" height="50" rx="6" fill="#0A1628"/>
<rect x="155" y="125" width="20" height="40" rx="4" fill="#D4AF37" opacity="0.3"/>
<circle cx="165" cy="160" r="3" fill="#FFD700"/>
</svg>
</div>
<h3 class="service-title">Sistema de Acceso Premium</h3>
<p class="service-description">
Cerraduras inteligentes de última generación instaladas tanto en portal como
en la vivienda. Códigos únicos temporales, funcionamiento silencioso y discreto,
control remoto total. Instalación profesional valorada en 400€ completamente incluida.
</p>
</div>
<div class="service-card">
<div class="service-icon">
<svg viewBox="0 0 200 200" style="width: 100%; height: 100%;">
<rect x="20" y="40" width="60" height="35" rx="4" fill="#0A1628" opacity="0.1"/>
<circle cx="50" cy="57" r="15" fill="none" stroke="#D4AF37" stroke-width="2"/>
<circle cx="50" cy="57" r="10" fill="#D4AF37" opacity="0.2"/>
<circle cx="50" cy="57" r="6" fill="#0A1628"/>
<path d="M44 51 Q50 47 56 51" fill="white" opacity="0.3"/>
<circle cx="65" cy="47" r="2" fill="#FFD700"/>
<rect x="35" y="35" width="8" height="5" rx="2" fill="#D4AF37" opacity="0.5"/>
<g transform="translate(10, 10)">
<rect x="0" y="0" width="20" height="15" fill="white" stroke="#D4AF37" stroke-width="1" rx="1"/>
<rect x="2" y="2" width="16" height="11" fill="#F4E5C2" rx="1"/>
</g>
<g transform="translate(70, 15)">
<rect x="0" y="0" width="20" height="15" fill="white" stroke="#D4AF37" stroke-width="1" rx="1"/>
<rect x="2" y="2" width="16" height="11" fill="#F4E5C2" rx="1"/>
</g>
<text x="50" y="88" text-anchor="middle" fill="#D4AF37" font-size="7" font-weight="bold">360°</text>
</svg>
</div>
<h3 class="service-title">Marketing Visual Premium</h3>
<p class="service-description">
Sesión fotográfica profesional con equipo de alta definición. Más de 50 imágenes
optimizadas, tour virtual 360° interactivo y staging digital. Posicionamiento
premium en todas las plataformas con técnicas SEO avanzadas.
</p>
</div>
<div class="service-card">
<div class="service-icon">
<svg viewBox="0 0 200 200" style="width: 100%; height: 100%;">
<circle cx="100" cy="100" r="80" fill="#0A1628" opacity="0.1"/>
<circle cx="100" cy="100" r="60" fill="none" stroke="#D4AF37" stroke-width="4"/>
<g transform="translate(100, 100)">
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="3" transform="rotate(0)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="2" transform="rotate(30)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="2" transform="rotate(60)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="3" transform="rotate(90)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="2" transform="rotate(120)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="2" transform="rotate(150)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="3" transform="rotate(180)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="2" transform="rotate(210)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="2" transform="rotate(240)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="3" transform="rotate(270)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="2" transform="rotate(300)"/>
<line x1="0" y1="-50" x2="0" y2="-45" stroke="#0A1628" stroke-width="2" transform="rotate(330)"/>
<line x1="0" y1="0" x2="0" y2="-30" stroke="#D4AF37" stroke-width="4" stroke-linecap="round"/>
<line x1="0" y1="0" x2="20" y2="0" stroke="#D4AF37" stroke-width="3" stroke-linecap="round"/>
<circle cx="0" cy="0" r="5" fill="#D4AF37"/>
</g>
<text x="100" y="190" text-anchor="middle" fill="#D4AF37" font-size="16" font-weight="bold">24/7</text>
<rect x="40" y="40" width="8" height="8" fill="#10b981" rx="2"/>
<rect x="152" y="40" width="8" height="8" fill="#f59e0b" rx="2"/>
<rect x="40" y="152" width="8" height="8" fill="#7c3aed" rx="2"/>
<rect x="152" y="152" width="8" height="8" fill="#ef4444" rx="2"/>
</svg>
</div>
<h3 class="service-title">Conserjería Digital 24/7</h3>
<p class="service-description">
Equipo especializado multiidioma disponible las 24 horas. Limpieza premium con
estándares de hotel 5 estrellas, mantenimiento preventivo mensual y resolución
de emergencias en menos de 4 horas garantizado.
</p>
</div>
</div>
<div class="page-number">3</div>
</div>
<!-- Page 4: Guest Journey Flow -->
<div class="page">
<div class="section-header">
<div class="section-number">03</div>
<h2 class="section-title">Experiencia del Huésped</h2>
<p class="section-subtitle">Automatización completa de principio a fin</p>
</div>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-number">
<div class="timeline-circle">
<svg viewBox="0 0 40 40" style="width: 30px; height: 30px;">
<path d="M20 5 L35 12 L35 28 L20 35 L5 28 L5 12 Z" fill="currentColor"/>
<circle cx="20" cy="20" r="6" fill="white"/>
<text x="20" y="24" text-anchor="middle" fill="currentColor" font-size="8">AI</text>
</svg>
</div>
</div>
<div class="timeline-content">
<h3 class="timeline-title">Contacto e Inteligencia Artificial</h3>
<p class="timeline-description">
El huésped contacta a través de cualquier plataforma. Nuestro sistema de IA responde
automáticamente en tiempo real, ajustando precios dinámicamente según demanda,
eventos locales y perfil del cliente hasta conseguir la reserva confirmada.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-number">
<div class="timeline-circle">
<svg viewBox="0 0 40 40" style="width: 30px; height: 30px;">
<rect x="10" y="8" width="20" height="28" rx="4" fill="currentColor"/>
<rect x="12" y="10" width="16" height="20" rx="2" fill="white"/>
<circle cx="20" cy="34" r="2" fill="white"/>
<path d="M15 15 L18 18 L25 11" stroke="currentColor" stroke-width="2" fill="none"/>
</svg>
</div>
</div>
<div class="timeline-content">
<h3 class="timeline-title">Instrucciones Pre-Llegada</h3>
<p class="timeline-description">
24 horas antes del check-in, el sistema envía automáticamente por WhatsApp todas
las instrucciones detalladas: dirección exacta, códigos de acceso, mapa de ubicación
y información útil del barrio. Todo personalizado y en el idioma del huésped.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-number">
<div class="timeline-circle">
<svg viewBox="0 0 40 40" style="width: 30px; height: 30px;">
<rect x="8" y="15" width="24" height="18" rx="2" fill="currentColor"/>
<path d="M12 15 L12 10 A8 8 0 0 1 28 10 L28 15" stroke="currentColor" stroke-width="3" fill="none"/>
<circle cx="20" cy="25" r="3" fill="white"/>
<text x="20" y="38" text-anchor="middle" fill="currentColor" font-size="6">SMART</text>
</svg>
</div>
</div>
<div class="timeline-content">
<h3 class="timeline-title">Acceso Automatizado</h3>
<p class="timeline-description">
Al llegar, el huésped accede al portal principal con el código enviado. Una vez arriba,
la cerradura inteligente del apartamento se abre automáticamente con el mismo código.
Sin llaves, sin esperas, sin contacto humano necesario.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-number">
<div class="timeline-circle">
<svg viewBox="0 0 40 40" style="width: 30px; height: 30px;">
<circle cx="20" cy="20" r="18" fill="currentColor"/>
<text x="20" y="16" text-anchor="middle" fill="white" font-size="8" font-weight="bold">24</text>
<text x="20" y="26" text-anchor="middle" fill="white" font-size="8" font-weight="bold">7</text>
<path d="M20 5 L22 8 L20 11 L18 8 Z" fill="white"/>
</svg>
</div>
</div>
<div class="timeline-content">
<h3 class="timeline-title">Soporte Durante la Estancia</h3>
<p class="timeline-description">
Durante toda su estancia, el huésped tiene acceso a nuestro servicio 24/7 multiidioma.
Cualquier duda, necesidad o emergencia se resuelve inmediatamente a través de WhatsApp
o llamada directa con tiempo de respuesta garantizado.
</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-number">
<div class="timeline-circle">
<svg viewBox="0 0 40 40" style="width: 30px; height: 30px;">
<path d="M5 20 L15 10 L25 20 L35 10" stroke="currentColor" stroke-width="3" fill="none"/>
<circle cx="8" cy="23" r="3" fill="currentColor"/>
<circle cx="18" cy="13" r="3" fill="currentColor"/>
<circle cx="28" cy="23" r="3" fill="currentColor"/>
<path d="M15 30 Q20 25 25 30" stroke="currentColor" stroke-width="2" fill="none"/>
</svg>
</div>
</div>
<div class="timeline-content">
<h3 class="timeline-title">Check-out y Gestión Post-Estancia</h3>
<p class="timeline-description">
Al finalizar la estancia, el sistema coordina automáticamente la limpieza profesional.
Si la IA predice una alta probabilidad de reseña positiva, solicita automáticamente
la valoración al huésped para maximizar la reputación de la propiedad.
</p>
</div>
</div>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Automatización Total Sin Intervención
</h3>
<p class="content-text">
Todo el proceso funciona de manera completamente autónoma. El propietario no necesita
intervenir en ningún momento: desde la primera consulta hasta la limpieza final,
nuestro sistema gestiona cada paso optimizando la experiencia del huésped y
maximizando los ingresos de la propiedad.
</p>
</div>
<div class="page-number">4</div>
</div>
<!-- Page 5: Service Benefits -->
<div class="page">
<div class="section-header">
<div class="section-number">04</div>
<h2 class="section-title">Beneficios del Servicio</h2>
<p class="section-subtitle">Ventajas competitivas de nuestro sistema</p>
</div>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-value">IA</div>
<div class="stat-label">Precios Dinámicos</div>
<div class="stat-description">optimización continua</div>
</div>
<div class="stat-card">
<div class="stat-value">24/7</div>
<div class="stat-label">Soporte Activo</div>
<div class="stat-description">multiidioma disponible</div>
</div>
<div class="stat-card">
<div class="stat-value">100%</div>
<div class="stat-label">Automatización</div>
<div class="stat-description">sin intervención manual</div>
</div>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Ventajas Competitivas
</h3>
<p class="content-text">
Nuestro sistema se distingue por la integración completa de tecnologías avanzadas
que trabajan en sincronía para optimizar cada aspecto de la gestión. La combinación
de inteligencia artificial, automatización total y servicio premium crea una
experiencia superior tanto para propietarios como para huéspedes.
</p>
</div>
<div class="service-grid">
<div class="service-card">
<h3 class="service-title">Tecnología Avanzada</h3>
<p class="service-description">
<strong>Sistema de IA Propietario</strong><br>
• Análisis predictivo de demanda<br>
• Optimización automática de precios<br>
• Comunicación inteligente multiidioma<br>
• Detección de patrones de comportamiento<br>
• Máxima eficiencia operativa
</p>
</div>
<div class="service-card">
<h3 class="service-title">Automatización Completa</h3>
<p class="service-description">
<strong>Cero Intervención Manual</strong><br>
• Check-in/out completamente digital<br>
• Gestión automática de reservas<br>
• Coordinación de limpieza integrada<br>
• Mantenimiento preventivo programado<br>
• Operación 365 días al año
</p>
</div>
<div class="service-card">
<h3 class="service-title">Servicio Premium</h3>
<p class="service-description">
<strong>Atención Especializada</strong><br>
• Equipo multiidioma disponible 24/7<br>
• Resolución inmediata de incidencias<br>
• Limpieza con estándares hoteleros<br>
• Monitorización continua de calidad<br>
• Experiencia cinco estrellas garantizada
</p>
</div>
<div class="service-card">
<h3 class="service-title">Escalabilidad Global</h3>
<p class="service-description">
<strong>Infraestructura Robusta</strong><br>
• Sincronización con múltiples plataformas<br>
• Adaptación a mercados internacionales<br>
• Gestión de picos de demanda<br>
• Integración con sistemas locales<br>
• Expansión sin límites técnicos
</p>
</div>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Propuesta de Valor Integral
</h3>
<p class="content-text">
La combinación de nuestra tecnología propietaria con un servicio de atención premium
crea un ecosistema único en el mercado. Los propietarios obtienen la tranquilidad
de una gestión completamente automatizada mientras mantienen el control total
sobre su inversión a través de nuestro dashboard analítico en tiempo real.
</p>
</div>
<div class="page-number">5</div>
</div>
<!-- Page 6: Investment & Pricing -->
<div class="page">
<div class="section-header">
<div class="section-number">05</div>
<h2 class="section-title">Estructura de Inversión</h2>
<p class="section-subtitle">Transparencia total, rentabilidad garantizada</p>
</div>
<div class="pricing-table">
<div class="pricing-header">
<h3 class="pricing-title">Plan Premium Todo Incluido</h3>
<div class="pricing-value">0€/mes</div>
<p class="pricing-commission">Únicamente 15% de comisión sobre reservas confirmadas</p>
</div>
<div class="pricing-features">
<div class="pricing-category">
<h4 class="pricing-category-title">Ecosistema Tecnológico Avanzado</h4>
<ul class="luxury-list">
<li>Cerraduras inteligentes premium - Portal y vivienda (valor 400€)</li>
<li>Sistema de check-in/out automatizado 24/7 con códigos únicos</li>
<li>Sincronización instantánea con múltiples plataformas globales</li>
<li>Dashboard analytics premium con métricas en tiempo real</li>
</ul>
</div>
<div class="pricing-category">
<h4 class="pricing-category-title">Inteligencia Artificial Propietaria</h4>
<ul class="luxury-list">
<li>Motor de precios dinámicos - Múltiples ajustes diarios</li>
<li>Análisis predictivo de demanda con alta precisión</li>
<li>Machine learning para optimización continua de listings</li>
<li>Comunicación automatizada multiidioma</li>
</ul>
</div>
<div class="pricing-category">
<h4 class="pricing-category-title">Marketing y Posicionamiento Premium</h4>
<ul class="luxury-list">
<li>Sesión fotográfica profesional completa (50+ imágenes HD)</li>
<li>Tour virtual 360° interactivo de alta definición</li>
<li>Optimización SEO multiidioma avanzada</li>
<li>Gestión profesional de reputación online</li>
</ul>
</div>
<div class="pricing-category">
<h4 class="pricing-category-title">Servicios de Conserjería 24/7</h4>
<ul class="luxury-list">
<li>Atención especializada 24/7 en múltiples idiomas</li>
<li>Limpieza premium con estándares de hotel 5 estrellas</li>
<li>Mantenimiento preventivo mensual programado</li>
<li>Gestión completa de incidencias y emergencias</li>
</ul>
</div>
</div>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Qué Incluye Nuestro Servicio Premium
</h3>
<p class="content-text">
Su inversión del 15% incluye la gestión completa y automatizada de su propiedad.
No existen costes ocultos: fotografía profesional, instalación de tecnología,
limpieza premium, soporte 24/7, optimización con IA y toda la infraestructura
tecnológica está incluida en nuestra comisión sobre reservas confirmadas.
</p>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Modelo de Negocio Alineado
</h3>
<p class="content-text">
En Housemoney nuestro éxito está directamente vinculado al suyo. No cobramos cuotas
mensuales, gastos de activación ni permanencias. Solo ganamos cuando usted gana, con
una comisión del 15% únicamente sobre reservas confirmadas y completadas. Este modelo
garantiza que toda nuestra energía esté enfocada en maximizar sus ingresos.
</p>
</div>
<div class="page-number">6</div>
</div>
<!-- Page 7: Contact & Next Steps -->
<div class="page">
<div class="section-header">
<div class="section-number">06</div>
<h2 class="section-title">Siguientes Pasos</h2>
<p class="section-subtitle">Inicie su transformación inmobiliaria hoy mismo</p>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Proceso de Evaluación Inmediata
</h3>
<p class="content-text">
Nuestro equipo de consultores especializados está preparado para realizar una
evaluación completa de su propiedad en las próximas 24 horas. Utilizando nuestros
algoritmos propietarios, calcularemos el potencial exacto de ingresos de su inversión
y diseñaremos una estrategia personalizada de maximización de rentabilidad.
</p>
</div>
<div class="service-grid">
<div class="service-card">
<h3 class="service-title">Auditoría Gratuita Express</h3>
<p class="service-description">
<strong>✓ Análisis de mercado en 24h</strong><br>
✓ Proyección de ingresos personalizada<br>
✓ Estrategia de optimización específica<br>
✓ Plan de implementación detallado<br>
✓ Sin compromiso ni coste alguno
</p>
</div>
<div class="service-card">
<h3 class="service-title">Garantías Exclusivas</h3>
<p class="service-description">
<strong>✓ Incremento mínimo garantizado</strong><br>
✓ Instalación tecnológica gratuita (400€)<br>
✓ Sin permanencia ni penalizaciones<br>
✓ Cancelación con 30 días de preaviso<br>
✓ Soporte premium incluido
</p>
</div>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Compromiso de Excelencia
</h3>
<p class="content-text">
Housemoney se compromete a mantener los más altos estándares de calidad y
transparencia. Nuestro equipo directivo está disponible para atender cualquier
consulta y garantizar que su experiencia supere las expectativas más exigentes.
Trabajamos con el objetivo de crear relaciones a largo plazo basadas en resultados
tangibles y servicio excepcional.
</p>
</div>
<div class="gold-divider"></div>
<div class="contact-section">
<h2 class="contact-title">Comience Su Éxito Hoy</h2>
<p class="contact-subtitle">
Contacte con nuestro equipo de consultores para una evaluación personalizada
gratuita y descubra el verdadero potencial de su propiedad
</p>
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon">WA</div>
<strong>WhatsApp Directo</strong>
<span><a href="https://wa.me/34679794037">+34 679 794 037</a></span>
</div>
<div class="contact-item">
<div class="contact-icon">EM</div>
<strong>Email Ejecutivo</strong>
<span><a href="mailto:[email protected]">[email protected]</a></span>
</div>
</div>
</div>
<div class="page-number">7</div>
</div>
<!-- Page 8: Legal & Corporate -->
<div class="page">
<div class="section-header">
<div class="section-number">07</div>
<h2 class="section-title">Información Corporativa</h2>
<p class="section-subtitle">Transparencia, legalidad y cumplimiento normativo</p>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Marco Operativo y Cumplimiento
</h3>
<p class="content-text">
Housemoney opera bajo estricto cumplimiento de la normativa española aplicable
al sector de alquileres vacacionales. Mantenemos las autorizaciones necesarias
y garantizamos que todas las propiedades gestionadas cumplan con los requisitos
legales vigentes en cada jurisdicción donde operamos.
</p>
</div>
<div class="service-grid">
<div class="service-card">
<h3 class="service-title">Cumplimiento Normativo</h3>
<p class="service-description">
• Constitución legal en España<br>
• Cumplimiento normativa local<br>
• Protección de datos (RGPD)<br>
• Póliza de responsabilidad civil<br>
• Auditorías regulares<br>
• Transparencia total en operaciones
</p>
</div>
<div class="service-card">
<h3 class="service-title">Servicios Incluidos</h3>
<p class="service-description">
• Gestión de licencias requeridas<br>
• Registro de huéspedes automatizado<br>
• Asesoramiento fiscal básico<br>
• Documentación de arrendamiento<br>
• Mediación en conflictos<br>
• Actualizaciones normativas
</p>
</div>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Equipo Profesional
</h3>
<p class="content-text">
Nuestro equipo cuenta con experiencia especializada en sectores tecnológico,
inmobiliario y hotelero. Formación técnica avanzada y experiencia comprobada
en la transformación digital de empresas tradicionales hacia modelos de negocio
tecnológicos de alto rendimiento.
</p>
</div>
<div class="content-block">
<h3 class="content-title">
<span class="gold-accent"></span>
Política de Privacidad y Protección de Datos
</h3>
<p class="content-text">
Housemoney mantiene los más altos estándares de protección de datos personales
según el RGPD. Toda la información de propietarios y huéspedes está protegida
mediante sistemas de seguridad avanzados. Nunca compartimos datos con terceros
sin autorización expresa y mantenemos auditorías de seguridad regulares.
</p>
</div>
<div class="gold-divider"></div>
<div class="content-block" style="text-align: center; margin-top: 40mm;">
<p style="font-size: 10pt; color: var(--text-light); font-style: italic;">
Este dossier contiene información confidencial y está destinado exclusivamente
al destinatario indicado. La reproducción total o parcial sin autorización expresa
está prohibida.
</p>
<div style="margin-top: 15mm;">
<p style="font-size: 11pt; color: var(--text-secondary);">
<strong>Housemoney</strong><br>
España • 2025<br>
<a href="mailto:[email protected]">[email protected]</a> • <a href="https://wa.me/34679794037">+34 679 794 037</a>
</p>
</div>
</div>
<div class="page-number">8</div>
</div>
</body>
</html> |