* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
  background-color: #000000;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.font-script {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  background-color: #F9F6EE;
  color: #000000;
  border-color: #F9F6EE;
}
.btn.btn-primary:hover {
  background-color: transparent;
  color: #F9F6EE;
}
.btn.btn-outline {
  background-color: transparent;
  color: #F9F6EE;
  border-color: #F9F6EE;
}
.btn.btn-outline:hover {
  background-color: #F9F6EE;
  color: #000000;
}
.btn.btn-outline-dark {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.btn.btn-outline-dark:hover {
  background-color: #000000;
  color: #F9F6EE;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spin-animation {
  animation: spin 1s linear infinite;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo img {
  height: 50px;
  filter: invert(1);
}
.navbar .nav-links {
  display: flex;
  gap: 30px;
}
.navbar .nav-links li a {
  color: #F9F6EE;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.navbar .nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C0C0C0;
  transition: width 0.3s ease;
}
.navbar .nav-links li a:hover::after {
  width: 100%;
}
.navbar .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.navbar .menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #F9F6EE;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F9F6EE;
  overflow: hidden;
  isolation: isolate;
}
.hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 300;
}
.hero .hero-content .btn {
  position: relative;
  z-index: 3;
}

section {
  padding: 80px 0;
}

.section-dark {
  background-color: #000000;
  color: #F9F6EE;
}
.section-dark h2 {
  color: #C0C0C0;
}
.section-dark p,
.section-dark li,
.section-dark .lead {
  color: #e0e0e0;
}

.section-light {
  background-color: #f4f4f4;
  color: #1a1a1a;
}
.section-light p,
.section-light li,
.section-light .subtitle {
  color: #333333;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #C0C0C0;
  margin: 15px auto 0;
}

.subtitle {
  margin-bottom: 50px;
  color: #666;
  font-style: italic;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.row .col-text {
  flex: 1;
  min-width: 300px;
}
.row .col-text p {
  font-size: 1rem;
  line-height: 1.6;
}
.row .col-img {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.row .col-img img {
  max-width: 80%;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  filter: invert(1);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: #F9F6EE;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-10px);
}
.card .card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.card .card-image .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.68);
  padding: 20px;
  color: #F9F6EE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.card .card-image .card-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.card .card-image .card-overlay .btn {
  display: none;
}
.card .card-image .card-overlay::after {
  content: "VER CATALOGO";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 10px 22px;
  border: 1px solid #F9F6EE;
  color: #F9F6EE;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.3s ease;
}
.card:hover .card-image img {
  transform: scale(1.1);
}
.card:hover .card-image .card-overlay {
  opacity: 1;
}
.card:hover .card-image .card-overlay h3,
.card:hover .card-image .card-overlay::after {
  opacity: 1;
  transform: translateY(0);
}
.card .card-content {
  padding: 25px;
}
.card .card-content p {
  margin-bottom: 15px;
  color: #333333;
}
.card .card-content .service-list {
  list-style: disc;
  padding-left: 20px;
  color: #333333;
}

.section-cashea {
  background-color: #FDFA3D;
  border-top: 4px solid #111111;
  color: #111111;
  padding: 60px 0;
}
.section-cashea .cashea-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.section-cashea .cashea-content .cashea-text {
  flex: 1;
  min-width: 300px;
}
.section-cashea .cashea-content .cashea-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #111111;
  font-weight: 800;
}
.section-cashea .cashea-content .cashea-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #222222;
}
.section-cashea .cashea-content .cashea-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.section-cashea .cashea-content .cashea-image img {
  max-width: 350px;
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}
.section-cashea .btn-black {
  background-color: #111111;
  color: #FDFA3D;
  border: 2px solid #111111;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: bold;
}
.section-cashea .btn-black:hover {
  background-color: transparent;
  color: #111111;
}

.parallax-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F9F6EE;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-section .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
.parallax-section .overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.parallax-section .content {
  z-index: 1;
  padding: 0 20px;
}
.parallax-section .content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-style: italic;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}
.contact-wrapper .contact-info {
  flex: 1;
  min-width: 300px;
  color: #C0C0C0;
}
.contact-wrapper .contact-info h3 {
  color: #F9F6EE;
  margin-bottom: 20px;
}
.contact-wrapper .contact-info p {
  margin-bottom: 15px;
}
.contact-wrapper .contact-info .info-block {
  margin-bottom: 25px;
}
.contact-wrapper .contact-info .info-block h4 {
  color: #F9F6EE;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.contact-wrapper .contact-info .info-block ul li {
  margin-bottom: 5px;
}
.contact-wrapper .contact-info .info-block.cashea-block {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}
.contact-wrapper .contact-info .info-block.cashea-block p {
  margin: 0;
  color: #F9F6EE;
}
.contact-wrapper .contact-info .info-block.cashea-block .cashea-logo {
  height: 30px;
  width: auto;
}
.contact-wrapper .contact-info .btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
  margin-top: 10px;
  display: inline-block;
}
.contact-wrapper .contact-form {
  flex: 1;
  min-width: 300px;
}
.contact-wrapper .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-wrapper .contact-form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #C0C0C0;
}
.contact-wrapper .contact-form .form-group input, .contact-wrapper .contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  background-color: #222222;
  border: 1px solid #555555;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  border-radius: 4px;
}
.contact-wrapper .contact-form .form-group input:focus, .contact-wrapper .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #C0C0C0;
}
.contact-wrapper .contact-form .form-group input::placeholder, .contact-wrapper .contact-form .form-group textarea::placeholder {
  color: #888888;
}
.contact-wrapper .contact-form .success-msg {
  color: #4caf50;
  margin-top: 10px;
}
.contact-wrapper .contact-form .error-msg {
  color: #f44336;
  margin-top: 10px;
}

footer {
  background-color: #000;
  color: #666;
  padding: 30px 0;
  border-top: 1px solid #222;
  font-size: 0.9rem;
}

.instagram-feed {
  padding-top: 30px;
  padding-bottom: 30px;
}
.instagram-feed .instagram-header {
  margin-bottom: 20px;
}
.instagram-feed .instagram-header .instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  transition: color 0.3s ease;
}
.instagram-feed .instagram-header .instagram-link:hover {
  color: #E1306C;
}
.instagram-feed .instagram-header .instagram-link svg {
  width: 24px;
  height: 24px;
}
.instagram-feed .instagram-header .instagram-link h2 {
  margin: 0;
  font-size: 1.5rem;
}
.instagram-feed .instagram-header p {
  color: #666;
  margin-top: 5px;
  font-size: 0.9rem;
}
.instagram-feed .instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 992px) {
  .instagram-feed .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .instagram-feed .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.instagram-feed .instagram-grid .insta-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.instagram-feed .instagram-grid .insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-feed .instagram-grid .insta-item .insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #F9F6EE;
  font-weight: bold;
  font-size: 0.9rem;
}
.instagram-feed .instagram-grid .insta-item:hover img {
  transform: scale(1.1);
}
.instagram-feed .instagram-grid .insta-item:hover .insta-overlay {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}
.modal.is-active {
  display: flex;
}
.modal .modal-background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal .modal-content {
  background-color: #F9F6EE;
  padding: 40px;
  border-radius: 5px;
  z-index: 2001;
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: #000000;
}
.modal .modal-content h3 {
  margin-bottom: 15px;
}
.modal .modal-content p {
  margin-bottom: 25px;
}
.modal .modal-content .btn {
  background-color: #000000;
  color: #F9F6EE;
}
.modal .modal-content .btn:hover {
  background-color: #333;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .navbar .menu-toggle {
    display: flex;
  }
  .navbar .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .navbar .nav-links.active {
    transform: translateY(0);
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .parallax-section {
    background-attachment: scroll;
  }
}
/* --- CHATBOT --- */
.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  background-color: #F9F6EE;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  border: 1px solid #C0C0C0;
}
.chatbot-container.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chatbot-container .chatbot-header {
  background-color: #000000;
  color: #F9F6EE;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  border-bottom: 1px solid #333;
}
.chatbot-container .chatbot-header .chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.chatbot-container .chatbot-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chatbot-container .chatbot-body .chat-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.chatbot-container .chatbot-body .chat-message.bot {
  align-self: flex-start;
  background-color: #e0e0e0;
  color: #000000;
  border-bottom-left-radius: 2px;
}
.chatbot-container .chatbot-body .chat-message.user {
  align-self: flex-end;
  background-color: #000000;
  color: #F9F6EE;
  border-bottom-right-radius: 2px;
}
.chatbot-container .chatbot-body .chat-message .typing span {
  animation: blink 1.4s infinite both;
  margin: 0 2px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #555;
  border-radius: 50%;
}
.chatbot-container .chatbot-body .chat-message .typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.chatbot-container .chatbot-body .chat-message .typing span:nth-child(3) {
  animation-delay: 0.4s;
}
.chatbot-container .chatbot-footer {
  padding: 10px;
  background-color: #F9F6EE;
  border-top: 1px solid #ddd;
  display: flex;
  gap: 10px;
}
.chatbot-container .chatbot-footer input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
  font-family: "Montserrat", sans-serif;
}
.chatbot-container .chatbot-footer input:focus {
  border-color: #000000;
}
.chatbot-container .chatbot-footer button {
  background-color: #000000;
  color: #F9F6EE;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-container .chatbot-footer button:hover {
  background-color: #333;
}
.chatbot-container .chatbot-footer button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chatbot-greeting-bubble {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #F9F6EE;
  color: #000000;
  padding: 15px 25px 15px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 250px;
  z-index: 998;
  font-size: 0.9rem;
  cursor: pointer;
  animation: floatBubble 3s ease-in-out infinite;
  border: 1px solid #C0C0C0;
}
.chatbot-greeting-bubble .bubble-arrow {
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #F9F6EE;
}
.chatbot-greeting-bubble .close-bubble {
  position: absolute;
  top: 5px;
  right: 8px;
  font-size: 1.2rem;
  line-height: 1;
  color: #999;
}
.chatbot-greeting-bubble .close-bubble:hover {
  color: #000000;
}

@keyframes floatBubble {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.chatbot-toggle-btn {
  position: fixed;

      .btn {
        display: none;
      }
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #F9F6EE;
  border-radius: 50%;
  border: 2px solid #C0C0C0;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-toggle-btn:hover {
  transform: scale(1.1);
}
.chatbot-toggle-btn .notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff3b30;
  color: white;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid white;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}