/* Base Styles */
:root {
  --gold: hsl(45, 100%, 60%);
  --gold-dark: hsl(45, 100%, 50%);
  --gold-light: hsl(45, 100%, 70%);
  --gold-10: hsla(45, 100%, 60%, 0.1);
  --gold-20: hsla(45, 100%, 60%, 0.2);
  --gold-30: hsla(45, 100%, 60%, 0.3);
  --black: #000000;
  --zinc-900: #18181b;
  --zinc-800: #27272a;
  --zinc-700: #3f3f46;
  --zinc-600: #52525b;
  --zinc-500: #71717a;
  --zinc-400: #a1a1aa;
  --zinc-300: #d4d4d8;
  --zinc-200: #e4e4e7;
  --zinc-100: #f4f4f5;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold-sm: 0 1px 3px rgba(234, 179, 8, 0.1);
  --shadow-gold: 0 4px 6px -1px rgba(234, 179, 8, 0.1), 0 2px 4px -1px rgba(234, 179, 8, 0.06);
  --shadow-gold-lg: 0 10px 15px -3px rgba(234, 179, 8, 0.1), 0 4px 6px -2px rgba(234, 179, 8, 0.05);
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gold-text {
  color: var(--gold);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background: #000000;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
  }
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-list a {
  color: var(--zinc-300);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: var(--gold);
}

.appointment-btn {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid rgba(234, 179, 8, 0.3);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  margin-left: 2rem;
}

.appointment-btn:hover {
  background-color: rgba(234, 179, 8, 0.1);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu a {
  color: var(--zinc-300);
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-appointment-btn {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}

/* Hero Section */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero-section {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1)),
      url("../public/images/talyta-mobile.jpg");
    background-size: cover;
    background-position: top center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text {
  flex: 1;
  z-index: 10;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
}

.hero-text p {
  color: var(--zinc-300);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 1.25rem;
    color: var(--zinc-400);
  }
}

.hero-btn {
  background-color: var(--gold);
  color: var(--black);
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: rgba(234, 179, 8, 0.8);
}

.hero-btn i {
  margin-left: 0.5rem;
}

.hero-image {
  display: none;
}

@media (min-width: 768px) {
  .hero-image {
    display: block;
    flex: 1;
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-gold-sm);
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  color: var(--zinc-400);
  max-width: 32rem;
  margin: 0 auto;
}

.section-header.minimal {
  margin-bottom: 3rem;
}

.section-header.minimal h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Services Section */
.services-section {
  background-color: var(--zinc-900);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--zinc-800);
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-gold-sm);
}

.service-title {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--zinc-300);
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(to bottom, var(--zinc-900), var(--black));
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2.5rem 0;
}

.carousel-container {
  overflow: hidden;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .carousel-container {
    padding: 0 3rem;
  }
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 1.5rem;
  background-color: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(4px);
  height: 100%;
  margin-left: 2px;
  margin-right: 2px;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 33.333%;
  }
}

.quote-icon {
  color: rgba(234, 179, 8, 0.3);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.testimonial-content {
  color: var(--zinc-300);
  font-style: italic;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-name {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.125rem;
}

.author-role {
  color: var(--zinc-400);
  font-size: 0.875rem;
}

.testimonial-rating {
  display: flex;
}

.star-filled {
  color: var(--gold);
  font-size: 1.25rem;
}

.star-empty {
  color: var(--zinc-600);
  font-size: 1.25rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(39, 39, 42, 0.8);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--zinc-700);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--zinc-600);
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--gold);
}

/* Videos Section */
.videos-section {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.videos-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.videos-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.video-gallery {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.video-card {
  background-color: rgba(24, 24, 27, 0.5);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--black);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  opacity: 0.9;
}

.play-button:hover {
  transform: scale(1.1);
  background-color: var(--gold);
  opacity: 1;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transition: opacity 0.3s ease;
  z-index: 3;
}

.progress-container {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
}

.progress-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--gold);
  border-radius: var(--radius-full);
  width: 0;
}

.control-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.control-button {
  color: var(--white);
  font-size: 1.25rem;
  transition: color 0.3s ease;
  padding: 0.25rem;
}

.control-button:hover {
  color: var(--gold);
}

.volume-container {
  display: flex;
  align-items: center;
  position: relative;
}

.volume-slider-container {
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
  margin-left: 0.5rem;
}

.volume-container:hover .volume-slider-container {
  width: 80px;
}

.volume-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gold);
  cursor: pointer;
}

.time-display {
  color: var(--white);
  font-size: 0.875rem;
  font-family: monospace;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.video-info p {
  color: var(--zinc-300);
  line-height: 1.6;
}

.video-gallery-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .video-gallery-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

.video-nav-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--zinc-400);
  font-size: 0.875rem;
  font-style: italic;
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--zinc-600);
}

.dot.active {
  background-color: var(--gold);
}

.video-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.video-nav-link:hover {
  color: var(--gold-light);
}

.video-nav-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.video-nav-link:hover i {
  transform: translateX(3px);
}

/* Before After Section */
.before-after-section {
  background-color: var(--black);
}

.before-after-cases {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.before-after-case {
  max-width: 62.5rem;
  margin: 0 auto;
}

.case-header {
  text-align: center;
  margin-bottom: 2rem;
}

.case-title {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.case-description {
  color: var(--zinc-300);
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(234, 179, 8, 0.2);
  box-shadow: var(--shadow-lg), var(--shadow-gold-sm);
}

@media (min-width: 768px) {
  .slider-container {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 1024px) {
  .slider-container {
    aspect-ratio: 16 / 9;
  }
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(to bottom, var(--black), var(--zinc-900));
}

.faq-accordion {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: rgba(39, 39, 42, 0.5);
  backdrop-filter: blur(4px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq-question span {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: var(--gold);
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-answer.active {
  max-height: 24rem;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--zinc-300);
}

/* Contact Section */
.contact-section {
  background-color: var(--zinc-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background-color: rgba(39, 39, 42, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

.info-title {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(234, 179, 8, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-icon i {
  color: var(--gold);
  font-size: 1.5rem;
}

.contact-details {
  flex: 1;
}

.contact-details h4 {
  color: var(--zinc-300);
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--gold);
  transition: color 0.3s ease;
  font-size: 1rem;
}

.contact-link:hover {
  color: rgba(234, 179, 8, 0.8);
}

.instagram-preview {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(234, 179, 8, 0.1);
}

.instagram-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-container {
  background-color: rgba(39, 39, 42, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  color: var(--gold);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--zinc-300);
  margin-bottom: 1.5rem;
}

.gold-btn {
  background-color: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.gold-btn:hover {
  background-color: rgba(234, 179, 8, 0.8);
}

.form-error {
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #ef4444;
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  color: var(--zinc-300);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--zinc-800);
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(234, 179, 8, 0.3);
}

.form-group textarea {
  resize: none;
  min-height: 8rem;
}

.required {
  color: var(--gold);
}

.submit-btn {
  width: 100%;
  background-color: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: var(--radius-xl);
  transition: background-color 0.3s ease;
  position: relative;
}

.submit-btn:hover {
  background-color: rgba(234, 179, 8, 0.8);
}

.btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
}

.btn-loading i {
  margin-right: 0.5rem;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: flex;
}

/* Footer */
.footer {
  background-color: var(--black);
  border-top: 1px solid rgba(234, 179, 8, 0.2);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  width: 6rem;
  height: 6rem;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

@media (min-width: 768px) {
  .footer-info {
    text-align: right;
  }
}

.copyright {
  color: var(--zinc-400);
  font-size: 0.875rem;
}

.tagline {
  color: var(--gold);
  margin-top: 0.5rem;
}

/* Floating Nav */
.floating-nav {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  transition: all 0.3s ease;
  transform: translateY(5rem);
  opacity: 0;
}

.floating-nav.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-menu-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: background-color 0.3s ease;
}

.float-menu-btn:hover {
  background-color: rgba(234, 179, 8, 0.9);
}

.float-menu-btn i {
  font-size: 1.5rem;
}

.float-menu-btn .fa-xmark {
  display: none;
}

.float-menu-btn.active .fa-bars {
  display: none;
}

.float-menu-btn.active .fa-xmark {
  display: block;
}

.float-menu {
  position: absolute;
  bottom: 4rem;
  right: 0;
  background-color: rgba(39, 39, 42, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(234, 179, 8, 0.1);
  border-radius: var(--radius-2xl);
  padding: 1rem;
  transform: scale(0);
  opacity: 0;
  transform-origin: bottom right;
  transition: all 0.3s ease;
}

.float-menu.active {
  transform: scale(1);
  opacity: 1;
}

.float-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  color: var(--zinc-300);
  transition: all 0.3s ease;
}

.float-link:hover {
  background-color: var(--zinc-800);
  color: var(--gold);
}

.float-link i {
  font-size: 1.25rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-container {
  position: relative;
  background-color: var(--zinc-900);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-xl), var(--shadow-gold-sm);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
  margin: 0 auto;
  z-index: 1101;
}

.modal.active .modal-container {
  transform: scale(1);
  opacity: 1;
}

.modal-header {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(234, 179, 8, 0.1);
}

.modal-header h2 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--zinc-400);
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--zinc-800);
  color: var(--zinc-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.modal-close:hover {
  background-color: var(--zinc-700);
  color: var(--gold);
}

.modal-content {
  padding: 1.5rem;
}

.form-intro {
  margin-bottom: 1.5rem;
}

.form-intro p {
  color: var(--zinc-300);
}

/* Adicione estas classes para garantir que o modal de agendamento seja exibido corretamente */
#appointment-modal .modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

#appointment-modal .modal-container {
  margin: auto;
  width: 100%;
  max-width: 32rem;
}

/* Estilos específicos para o modal de agendamento */
.appointment-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: auto;
}

.appointment-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Font Awesome Icons Styling */
.fa-solid,
.fa-brands {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Adicione este CSS para garantir que o modal esteja oculto por padrão */
.appointment-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: auto;
}

.appointment-modal.active {
  display: block;
}

/* Resto do CSS permanece o mesmo */

/* Formulário de Depoimentos */
.testimonial-form-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.testimonial-form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.testimonial-form .form-group {
  margin-bottom: 20px;
}

.testimonial-form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.testimonial-form .form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 16px;
}

.testimonial-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.rating-container {
  display: flex;
  align-items: center;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating input {
  display: none;
}

.rating label {
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  position: relative;
  font-size: 30px;
  color: #ddd;
}

.rating label:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
}

.rating input:checked ~ label {
  color: #ffc107;
}

.rating label:hover,
.rating label:hover ~ label {
  color: #ffc107;
}

.rating input:checked + label:hover,
.rating input:checked ~ label:hover,
.rating label:hover ~ input:checked ~ label,
.rating input:checked ~ label:hover ~ label {
  color: #ffc107;
}

.testimonial-form button[type="submit"] {
  background-color: var(--cor-primaria, #ffc107);
  border: none;
  color: #000;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-form button[type="submit"]:hover {
  background-color: #e0a800;
}

/* Novo Rodapé */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  position: relative;
  z-index: 10;
}

.footer-top {
  padding: 60px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 100%;
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-logo .tagline {
  font-size: 14px;
  color: #ccc;
  max-width: 400px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #d4af37;
}

.footer-contact-list,
.footer-links,
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li,
.footer-links li,
.footer-hours li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-list i {
  color: #d4af37;
  margin-right: 10px;
  min-width: 20px;
  margin-top: 4px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d4af37;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-hours li {
  color: #ccc;
}

.footer-hours li span {
  font-weight: 600;
  color: #fff;
  margin-right: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: #d4af37;
  color: #000;
  transform: translateY(-3px);
}

.newsletter-mini {
  margin-top: 25px;
}

.newsletter-mini h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.gold-btn-small {
  display: inline-block;
  background-color: #d4af37;
  color: #000;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.gold-btn-small:hover {
  background-color: #fff;
  color: #000;
}

.footer-bottom {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.privacy-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.privacy-links a:hover {
  color: #d4af37;
}

/* Responsividade do Rodapé */
@media (max-width: 991px) {
  .footer-top {
    padding: 40px 0 20px;
  }

  .footer-columns {
    gap: 20px;
  }

  .footer-column {
    flex: 1 1 45%;
  }
}

@media (max-width: 767px) {
  .footer-column {
    flex: 1 1 100%;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/* Adicionando estilos para o footer simples */
.footer-simple {
  background-color: var(--black);
  border-top: 1px solid rgba(234, 179, 8, 0.2);
  padding: 3rem 0 1.5rem;
}

.footer-content-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content-simple {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-logo-simple {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-logo-simple {
    margin-bottom: 0;
  }
}

.footer-logo-simple img {
  width: 100px;
  height: auto;
}

.footer-info-simple {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-info-simple {
    align-items: flex-end;
  }
}

.footer-contact-simple p {
  margin-bottom: 0.5rem;
  color: var(--zinc-300);
  font-size: 0.9rem;
}

.footer-contact-simple i {
  color: var(--gold);
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
}

.footer-social-simple {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon-simple {
  color: var(--zinc-300);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-icon-simple:hover {
  color: var(--gold);
}

.footer-bottom-simple {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-simple p {
  color: var(--zinc-500);
  font-size: 0.875rem;
}

/* Estilos para o rodapé simples */
.footer-simple {
  background-color: #000;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content-simple {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo-simple {
  flex: 0 0 100%;
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-logo-simple img {
  max-width: 100%;
  height: auto;
}

.footer-info-simple {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-contact-simple {
  flex: 0 0 100%;
  margin-bottom: 20px;
}

.footer-contact-simple p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact-simple i {
  margin-right: 10px;
  color: #ffc107;
  width: 20px;
  text-align: center;
}

.footer-social-simple {
  display: flex;
  gap: 15px;
}

.social-icon-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon-simple:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom-simple {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade do rodapé */
@media (min-width: 768px) {
  .footer-logo-simple {
    flex: 0 0 30%;
    margin-bottom: 0;
  }

  .footer-info-simple {
    flex: 0 0 65%;
  }

  .footer-contact-simple {
    flex: 0 0 60%;
    margin-bottom: 0;
  }

  .footer-social-simple {
    flex: 0 0 35%;
    justify-content: flex-end;
  }
}

.form-success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
  transition: opacity 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
