.about {
  padding: 60px 0;
  background-color: #F9FAFB;
}
.about .about-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.about .about-header {
  text-align: center;
  margin-bottom: 28px;
}
.about .about-header .about-title {
  font-size: 40px;
  font-weight: 800;
  color: #222222;
  margin: 0 0 10px;
}
.about .about-main {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.about .about-content {
  flex: 1;
}
.about .about-content .about-text {
  font-size: 15px;
  line-height: 1.6;
  color: #6d6d70;
  margin-bottom: 24px;
  text-align: left;
}
.about .about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.about .about-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.about .about-stats .stat-item .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about .about-stats .stat-item .stat-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}
.about .about-stats .stat-item .stat-icon.is-primary {
  background-color: #b80d0d;
}
.about .about-stats .stat-item .stat-icon.is-secondary {
  background-color: #c9a66b;
}
.about .about-stats .stat-item .stat-icon.is-accent {
  background-color: #d4476a;
}
.about .about-stats .stat-item .stat-number {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}
.about .about-stats .stat-item .stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #6d6d70;
}
.about .about-image {
  flex: 1;
  max-width: 600px;
}
.about .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsivo */
@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }
  .about .about-container {
    padding: 0 16px;
  }
  .about .about-header {
    margin-bottom: 50px;
  }
  .about .about-header .about-title {
    font-size: 40px;
  }
  .about .about-main {
    gap: 40px;
  }
  .about .about-content .about-text {
    font-size: 16px;
  }
  .about .about-stats {
    gap: 32px;
  }
  .about .about-stats .stat-item .stat-icon {
    width: 70px;
    height: 70px;
  }
  .about .about-stats .stat-item .stat-icon svg {
    width: 32px;
    height: 32px;
  }
  .about .about-stats .stat-item .stat-number {
    font-size: 32px;
  }
  .about .about-stats .stat-item .stat-label {
    font-size: 14px;
  }
  .about .about-image img {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .about .about-main {
    flex-direction: column;
    gap: 50px;
  }
  .about .about-content .about-text {
    text-align: center;
  }
  .about .about-image {
    max-width: 100%;
  }
  .about .about-image img {
    height: 300px;
  }
}
@media (max-width: 560px) {
  .about {
    padding: 40px 0;
  }
  .about .about-container {
    padding: 0 14px;
  }
  .about .about-header {
    margin-bottom: 30px;
  }
  .about .about-header .about-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
  }
  .about .about-main {
    gap: 40px;
  }
  .about .about-content .about-text {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .about .about-content .about-text:last-of-type {
    margin-bottom: 30px;
  }
  .about .about-stats {
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
  }
  .about .about-stats .stat-item .stat-icon {
    width: 46px;
    height: 46px;
  }
  .about .about-stats .stat-item .stat-icon svg {
    width: 20px;
    height: 20px;
  }
  .about .about-stats .stat-item .stat-number {
    font-size: 20px;
  }
  .about .about-stats .stat-item .stat-label {
    font-size: 13px;
  }
}
.testimonials {
  padding: 60px 0;
  background-color: #ffffff;
}
.testimonials .testimonials-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonials .testimonials-header {
  text-align: center;
  margin-bottom: 28px;
}
.testimonials .testimonials-header .testimonials-title {
  font-size: 40px;
  font-weight: 800;
  color: #222222;
  margin: 0 0 20px 0;
}
.testimonials .testimonials-header .testimonials-subtitle {
  font-size: 18px;
  color: #6d6d70;
  margin: 0;
  line-height: 1.6;
}
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.testimonials .testimonial-card {
  background: #F9FAFB;
  padding: 20px 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.testimonials .testimonial-rating {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonials .testimonial-rating .testimonial-stars {
  display: flex;
  gap: 4px;
}
.testimonials .testimonial-rating .testimonial-stars .star {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.testimonials .testimonial-rating .testimonial-stars .star.is-filled {
  fill: #ffc131;
}
.testimonials .testimonial-rating .testimonial-stars .star.is-empty {
  fill: #e0e0e0;
}
.testimonials .testimonial-rating .testimonial-date {
  font-size: 14px;
  color: #999999;
  font-weight: 500;
}
.testimonials .testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #6d6d70;
  font-style: italic;
  margin: 0;
  flex-grow: 1;
}
.testimonials .testimonial-text::before {
  font-size: 20px;
  color: #cccccc;
}
.testimonials .testimonial-text::after {
  font-size: 20px;
  color: #cccccc;
}
.testimonials .testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: #b80d0d;
  font-style: normal;
  margin-top: auto;
}

/* Responsivo */
@media (max-width: 992px) {
  .testimonials {
    padding: 80px 0;
  }
  .testimonials .testimonials-container {
    padding: 0 16px;
  }
  .testimonials .testimonials-header {
    margin-bottom: 60px;
  }
  .testimonials .testimonials-header .testimonials-title {
    font-size: 40px;
  }
  .testimonials .testimonials-header .testimonials-subtitle {
    font-size: 16px;
  }
  .testimonials .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .testimonials .testimonial-card {
    padding: 32px 28px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .testimonials {
    padding: 30px 0;
  }
  .testimonials .testimonials-container {
    padding: 0 14px;
  }
  .testimonials .testimonials-header {
    margin-bottom: 30px;
  }
  .testimonials .testimonials-header .testimonials-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
  }
  .testimonials .testimonials-header .testimonials-subtitle {
    font-size: 16px;
    font-weight: 500;
  }
  .testimonials .testimonials-grid {
    gap: 24px;
  }
  .testimonials .testimonial-card {
    padding: 28px 24px;
    gap: 18px;
  }
  .testimonials .testimonial-card .testimonial-text {
    font-size: 15px;
  }
  .testimonials .testimonial-card .testimonial-author {
    font-size: 15px;
  }
  .testimonials .testimonial-rating .testimonial-stars .star {
    width: 18px;
    height: 18px;
  }
  .testimonials .testimonial-rating .testimonial-date {
    font-size: 13px;
  }
}
.carousel {
  padding: 60px 0;
  background: white;
}
.carousel .carousel-header {
  text-align: center;
  margin-bottom: 28px;
}
.carousel .carousel-header .carousel-title {
  font-size: 40px;
  font-weight: 800;
  color: #222222;
  margin: 0 0 10px;
}
.carousel .carousel-header .carousel-subtitle {
  font-size: 18px;
  color: #6d6d70;
  margin: 0;
  line-height: 1.6;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glider-contain {
  width: 80% !important;
  position: relative;
  margin: 2rem 0;
}

.glider {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.glider .glider-track {
  transform: translateZ(0);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  z-index: 1;
}

.slide {
  text-align: center;
  background: white;
  border-radius: 12px;
}
.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}
.slide .slide-title {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.slide .slide-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.glider-prev,
.glider-next {
  position: absolute;
  top: 46% !important;
  transform: translateY(-50%);
  background: white !important;
  color: black !important;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px !important;
  z-index: 10;
  transition: all 0.3s ease;
}
.glider-prev:hover,
.glider-next:hover {
  transform: translateY(-50%) scale(1.1);
}
.glider-prev:active,
.glider-next:active {
  transform: translateY(-50%) scale(0.95);
}
.glider-prev:disabled,
.glider-next:disabled {
  opacity: 0.5;
}
.glider-prev:disabled:hover,
.glider-next:disabled:hover {
  transform: translateY(-50%);
  cursor: not-allowed;
}

.glider-prev {
  left: 10px !important;
}

.glider-next {
  right: 10px !important;
}

.dots {
  text-align: center;
  padding: 0;
}

.glider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.glider-dot:hover {
  background: #999;
  transform: scale(1.2);
}
.glider-dot:focus {
  outline-offset: 2px;
}
.glider-dot.active {
  background: #b80d0d !important;
  transform: scale(1.3);
}

@media (max-width: 560px) {
  .carousel {
    padding: 2rem 0;
  }
  .carousel .carousel-header .carousel-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
  }
  .carousel .carousel-header .carousel-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
  }
  .carousel-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .slide {
    margin: 0 0.25rem;
    padding: 0.75rem;
  }
  .slide img {
    height: 140px;
  }
  .slide .slide-title {
    font-size: 1rem;
  }
  .slide .slide-description {
    font-size: 0.8rem;
  }
  .glider-contain {
    width: 100% !important;
    position: relative;
    margin: 0 !important;
  }
  .glider {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
  }
  .glider .glider-track {
    transform: translateZ(0);
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    z-index: 1;
  }
  .slide {
    text-align: center;
    background: white;
    border-radius: 12px;
  }
  .slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
  }
  .slide .slide-title {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
  }
  .slide .slide-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }
  .glider-prev,
  .glider-next {
    position: absolute;
    top: 46% !important;
    transform: translateY(-50%);
    background: white !important;
    color: black !important;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px !important;
    z-index: 10;
    transition: all 0.3s ease;
  }
  .glider-prev:hover,
  .glider-next:hover {
    transform: translateY(-50%) scale(1.1);
  }
  .glider-prev:active,
  .glider-next:active {
    transform: translateY(-50%) scale(0.95);
  }
  .glider-prev:disabled,
  .glider-next:disabled {
    opacity: 0.5;
  }
  .glider-prev:disabled:hover,
  .glider-next:disabled:hover {
    transform: translateY(-50%);
    cursor: not-allowed;
  }
  .glider-prev {
    left: 20px !important;
  }
  .glider-next {
    right: 20px !important;
  }
  .glider-prev,
  .glider-next {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .glider-prev {
    left: 5px;
  }
  .glider-next {
    right: 5px;
  }
}
.faq {
  padding: 60px 0;
  background-color: #F9FAFB;
}
.faq .faq-container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq .faq-header {
  text-align: center;
  margin-bottom: 28px;
}
.faq .faq-header .faq-title {
  font-size: 40px;
  font-weight: 800;
  color: #222222;
  margin: 0 0 10px;
}
.faq .faq-header .faq-subtitle {
  font-size: 18px;
  color: #6d6d70;
  margin: 0;
  line-height: 1.6;
}
.faq .faq-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq .faq-item {
  border: 1px solid #f1f1f1;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.2s ease;
}
.faq .faq-question {
  width: 100%;
  padding: 16px 26px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  transition: all 0.3s ease;
  gap: 20px;
}
.faq .faq-question:hover {
  background-color: #f8f9fa;
}
.faq .faq-question[aria-expanded=true] {
  background-color: #f8f9fa;
}
.faq .faq-question[aria-expanded=true] .faq-icon {
  transform: rotate(180deg);
  fill: #b80d0d;
}
.faq .faq-question span {
  flex: 1;
}
.faq .faq-icon {
  width: 24px;
  height: 24px;
  fill: #666666;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.faq .faq-answer.is-open {
  max-height: 200px;
  opacity: 1;
}
.faq .faq-answer-text {
  padding: 0 24px 24px 24px;
  border-top: 1px solid #f0f0f0;
}
.faq .faq-answer-text p {
  margin: 24px 0 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #6d6d70;
}

/* Responsivo */
@media (max-width: 992px) {
  .faq {
    padding: 80px 0;
  }
  .faq .faq-container {
    padding: 0 16px;
  }
  .faq .faq-header {
    margin-bottom: 60px;
  }
  .faq .faq-header .faq-title {
    font-size: 40px;
  }
  .faq .faq-header .faq-subtitle {
    font-size: 16px;
  }
  .faq .faq-question {
    padding: 20px 24px;
    font-size: 17px;
    gap: 16px;
  }
  .faq .faq-answer-text {
    padding: 0 24px 24px 24px;
  }
  .faq .faq-answer-text p {
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .faq {
    padding: 30px 0;
  }
  .faq .faq-container {
    padding: 0 14px;
  }
  .faq .faq-header {
    margin-bottom: 20px;
  }
  .faq .faq-header .faq-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
  }
  .faq .faq-header .faq-subtitle {
    font-size: 16px;
    font-weight: 500;
  }
  .faq .faq-content {
    gap: 12px;
  }
  .faq .faq-question {
    padding: 18px 20px;
    font-size: 16px;
    gap: 14px;
  }
  .faq .faq-icon {
    width: 20px;
    height: 20px;
  }
  .faq .faq-answer.is-open {
    max-height: 250px;
  }
  .faq .faq-answer-text {
    padding: 0 20px 20px 20px;
  }
  .faq .faq-answer-text p {
    font-size: 14px;
    margin-top: 16px;
  }
}
.features {
  background: #F9FAFB;
  padding: 60px 0;
}
.features .features-container {
  max-width: 1200px;
  margin: 0 auto;
}
.features .features-header {
  text-align: center;
  margin-bottom: 28px;
}
.features .features-header .features-title {
  font-size: 40px;
  font-weight: 800;
  color: #222222;
  margin: 0 0 10px;
}
.features .features-header .features-subtitle {
  font-size: 18px;
  color: #6d6d70;
  margin: 0;
  line-height: 1.6;
}
.features .features-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.features .feature-card {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 14px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  min-height: 120px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1215686275);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.features .feature-card .feature-icon {
  width: 32px;
  height: 32px;
}
.features .feature-card .feature-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
.features .feature-card .feature-label {
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
}
.features .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1803921569);
  filter: brightness(1.02);
}
.features .is-red {
  background: #b80d0d;
}
.features .is-blue {
  background: #b80d0d;
}
.features .is-pink {
  background: #b80d0d;
}
.features .is-green {
  background: #b80d0d;
}
.features .is-amber {
  background: #b80d0d;
}
.features .is-purple {
  background: #b80d0d;
}
.features .is-indigo {
  background: #b80d0d;
}
.features .is-blue-2 {
  background: #b80d0d;
}
.features .is-orange {
  background: #b80d0d;
}
.features .is-magenta {
  background: #b80d0d;
}
.features .is-slate {
  background: #b80d0d;
}
.features .is-teal {
  background: #b80d0d;
}
.features .is-crimson {
  background: #b80d0d;
}
.features .is-green-2 {
  background: #b80d0d;
}
.features .feature-card {
  position: relative;
}
.features .feature-card::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -8px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(0, 0, 0, 0.1803921569), rgba(0, 0, 0, 0));
  pointer-events: none;
}

@media (max-width: 600px) {
  .features {
    padding: 40px 14px;
  }
  .features .features-header {
    margin: 20px 0 54px 0;
  }
  .features .features-header .features-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
  }
  .features .features-header .features-subtitle {
    font-size: 16px;
    font-weight: 500;
  }
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .features .feature-card {
    min-height: 96px;
    padding: 20px 16px;
  }
  .features .feature-card .feature-icon {
    width: 28px;
    height: 28px;
  }
  .features .feature-card .feature-label {
    font-size: 14px;
  }
}
.footer {
  background-color: #1e2a3a;
  color: #e0e7ef;
  padding: 40px 0 0;
}
.footer .footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 10px;
}
.footer .footer-content .footer-section:first-child {
  grid-column: span 1;
}
.footer .footer-brand {
  margin-bottom: 24px;
}
.footer .footer-brand .footer-logo {
  background: white;
  border-radius: 8px;
  height: 70px;
  width: auto;
}
.footer .footer-description {
  font-size: 16px;
  line-height: 1.7;
  color: #b8c5d1;
  margin: 0 0 16px 0;
}
.footer .footer-social {
  display: flex;
  gap: 16px;
}
.footer .footer-social .social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer .footer-social .social-link svg {
  width: 20px;
  height: 20px;
  fill: #e0e7ef;
  transition: fill 0.3s ease;
}
.footer .footer-social .social-link:hover {
  background-color: #b80d0d;
  transform: translateY(-2px);
}
.footer .footer-social .social-link:hover svg {
  fill: #ffffff;
}
.footer .footer-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
  position: relative;
}
.footer .footer-section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #c9a66b;
  border-radius: 1px;
}
.footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-list li {
  margin-bottom: 16px;
}
.footer .footer-list li:last-child {
  margin-bottom: 0;
}
.footer .footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer .footer-item .footer-icon {
  width: 20px;
  height: 20px;
  fill: #c9a66b;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer .footer-item .footer-text {
  font-size: 15px;
  color: #b8c5d1;
  line-height: 1.6;
}
.footer .footer-item .footer-text p {
  margin: 0;
}
.footer .footer-item .footer-text p:not(:last-child) {
  margin-bottom: 2px;
}
.footer .footer-hours {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.footer .footer-hours .hours-day {
  font-size: 15px;
  color: #e0e7ef;
  font-weight: 500;
}
.footer .footer-hours .hours-time {
  font-size: 15px;
  color: #c9a66b;
  font-weight: 600;
}
.footer .footer-link {
  font-size: 15px;
  color: #b8c5d1;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
}
.footer .footer-link:hover {
  color: #c9a66b;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-copyright {
  font-size: 14px;
  color: #8a9ba8;
  margin: 0;
}
.footer .footer-legal {
  display: flex;
  gap: 24px;
}
.footer .footer-legal-link {
  font-size: 14px;
  color: #8a9ba8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-legal-link:hover {
  color: #c9a66b;
}

/* Responsivo */
@media (max-width: 992px) {
  .footer {
    padding: 60px 0 0;
  }
  .footer .footer-container {
    padding: 0 16px;
  }
  .footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  .footer .footer-content .footer-section:first-child {
    grid-column: span 2;
  }
  .footer .footer-description {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .footer .footer-section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .footer .footer-bottom {
    padding: 28px 0;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer .footer-legal {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer .footer-content .footer-section:first-child {
    grid-column: span 1;
    text-align: center;
  }
  .footer .footer-social {
    justify-content: center;
  }
  .footer .footer-bottom {
    padding: 24px 0;
  }
}
@media (max-width: 560px) {
  .footer {
    padding: 50px 0 0;
  }
  .footer .footer-container {
    padding: 0 14px;
  }
  .footer .footer-content {
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer .footer-brand {
    margin-bottom: 20px;
  }
  .footer .footer-brand .footer-logo {
    height: 40px;
  }
  .footer .footer-description {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .footer .footer-social {
    gap: 12px;
  }
  .footer .footer-social .social-link {
    width: 36px;
    height: 36px;
  }
  .footer .footer-social .social-link svg {
    width: 18px;
    height: 18px;
  }
  .footer .footer-section-title {
    font-size: 17px;
    margin-bottom: 18px;
  }
  .footer .footer-item {
    gap: 10px;
  }
  .footer .footer-item .footer-icon {
    width: 18px;
    height: 18px;
  }
  .footer .footer-item .footer-text {
    font-size: 14px;
  }
  .footer .footer-hours {
    padding: 6px 0;
  }
  .footer .footer-hours .hours-day,
  .footer .footer-hours .hours-time {
    font-size: 14px;
  }
  .footer .footer-link {
    font-size: 14px;
  }
  .footer .footer-bottom {
    padding: 20px 0;
    gap: 12px;
  }
  .footer .footer-copyright,
  .footer .footer-legal-link {
    font-size: 13px;
  }
  .footer .footer-legal {
    gap: 16px;
  }
}
.header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header .header-container .top-bar {
  border-bottom: 1px solid #6d6d70;
  padding: 10px 0;
  font-size: 14px;
  color: #6d6d70;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}
.header .header-container .top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .header-container .top-bar .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .header-container .top-bar .contact-info .contact-item .contact-icon {
  width: 16px;
  height: 16px;
  fill: #6d6d70;
}
.header .header-container .top-bar .contact-info .contact-item span {
  color: #6d6d70;
}
.header .header-container .top-bar .hours span {
  color: #6d6d70;
}
.header .header-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.header .header-container .top-bar {
  grid-column: 1/-1;
  margin-bottom: 0;
}
.header .header-container .logo {
  display: flex;
}
.header .header-container .logo .logo-img {
    margin: 8px 0 12px 20px;
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    transform: scale(2);
}
.header .header-container {
  /* desktop nav */
}
.header .header-container nav {
  justify-self: center;
}
.header .header-container nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.header .header-container nav .nav-menu li a {
  color: #4b4857;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
}
.header .header-container nav .nav-menu li a:hover {
  color: #b80d0d;
}
.header .header-container .action-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .header-container .action-buttons .btn {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
.header .header-container .action-buttons .btn.btn-reserve {
  background-color: #b80d0d;
  color: white;
}
.header .header-container .action-buttons .btn.btn-reserve:hover {
  background-color: #910707;
}
.header .header-container .action-buttons .btn.btn-whatsapp {
  background-color: #1ea750;
  color: white;
}
.header .header-container .action-buttons .btn.btn-whatsapp:hover {
  background-color: #137236;
}
.header .header-container {
  /* mobile trigger (hamburger) */
}
.header .header-container .mobile-trigger {
  display: none; /* shown only on mobile */
  justify-self: end;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  /* three bars */
}
.header .header-container .mobile-trigger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  max-height: 520px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 1100;
  transform: translateY(-100%);
  transition: transform 0.28s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
.mobile-menu.is-open {
  transform: translateY(0);
}
.mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu .mobile-menu-header .mini-logo {
  display: flex;
  align-items: center;
}
.mobile-menu .mobile-menu-header .mini-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.mobile-menu .mobile-menu-header .mobile-close {
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.mobile-menu .mobile-menu-body {
  padding: 8px 16px 16px;
  overflow: auto;
}
.mobile-menu .mobile-menu-body .mobile-list {
  list-style: none;
  padding: 8px 0 16px;
  margin: 0;
  display: grid;
  gap: 24px;
}
.mobile-menu .mobile-menu-body .mobile-list li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
}
.mobile-menu .mobile-menu-body .mobile-list li a:hover {
  color: #b80d0d;
}
.mobile-menu .mobile-menu-body .mobile-cta {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 14px;
  display: grid;
  gap: 10px;
}
.mobile-menu .mobile-menu-body .mobile-cta .btn {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  display: block;
}
.mobile-menu .mobile-menu-body .mobile-cta .btn-reserve {
  background: #d2ad68;
  color: #222;
}
.mobile-menu .mobile-menu-body .mobile-cta .btn-whatsapp {
  background: #b80d0d;
  color: #fff;
}

/* responsive */
@media (max-width: 768px) {
  .header .header-container .top-bar {
    display: none;
  }
  .header .header-container {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 0 4px 10px 0;
  }
  .header .header-container .logo {
    justify-self: start;
  }
  .header .header-container .logo .logo-img {
    width: 56px;
    height: 56px;
    margin: 0;
    transform: none;
  }
  .header .header-container {
    /* hide desktop nav/actions on mobile */
  }
  .header .header-container nav, .header .header-container .action-buttons {
    display: none;
  }
  .header .header-container {
    /* show hamburger */
  }
  .header .header-container .mobile-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: url("./assets/topbackgrounddd.jpg") center/cover no-repeat fixed;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3764705882) 0%, rgba(0, 0, 0, 0.8470588235) 100%);
  pointer-events: none;
}
.hero .hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-inline: 16px;
}
.hero .hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  opacity: 0.95;
  justify-content: flex-start;
}
.hero .hero-rating .hero-stars {
  display: inline-flex;
  gap: 6px;
}
.hero .hero-rating .hero-stars .star {
  width: 26px;
  height: 26px;
}
.hero .hero-rating .hero-rating-text {
  font-size: 16px;
  font-weight: 500;
  color: #e6e6e6;
}
.hero .hero-title {
  line-height: 1.05;
  margin: 70px 0 50px;
}
.hero .hero-title .hero-title-top {
  display: block;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero .hero-title .hero-title-bottom {
  display: block;
  font-size: 74px;
  font-weight: 700;
  color: #c9a66b;
}
.hero .hero-subtitle {
  max-width: 620px;
  margin: 30px auto 40px;
  font-size: 24px;
  color: #f0f0f0;
  opacity: 0.95;
}
.hero .hero-actions {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero .hero-actions .btn {
  padding: 24px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  border: 2px solid transparent;
}
.hero .hero-actions .btn-primary {
  background-color: #b80d0d;
  color: #f5f5f5;
}
.hero .hero-actions .btn-primary:hover {
  background-color: #910707;
  transform: translateY(-1px);
}
.hero .hero-actions .btn-primary:active {
  transform: translateY(0);
}
.hero .hero-actions .btn-outline {
  background: rgba(0, 0, 0, 0.3490196078);
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.4509803922);
  background: rgba(255, 255, 255, 0.116);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(4px) saturate(110%);
  -webkit-backdrop-filter: blur(4px) saturate(110%);
}
.hero .hero-actions .btn-outline:hover {
  transform: translateY(-1px);
}
.hero .hero-actions .btn-outline:active {
  transform: translateY(0);
}
.hero .hero-promo {
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.116);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(4px) saturate(110%);
  -webkit-backdrop-filter: blur(4px) saturate(110%);
}
.hero .hero-promo .hero-promo-title {
  font-size: 18px;
  color: #ecb078;
  font-weight: bold;
}
.hero .hero-promo .hero-promo-text {
  text-align: left;
  display: grid;
  gap: 2px;
}
.hero .hero-promo .hero-promo-text strong {
  font-weight: 800;
  color: #ffffff;
}
.hero .hero-promo .hero-promo-text span {
  font-size: 14px;
  color: #e9e9e9;
}
.hero .hero-promo .hero-promo-text small {
  font-size: 12px;
  color: #d9d9d9;
}

/* responsivo */
@media (max-width: 992px) {
  .hero {
    min-height: 560px;
    padding: 64px 12px;
  }
  .hero .hero-title .hero-title-top {
    font-size: 48px;
  }
  .hero .hero-title .hero-title-bottom {
    font-size: 40px;
  }
  .hero .hero-subtitle {
    font-size: 18px;
  }
  .hero .hero-actions .btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: 480px;
    padding: 90px 24px;
    background: url("./assets/topbackgroundmobile.jpg") center/cover no-repeat fixed;
  }
  .hero .hero-rating {
    margin-bottom: 12px;
  }
  .hero .hero-rating .hero-stars .star {
    width: 20px;
    height: 20px;
  }
  .hero .hero-rating .hero-rating-text {
    font-size: 14px;
  }
  .hero .hero-title {
    margin: 24px 0 18px;
  }
  .hero .hero-title .hero-title-top {
    font-size: 38px;
  }
  .hero .hero-title .hero-title-bottom {
    font-size: 54px;
  }
  .hero .hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin: 38px 0px;
  }
  .hero .hero-actions {
    gap: 15px;
    grid-auto-flow: row;
    justify-items: center;
    margin-bottom: 40px;
  }
  .hero .hero-actions .btn {
    font-weight: 600;
    width: 100%;
    max-width: 320px;
    padding: 19px 34px;
    font-size: 19px;
  }
  .hero .hero-promo {
    width: 100%;
    max-width: 360px;
    padding: 28px 12px;
    gap: 8px;
  }
  .hero .hero-promo .hero-promo-title {
    font-size: 16px;
  }
  .hero .hero-promo .hero-promo-text span {
    font-size: 13px;
  }
  .hero .hero-promo .hero-promo-text small {
    font-size: 11.5px;
  }
}
.location {
  padding: 60px 0;
  background-color: #ffffff;
}
.location .location-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.location .location-header {
  text-align: center;
  margin-bottom: 40px;
}
.location .location-header .location-title {
  font-size: 40px;
  font-weight: 800;
  color: #222222;
  position: relative;
}
.location .location-header .location-subtitle {
  font-size: 18px;
  color: #6d6d70;
  margin: 0;
  line-height: 1.6;
}
.location .location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.location .location-map {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 100% !important;
}
.location .location-map iframe {
  min-height: 300px;
}
.location .map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}
.location .map-placeholder .map-icon {
  width: 80px;
  height: 80px;
  background-color: #b80d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(184, 13, 13, 0.25);
}
.location .map-placeholder .map-icon svg {
  width: 40px;
  height: 40px;
  fill: #ffffff;
}
.location .map-placeholder .map-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 12px 0;
}
.location .map-placeholder .map-description {
  font-size: 16px;
  color: #6d6d70;
  margin: 0;
}
.location .location-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.location .info-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  min-height: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.location .info-section .info-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 32px 0;
  position: relative;
}
.location .info-section .info-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #c9a66b;
  border-radius: 2px;
}
.location .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.location .info-item:last-child {
  margin-bottom: 0;
}
.location .info-item .info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(184, 13, 13, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location .info-item .info-icon svg {
  width: 24px;
  height: 24px;
  fill: #b80d0d;
}
.location .info-item .info-details {
  flex: 1;
}
.location .info-item .info-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #b80d0d;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.location .info-item .info-text {
  font-size: 16px;
  color: #6d6d70;
  line-height: 1.6;
  margin: 0;
}
.location .info-item .info-text p {
  margin: 0;
}
.location .info-item .info-text p:not(:last-child) {
  margin-bottom: 4px;
}
.location .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.location .hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.location .hours-item .hours-day {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}
.location .hours-item .hours-time {
  font-size: 16px;
  font-weight: 600;
  color: #b80d0d;
}

/* Responsivo */
@media (max-width: 992px) {
  .location {
    padding: 80px 0;
  }
  .location .location-container {
    padding: 0 16px;
  }
  .location .location-header {
    margin-bottom: 60px;
  }
  .location .location-header .location-title {
    font-size: 40px;
  }
  .location .location-header .location-subtitle {
    font-size: 16px;
  }
  .location .location-content {
    gap: 40px;
  }
  .location .location-info {
    gap: 32px;
  }
  .location .info-section {
    padding: 32px;
  }
  .location .info-section .info-section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .location .info-item {
    margin-bottom: 24px;
    gap: 16px;
  }
  .location .info-item .info-icon {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 768px) {
  .location .location-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .location .location-map {
    order: 2;
  }
  .location .location-info {
    order: 1;
  }
}
@media (max-width: 560px) {
  .location {
    padding: 40px 10px;
  }
  .location .location-container {
    padding: 0;
  }
  .location .location-header {
    margin-bottom: 30px;
  }
  .location .location-header .location-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
  .location .location-header .location-subtitle {
    font-size: 16px;
    font-weight: 500;
  }
  .location .location-content {
    gap: 40px;
  }
  .location .location-map {
    min-height: 300px;
  }
  .location .location-map iframe {
    min-height: 300px;
  }
  .location .map-placeholder {
    padding: 40px 24px;
  }
  .location .map-placeholder .map-icon {
    width: 64px;
    height: 64px;
  }
  .location .map-placeholder .map-icon svg {
    width: 32px;
    height: 32px;
  }
  .location .map-placeholder .map-title {
    font-size: 20px;
  }
  .location .map-placeholder .map-description {
    font-size: 14px;
  }
  .location .location-info {
    gap: 28px;
  }
  .location .info-section {
    padding: 28px 24px;
  }
  .location .info-section .info-section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .location .info-item {
    margin-bottom: 20px;
    gap: 14px;
  }
  .location .info-item .info-icon {
    width: 40px;
    height: 40px;
  }
  .location .info-item .info-icon svg {
    width: 20px;
    height: 20px;
  }
  .location .info-item .info-text {
    font-size: 15px;
  }
  .location .info-item .info-label {
    font-size: 13px;
  }
  .location .hours-item {
    padding: 12px 0;
  }
  .location .hours-item .hours-day,
  .location .hours-item .hours-time {
    font-size: 15px;
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: Arial, sans-serif;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.glider,
.glider-contain {
  overflow: hidden;
}

.slide img {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
