styles.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* Paleta de Colores Suavizada y Moderna */
  2. :root {
  3. --background-dark: #121212;
  4. --background-card: #1e1e1e;
  5. --background-header: #0a0a0a;
  6. --border-color: #2e2e2e;
  7. --text-primary: #373737;
  8. --text-secondary: #0e0e0e;
  9. --accent-red: #5490eb;
  10. /* Rojo (Tailwind red-600) */
  11. --accent-red-hover: #b91c1c;
  12. /* Rojo más oscuro (Tailwind red-700) */
  13. }
  14. * {
  15. box-sizing: border-box;
  16. }
  17. body {
  18. font-family: 'Inter', sans-serif;
  19. background-color: var(--background-dark);
  20. color: var(--text-primary);
  21. font-size: 16px;
  22. line-height: 1.625;
  23. }
  24. header.bg-black {
  25. background-color: var(--background-header);
  26. }
  27. footer.bg-black {
  28. background-color: var(--background-header);
  29. }
  30. .product-card {
  31. background-color: var(--background-card);
  32. border: 1px solid var(--border-color);
  33. }
  34. #cartIcon {
  35. position: relative;
  36. }
  37. #cartCount {
  38. position: absolute;
  39. top: -20%;
  40. left: -20%;
  41. width: 20px;
  42. height: 20px;
  43. border-radius: 50%;
  44. background: red;
  45. color: white;
  46. }
  47. .active {
  48. background-color: #0a0a0a08 !important;
  49. box-shadow: 0px 0px 0px 2px #0a0a0a08;
  50. border-radius: 0.375rem;
  51. }
  52. @keyframes spin {
  53. 0% {
  54. transform: rotate(0deg);
  55. }
  56. 100% {
  57. transform: rotate(360deg);
  58. }
  59. }
  60. #aiLoadingIndicator::after {
  61. animation: thinking 1s infinite;
  62. content: "";
  63. display: block;
  64. font-size: 1.5rem;
  65. }
  66. @keyframes thinking {
  67. 0% {
  68. content: "";
  69. }
  70. 25% {
  71. content: ".";
  72. }
  73. 50% {
  74. content: "..";
  75. }
  76. 75% {
  77. content: "...";
  78. }
  79. 100% {
  80. content: "....";
  81. }
  82. }