Spaces:
Running
Running
File size: 47,209 Bytes
504b002 | 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 | <!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Factor B | Excelencia en Climatización</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
.gradient-bg {
background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
}
.tech-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.service-icon {
transition: all 0.3s ease;
}
.service-card:hover .service-icon {
transform: scale(1.1);
color: #3b82f6;
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.scroll-down {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-20px);
}
60% {
transform: translateY(-10px);
}
}
</style>
</head>
<body class="antialiased text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex-shrink-0 flex items-center">
<img class="h-12 w-auto" src="https://via.placeholder.com/150x50?text=FACTOR+B" alt="Factor B Logo">
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#inicio" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Inicio</a>
<a href="#servicios" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Servicios</a>
<a href="#tecnologia" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Tecnología</a>
<a href="#proyectos" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Proyectos</a>
<a href="#contacto" class="text-gray-700 hover:text-blue-600 px-3 py-2 font-medium">Contacto</a>
</div>
</div>
<div class="md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-blue-600 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 bg-white shadow-lg">
<a href="#inicio" class="text-gray-700 hover:text-blue-600 block px-3 py-2 font-medium">Inicio</a>
<a href="#servicios" class="text-gray-700 hover:text-blue-600 block px-3 py-2 font-medium">Servicios</a>
<a href="#tecnologia" class="text-gray-700 hover:text-blue-600 block px-3 py-2 font-medium">Tecnología</a>
<a href="#proyectos" class="text-gray-700 hover:text-blue-600 block px-3 py-2 font-medium">Proyectos</a>
<a href="#contacto" class="text-gray-700 hover:text-blue-600 block px-3 py-2 font-medium">Contacto</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="inicio" class="pt-24 pb-12 md:pt-32 md:pb-20 gradient-bg">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
<div class="mb-12 lg:mb-0">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6 leading-tight">
Excelencia en <span class="text-blue-600">Climatización</span> para Entornos Corporativos
</h1>
<p class="text-lg text-gray-600 mb-8 max-w-lg">
En Factor B diseñamos soluciones de climatización inteligente que combinan eficiencia energética, confort excepcional y tecnología de vanguardia para espacios de trabajo.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contacto" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium text-center transition duration-300">
Solicite Presupuesto
</a>
<a href="#servicios" class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium text-center transition duration-300">
Nuestros Servicios
</a>
</div>
</div>
<div class="relative">
<img src="https://images.unsplash.com/photo-1558002038-1055907df827?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Sistema de climatización moderno" class="rounded-xl shadow-2xl w-full h-auto">
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-leaf text-blue-600 text-xl"></i>
</div>
<div>
<p class="font-bold text-gray-900">+40% Eficiencia</p>
<p class="text-sm text-gray-600">Energética</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-16 scroll-down">
<a href="#servicios" class="text-gray-500 hover:text-blue-600">
<i class="fas fa-chevron-down text-2xl"></i>
</a>
</div>
</section>
<!-- Trusted By Section -->
<section class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 mb-8">Confían en nuestras soluciones</p>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-5 gap-8 items-center justify-center">
<img src="https://via.placeholder.com/150x60?text=LOGO+1" alt="Client Logo" class="h-12 w-auto mx-auto opacity-70 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/150x60?text=LOGO+2" alt="Client Logo" class="h-12 w-auto mx-auto opacity-70 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/150x60?text=LOGO+3" alt="Client Logo" class="h-12 w-auto mx-auto opacity-70 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/150x60?text=LOGO+4" alt="Client Logo" class="h-12 w-auto mx-auto opacity-70 hover:opacity-100 transition duration-300">
<img src="https://via.placeholder.com/150x60?text=LOGO+5" alt="Client Logo" class="h-12 w-auto mx-auto opacity-70 hover:opacity-100 transition duration-300 col-span-2 md:col-span-1">
</div>
</div>
</section>
<!-- Services Section -->
<section id="servicios" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Soluciones Integrales de Climatización</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Ofrecemos un enfoque completo para la gestión del clima en su espacio de trabajo, desde diseño hasta mantenimiento.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden p-8 transition duration-300 hover:shadow-lg">
<div class="service-icon text-blue-600 mb-6">
<i class="fas fa-snowflake text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Climatización Inteligente</h3>
<p class="text-gray-600 mb-4">
Sistemas automatizados que se adaptan a las necesidades de cada espacio y horario, optimizando el consumo energético.
</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Control por zonas</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Integración con sistemas BMS</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Monitorización remota</span>
</li>
</ul>
</div>
<!-- Service 2 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden p-8 transition duration-300 hover:shadow-lg">
<div class="service-icon text-blue-600 mb-6">
<i class="fas fa-leaf text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Eficiencia Energética</h3>
<p class="text-gray-600 mb-4">
Auditorías y soluciones personalizadas para reducir el consumo energético sin comprometer el confort.
</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Certificación energética</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Bombeo de calor</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Recuperación de energía</span>
</li>
</ul>
</div>
<!-- Service 3 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden p-8 transition duration-300 hover:shadow-lg">
<div class="service-icon text-blue-600 mb-6">
<i class="fas fa-shield-alt text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Calidad del Aire</h3>
<p class="text-gray-600 mb-4">
Sistemas avanzados de filtración y purificación para entornos laborales más saludables y productivos.
</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Filtros HEPA</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Control de CO2</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Humidificación precisa</span>
</li>
</ul>
</div>
<!-- Service 4 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden p-8 transition duration-300 hover:shadow-lg">
<div class="service-icon text-blue-600 mb-6">
<i class="fas fa-tools text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Mantenimiento Predictivo</h3>
<p class="text-gray-600 mb-4">
Programas de mantenimiento avanzado que previenen fallos y alargan la vida útil de sus equipos.
</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Monitoreo 24/7</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Alertas inteligentes</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Informes detallados</span>
</li>
</ul>
</div>
<!-- Service 5 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden p-8 transition duration-300 hover:shadow-lg">
<div class="service-icon text-blue-600 mb-6">
<i class="fas fa-building text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Climatización para Oficinas</h3>
<p class="text-gray-600 mb-4">
Soluciones específicamente diseñadas para entornos corporativos que priorizan el confort y la productividad.
</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Sistemas silenciosos</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Distribución óptima del aire</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Control individualizado</span>
</li>
</ul>
</div>
<!-- Service 6 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden p-8 transition duration-300 hover:shadow-lg">
<div class="service-icon text-blue-600 mb-6">
<i class="fas fa-chart-line text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Consultoría Especializada</h3>
<p class="text-gray-600 mb-4">
Asesoramiento experto para seleccionar la solución óptima según sus necesidades específicas y presupuesto.
</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Análisis termográfico</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Simulaciones CFD</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Estudios de retorno de inversión</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Technology Section -->
<section id="tecnologia" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Innovación Tecnológica</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Integramos las tecnologías más avanzadas para ofrecer soluciones de climatización que marcan la diferencia.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Tech 1 -->
<div class="tech-card bg-gray-50 rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Tecnología IoT" class="w-full h-full object-cover">
</div>
<div class="p-8">
<h3 class="text-xl font-bold text-gray-900 mb-3">IoT y Conectividad</h3>
<p class="text-gray-600 mb-4">
Sistemas interconectados que permiten el control y monitorización remota de todos los parámetros de climatización.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Smart Building</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">5G Ready</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">API Integración</span>
</div>
</div>
</div>
<!-- Tech 2 -->
<div class="tech-card bg-gray-50 rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Inteligencia Artificial" class="w-full h-full object-cover">
</div>
<div class="p-8">
<h3 class="text-xl font-bold text-gray-900 mb-3">Inteligencia Artificial</h3>
<p class="text-gray-600 mb-4">
Algoritmos predictivos que aprenden de los patrones de uso para optimizar el rendimiento y el consumo energético.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Machine Learning</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Patrones de Uso</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Auto-optimización</span>
</div>
</div>
</div>
<!-- Tech 3 -->
<div class="tech-card bg-gray-50 rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1508514177221-188e1eaf7083?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Energías Renovables" class="w-full h-full object-cover">
</div>
<div class="p-8">
<h3 class="text-xl font-bold text-gray-900 mb-3">Energías Renovables</h3>
<p class="text-gray-600 mb-4">
Integración con fuentes de energía sostenible para reducir la huella de carbono de sus instalaciones.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Geotermia</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Solar Térmica</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Biomasa</span>
</div>
</div>
</div>
</div>
<div class="mt-16 bg-blue-50 rounded-xl p-8 md:p-12">
<div class="md:flex items-center">
<div class="md:w-2/3 mb-8 md:mb-0 md:pr-8">
<h3 class="text-2xl font-bold text-gray-900 mb-4">¿Necesita una solución personalizada?</h3>
<p class="text-gray-600">
Nuestros ingenieros pueden diseñar un sistema a medida que se adapte perfectamente a las características específicas de su edificio y a las necesidades de sus ocupantes.
</p>
</div>
<div class="md:w-1/3 text-center md:text-right">
<a href="#contacto" class="inline-block bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">
Contactar Especialista
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="proyectos" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Proyectos Destacados</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Algunos de nuestros trabajos más relevantes en climatización corporativa.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="group relative overflow-hidden rounded-xl shadow-lg">
<img src="https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Oficinas corporativas" class="w-full h-64 object-cover transition duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 to-transparent opacity-80"></div>
<div class="absolute bottom-0 left-0 p-6">
<h3 class="text-xl font-bold text-white mb-2">Sede Corporativa Global</h3>
<p class="text-gray-300 mb-3">Barcelona | 5.000 m²</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-600 text-white text-xs font-medium px-2.5 py-0.5 rounded">Climatización por zonas</span>
<span class="bg-blue-600 text-white text-xs font-medium px-2.5 py-0.5 rounded">Certificación LEED</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="group relative overflow-hidden rounded-xl shadow-lg">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Espacio coworking" class="w-full h-64 object-cover transition duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 to-transparent opacity-80"></div>
<div class="absolute bottom-0 left-0 p-6">
<h3 class="text-xl font-bold text-white mb-2">Espacio Coworking Premium</h3>
<p class="text-gray-300 mb-3">Madrid | 2.300 m²</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-600 text-white text-xs font-medium px-2.5 py-0.5 rounded">Control individual</span>
<span class="bg-blue-600 text-white text-xs font-medium px-2.5 py-0.5 rounded">Calidad del aire</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="group relative overflow-hidden rounded-xl shadow-lg">
<img src="https://images.unsplash.com/photo-1560448204-603b3fc33ddc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Edificio histórico" class="w-full h-64 object-cover transition duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 to-transparent opacity-80"></div>
<div class="absolute bottom-0 left-0 p-6">
<h3 class="text-xl font-bold text-white mb-2">Rehabilitación Edificio Histórico</h3>
<p class="text-gray-300 mb-3">Girona | 1.800 m²</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-600 text-white text-xs font-medium px-2.5 py-0.5 rounded">Integración arquitectónica</span>
<span class="bg-blue-600 text-white text-xs font-medium px-2.5 py-0.5 rounded">Bajo consumo</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition duration-300">
Ver todos los proyectos
</a>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Lo que dicen nuestros clientes</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
La satisfacción de nuestros clientes es nuestra mejor carta de presentación.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 rounded-xl p-8">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-sm text-gray-500">Hace 2 meses</span>
</div>
<p class="text-gray-600 mb-6">
"La implementación del sistema de climatización inteligente de Factor B ha transformado el confort en nuestras oficinas. El ahorro energético ha superado nuestras expectativas."
</p>
<div class="flex items-center">
<img class="h-12 w-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/43.jpg" alt="Client photo">
<div>
<p class="font-bold text-gray-900">Laura Martínez</p>
<p class="text-sm text-gray-600">Office Manager, Empresa Tecnológica</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 rounded-xl p-8">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-sm text-gray-500">Hace 4 meses</span>
</div>
<p class="text-gray-600 mb-6">
"El equipo de Factor B demostró un profundo conocimiento técnico y una gran capacidad para entender nuestras necesidades específicas. La solución implementada es perfecta."
</p>
<div class="flex items-center">
<img class="h-12 w-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client photo">
<div>
<p class="font-bold text-gray-900">Jordi Roca</p>
<p class="text-sm text-gray-600">Director de Instalaciones, Grupo Empresarial</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 rounded-xl p-8">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<span class="text-sm text-gray-500">Hace 1 mes</span>
</div>
<p class="text-gray-600 mb-6">
"La calidad del aire en nuestras oficinas ha mejorado notablemente desde que implementamos el sistema de purificación de Factor B. Los empleados han notado la diferencia."
</p>
<div class="flex items-center">
<img class="h-12 w-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/65.jpg" alt="Client photo">
<div>
<p class="font-bold text-gray-900">Anna Soler</p>
<p class="text-sm text-gray-600">Responsable de RRHH, Consultora Internacional</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-blue-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8 text-center">
<div class="p-4">
<p class="text-4xl font-bold mb-2">15+</p>
<p class="text-blue-100">Años de experiencia</p>
</div>
<div class="p-4">
<p class="text-4xl font-bold mb-2">320+</p>
<p class="text-blue-100">Proyectos completados</p>
</div>
<div class="p-4">
<p class="text-4xl font-bold mb-2">98%</p>
<p class="text-blue-100">Clientes satisfechos</p>
</div>
<div class="p-4">
<p class="text-4xl font-bold mb-2">40%</p>
<p class="text-blue-100">Ahorro energético medio</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contacto" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="mb-12 lg:mb-0">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Contacte con nuestros expertos</h2>
<p class="text-lg text-gray-600 mb-8">
Estamos a su disposición para asesorarle sobre la mejor solución de climatización para su espacio de trabajo. Complete el formulario y nos pondremos en contacto con usted en menos de 24 horas.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h3 class="font-bold text-gray-900 mb-1">Oficinas Centrales</h3>
<p class="text-gray-600">Carrer de la Innovació, 15, 08028 Barcelona</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h3 class="font-bold text-gray-900 mb-1">Teléfono</h3>
<p class="text-gray-600">+34 93 123 45 67</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h3 class="font-bold text-gray-900 mb-1">Email</h3>
<p class="text-gray-600">info@factorb.com</p>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-8">
<form id="contact-form">
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Nombre completo</label>
<input type="text" id="name" name="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" required>
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" required>
</div>
<div class="mb-6">
<label for="phone" class="block text-gray-700 font-medium mb-2">Teléfono</label>
<input type="tel" id="phone" name="phone" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300">
</div>
<div class="mb-6">
<label for="company" class="block text-gray-700 font-medium mb-2">Empresa</label>
<input type="text" id="company" name="company" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Mensaje</label>
<textarea id="message" name="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition duration-300" required></textarea>
</div>
<div class="mb-6">
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="privacy" name="privacy" type="checkbox" class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 rounded" required>
</div>
<div class="ml-3 text-sm">
<label for="privacy" class="text-gray-600">Acepto la <a href="#" class="text-blue-600 hover:underline">Política de Privacidad</a></label>
</div>
</div>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">
Enviar Mensaje
</button>
</form>
<div id="form-success" class="hidden mt-4 p-4 bg-green-100 border border-green-400 text-green-700 rounded">
<p>¡Gracias por su mensaje! Nos pondremos en contacto con usted pronto.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-12 mb-12">
<div>
<img src="https://via.placeholder.com/150x50?text=FACTOR+B" alt="Factor B Logo" class="h-10 mb-6">
<p class="text-gray-400 mb-6">
Líderes en soluciones de climatización inteligente para entornos corporativos, combinando tecnología avanzada y eficiencia energética.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram text-xl"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-6">Servicios</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Climatización Inteligente</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Eficiencia Energética</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Calidad del Aire</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Mantenimiento Predictivo</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Consultoría Especializada</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-6">Enlaces útiles</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Sobre Nosotros</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Proyectos</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Trabaja con Nosotros</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Preguntas Frecuentes</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-6">Contacto</h3>
<ul class="space-y-3 text-gray-400">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-blue-500"></i>
<span>Carrer de la Innovació, 15, 08028 Barcelona</span>
</li>
<li class="flex items-start">
<i class="fas fa-phone-alt mt-1 mr-3 text-blue-500"></i>
<span>+34 93 123 45 67</span>
</li>
<li class="flex items-start">
<i class="fas fa-envelope mt-1 mr-3 text-blue-500"></i>
<span>info@factorb.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 Factor B. Todos los derechos reservados.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Política de Privacidad</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Términos de Servicio</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Form submission
document.getElementById('contact-form').addEventListener('submit', function(e) {
e.preventDefault();
// Simulate form submission
setTimeout(function() {
document.getElementById('contact-form').reset();
document.getElementById('form-success').classList.remove('hidden');
// Hide success message after 5 seconds
setTimeout(function() {
document.getElementById('form-success').classList.add('hidden');
}, 5000);
}, 1000);
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=QwanYin/factorbariant" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |