/* DoAtelier Website - Main Stylesheet */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Caveat:wght@400;500;600&display=swap');

/* Color Variables */
:root {
  /* Main Colors */
  --primary-color: #c97c5d;       /* Warm terracotta */
  --secondary-color: #b7c4b1;     /* Sage green */
  --accent-color: #8c6d46;        /* Earth brown */
  
  /* Neutrals */
  --light-bg: #f9f7f4;            /* Warm white */
  --light-gray: #e6e2dd;          /* Light gray */
  --dark-brown: #59493f;          /* Rich earth */
  
  /* Text Colors */
  --text-color: #333333;
  --text-light: #666666;
  --medium-gray: #7d7d7d;
  --white: #ffffff;
  --black: #232323;
  
  /* Font Families */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

.accent-text {
  font-family: 'Caveat', cursive;
  font-size: 1.5em;
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

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

.left-section .logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

header.scrolled .left-section .logo-img {
  height: 40px;
}

.center-section {
  flex: 1;
  text-align: center;
}

.center-section nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.center-section nav ul li {
  margin: 0 12px;
}

.center-section nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.center-section nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.center-section nav ul li a:hover:after,
.center-section nav ul li a.active:after {
  width: 100%;
}

.right-section {
  display: flex;
  align-items: center;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.82rem;
}

.whatsapp-link i {
  color: #25D366;
  margin-right: 5px;
  font-size: 1.1rem;
}

.language-selector {
  display: flex;
}

.language-selector button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  cursor: pointer;
  margin: 0 5px;
  color: var(--text-light);
  transition: all 0.3s;
  font-weight: 500;
  position: relative;
}

.language-selector button.active {
  color: var(--primary-color);
  font-weight: 600;
}

.language-selector button.active:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.language-selector button:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 0;
}

#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  width: 100%;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* General Section Styling */
.services, .testimonials, .classes, .gallery, .student-showcase, .faq, .contact {
  padding: 5rem 0;
  position: relative;
}

/* Textured Backgrounds for Alternating Sections */
.services:before, .testimonials:before, .faq:before, .contact:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/texture-bg.png');
  background-repeat: repeat;
  opacity: 0.1;
  z-index: 1;
}

/* Section Container Positioning */
.services .container, .testimonials .container, .classes .container, 
.gallery .container, .student-showcase .container, .faq .container, 
.contact .container {
  position: relative;
  z-index: 2;
}

/* Section Titles and Spacing */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Consistent Margins for Call-to-Actions */
.services-cta, .showcase-cta, .testimonial-cta, .faq-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Standard Grid Layouts */
.services-grid, .testimonials-grid, .showcase-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Mobile Adjustments for all Sections */
@media (max-width: 768px) {
  .services, .testimonials, .classes, .gallery, .student-showcase, .faq, .contact {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .services, .testimonials, .classes, .gallery, .student-showcase, .faq, .contact {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card .card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.service-card .service-summary {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.service-card .service-extra {
  color: var(--text-light);
  line-height: 1.5;
  font-size: 0.9rem;
  flex: 1;
}

/* Services CTA */
.services-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  position: relative;
  padding: 6rem 0;
}

.testimonials:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/texture-bg.png') repeat;
  opacity: 0.03;
  z-index: 0;
}

/* Updated testimonials grid to match services grid style */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  height: 200px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.05);
}

.testimonial-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #f2b01e;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-style: italic;
  color: #4a4a4a;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.testimonial-author {
  font-weight: 700;
  color: #333;
}

.secondary-cta {
  background-color: transparent;
  color: var(--primary-color);
}

.secondary-cta:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Gallery Section */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel {
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
}

.carousel-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Contact Section */
#contacto.contact {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
}

#contacto.contact:before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--light-bg);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

#contacto .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title Centering */
#contacto .section-title {
  text-align: center !important;
  margin-bottom: 3rem;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#contacto .section-title:after {
  margin: 15px auto 0;
}

/* Contact Layout */
#contacto .contact-details {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

/* Calendar Styling */
#contacto .contact-calendar {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  flex: 0.8;
}

#contacto .calendar-widget {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#contacto .calendar-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

#contacto .calendar-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

#contacto .calendar-body.show {
  max-height: 500px;
}

#contacto .calendar-day {
  padding: 15px 20px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
}

#contacto .calendar-day:last-child {
  border-bottom: none;
}

/* Form Styling */
#contacto .contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 0.8;
}

#contacto #contactForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contacto .form-group {
  margin-bottom: 0;
}

#contacto .contact-form input,
#contacto .contact-form select,
#contacto .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

#contacto .contact-form input:focus,
#contacto .contact-form select:focus,
#contacto .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(201, 124, 93, 0.1);
  background-color: #fff;
}

#contacto .form-message {
  display: none;
  padding: 12px 15px;
  margin-top: 0;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

#contacto .success-message,
#contacto .error-message {
  display: none;
}

#contacto .success-message {
  background-color: rgba(107, 144, 128, 0.15);
  color: #6b9080;
  border: 1px solid #6b9080;
}

#contacto .error-message {
  background-color: rgba(189, 79, 67, 0.15);
  color: #bd4f43;
  border: 1px solid #bd4f43;
}

#contacto .submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

#contacto .submit-btn:hover {
  background-color: #b56e51;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
#contacto .contact-info {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 40px;
}

#contacto .contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

#contacto .contact-info p:last-child {
  margin-bottom: 0;
}

/* Social Links */
#contacto .social-links {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

#contacto .social-links i {
  font-size: 2rem;
  color: #E1306C; /* Instagram color */
  margin-right: 15px;
}

#contacto .social-links a {
  font-weight: 600;
  margin-left: 5px;
  color: #E1306C;
  text-decoration: none;
}

#contacto .social-links a:hover {
  text-decoration: underline;
}

/* Map Container */
#contacto .map-container {
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#contacto .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Layout */
@media (max-width: 992px) {
  #contacto .contact-details {
    flex-direction: column;
  }
  
  #contacto .contact-calendar {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  #contacto.contact {
    padding: 60px 0;
  }
  
  #contacto .contact-info, 
  #contacto .social-links {
    padding: 20px;
  }
  
  #contacto .map-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  #contacto .section-title {
    font-size: 1.8rem;
  }
  
  #contacto .contact-form {
    padding: 20px;
  }
}

/* Footer */
footer {
  background-color: var(--dark-brown);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .center-section nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-container {
    justify-content: space-between;
  }
  
  .left-section, .right-section {
    flex: initial;
  }
  
  .right-section {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 0.85rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .left-section .logo-img {
    height: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .contact-info p {
    font-size: 1rem;
  }
  
  .secondary-cta {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  /* Testimonial Cards */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Class Pricing Plans */
  .pricing-plans-container {
    grid-template-columns: 1fr;
  }
  
  .featured-plan {
    transform: scale(1);
    order: -1;
  }
  
  .featured-plan:hover {
    transform: translateY(-10px);
  }
  
  /* Student Showcase */
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .before-after-container {
    flex-direction: column;
    height: auto;
  }
  
  .before-image, .after-image {
    height: 200px;
  }
  
  /* Contact Form */
  .contact-details {
    flex-direction: column;
  }
  
  .contact-form, .contact-calendar {
    width: 100%;
    flex: 0.8;
  }
  
  .lead-magnet-offer {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 3rem !important;
  }
  
  .service-card .card-content {
    padding: 20px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  /* Testimonial */
  .testimonial-image {
    height: 150px;
  }
  
  .testimonial-content {
    padding: 1.25rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  /* Showcase Tabs */
  .showcase-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .showcase-tab {
    width: 80%;
  }
  
  /* Class Info Blocks */
  .class-info-blocks {
    grid-template-columns: 1fr;
  }
}

/* Mobile navigation when active */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  padding-top: 80px;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 0 20px;
}

.mobile-nav ul li {
  margin-bottom: 20px;
  text-align: center;
}

.mobile-nav ul li a {
  font-size: 1.2rem;
  color: var(--text-color);
  display: block;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.mobile-nav .close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-color);
}

.mobile-nav .right-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.mobile-nav .whatsapp-link {
  margin-right: 0;
  margin-bottom: 20px;
}

.mobile-nav .language-selector {
  justify-content: center;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Additional Element Styling */
.current-day {
  background-color: rgba(201, 124, 93, 0.1);
  font-weight: 600;
}

.dropdown-toggle {
  transition: transform 0.3s ease;
}

.calendar-body.show + .calendar-header .dropdown-toggle {
  transform: rotate(180deg);
}

/* Classes Section */
.classes {
  background-color: #fff;
  padding: 4rem 0;
}

.classes .section-header {
  margin-bottom: 2rem;
}

.classes .section-header h2.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
}

.classes .section-header h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.classes .section-header .section-subtitle {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
}

.classes .pricing-plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.classes .pricing-plan {
  max-width: 320px;
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.classes .pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.classes .class-info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.classes .info-block {
  padding: 1.5rem;
  text-align: center;
  background-color: #f9f7f5;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Additional Studio Access (Classes) Section Styling Improvements */
.classes .pricing-header {
  text-align: center;
  margin-bottom: 1rem;
}
.classes .pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.classes .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 0.5rem;
}
.classes .pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.classes .pricing-features ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}
.classes .pricing-cta {
  text-align: center;
  margin-top: 1rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: #f9f7f5;
  position: relative;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
  flex: 1;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  padding-top: 1.5rem;
}

.faq-more {
  margin-bottom: 1rem;
  color: #666;
}

.faq-more a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.faq-more a:hover {
  text-decoration: underline;
}

/* Media queries para la sección FAQ */
@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .faq-container {
    gap: 1rem;
  }
  
  .faq-item {
    margin-bottom: 1rem;
  }
  
  .faq-question {
    padding: 1.2rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem;
    max-height: 600px;
  }
  
  .faq-answer p {
    padding-top: 0.8rem;
  }
}

@media (max-width: 576px) {
  .faq {
    padding: 3rem 0;
  }
  
  .faq-container {
    width: 100%;
    padding: 0 0.5rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
  
  .faq-answer p {
    padding-top: 0.8rem;
    font-size: 0.9rem;
  }
}

/* Student Showcase Section */
.student-showcase {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.showcase-tab {
  padding: 0.8rem 1.5rem;
  border: none;
  background-color: #f1f1f1;
  color: #666;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.showcase-tab:hover {
  background-color: #e0e0e0;
}

.showcase-tab.active {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.showcase-item {
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.before-after-container {
  position: relative;
  display: flex;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.before-image,
.after-image {
  flex: 1;
  position: relative;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.showcase-content {
  padding: 1.5rem;
}

.showcase-content h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.student-level {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.showcase-description {
  color: #666;
  font-style: italic;
  line-height: 1.6;
}

.showcase-note {
  margin-bottom: 1rem;
  color: #666;
}

/* Membership Options Styling */
.feature-note {
  color: var(--medium-gray);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

.feature-note i {
  color: var(--accent-color);
  margin-right: 5px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
}

.price span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-plan {
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  border: 1px solid var(--light-gray);
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.featured-plan {
  border: 2px solid var(--accent-color);
  position: relative;
  z-index: 2;
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.ribbon {
  background-color: var(--accent-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  position: absolute;
  right: -5px;
  top: 20px;
  text-transform: uppercase;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.ribbon:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 5px;
  height: 5px;
  border-radius: 0 0 0 5px;
  background-color: darken(var(--accent-color), 15%);
  background-color: #b05e3f;
}

.feature-note {
  color: var(--medium-gray);
  font-style: italic;
  margin-top: var(--space-sm);
  font-size: 0.9rem;
}

/* Fix for button styling in pricing plans */
.pricing-cta .cta-button {
  width: 100%;
  padding: 12px 24px;
}

/* Fix hover effect for pricing plans */
.pricing-plan:hover:not(.featured-plan) {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.featured-plan:hover {
  transform: translateY(-15px);
}

@media (max-width: 992px) {
  .featured-plan {
    transform: translateY(0);
  }
  
  .featured-plan:hover {
    transform: translateY(-5px);
  }
}

/* Makes the info blocks match the new design */
.class-info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xxl);
  text-align: center;
}

.info-block {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.info-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-block i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: var(--space-sm);
}

@media (max-width: 992px) {
  .pricing-plans-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-plan {
    max-width: 500px;
    width: 100%;
    margin-bottom: var(--space-lg);
  }

  .pricing-header h3 {
    font-size: 1.6rem;
  }
}

.section-header h3 {
  color: var(--accent-color);
  font-family: var(--font-accent);
  font-size: 1.8rem;
  margin-top: -1rem;
  font-weight: 400;
}

/* Ensure space between title and subtitle */
.mb-md {
  margin-bottom: var(--space-md);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

/* Accessibility Helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Studio Access / Membership Section - Complete Redesign */
.studio-access {
  padding: 5rem 0;
  background-color: var(--light-bg);
  position: relative;
}

.studio-access .section-title {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.studio-access-subtitle {
  font-family: var(--font-accent);
  color: var(--accent-color);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 400;
}

.membership-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Pricing table container */
.membership-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 4rem;
  position: relative;
  padding: 1rem;
}

@media (min-width: 992px) {
  .membership-plans {
    align-items: stretch;
  }
  
  .plan-card {
    height: 100%;
  }
}

/* Individual plan card */
.plan-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: none;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 500;
  color: #594d45;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}

.plan-price .price-number {
  font-size: 2rem;
  font-weight: 700;
  color: #c97c5d;
}

.plan-price span {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
  margin-left: 5px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.features-list li i {
  color: #4CAF50;
  margin-right: 1rem;
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-note {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  color: #777;
  font-style: italic;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
}

.feature-note i {
  color: #FFA726;
  margin-right: 0.8rem;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-footer {
  margin-top: auto;
}

.plan-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  background-color: transparent;
  color: #c97c5d;
  border: 1px solid #c97c5d;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.plan-btn:hover {
  background-color: #c97c5d;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #d08e74;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 15px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  text-transform: uppercase;
  z-index: 20;
  letter-spacing: 0.5px;
}

.plan-card.popular .plan-btn {
  background-color: #c97c5d;
  color: var(--white);
}

.plan-card.popular .plan-btn:hover {
  background-color: #b56e51;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .plan-card {
    padding: 2rem;
  }
  
  .plan-price {
    margin-bottom: 2rem;
  }
  
  .features-list {
    margin-bottom: 2rem;
  }
  
  .feature-note {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .plan-card {
    padding: 1.5rem;
  }
}

/* Features sections below pricing plans */
.studio-features {
  margin-top: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid #c87c5d;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 2rem;
  color: #c87c5d;
  transition: all 0.3s ease;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.feature-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .membership-plans {
    flex-direction: column;
    align-items: center;
  }
  
  .plan-card {
    width: 100%;
    max-width: 450px;
    margin-bottom: 2rem;
  }
  
  .plan-card.popular {
    order: -1;
  }
}

@media (max-width: 768px) {
  .studio-access {
    padding: 4rem 0;
  }
  
  .membership-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .plan-header {
    padding: 1.5rem;
  }
  
  .plan-features, .plan-footer {
    padding: 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
}

/* Journey Visualization for Student Showcase */
.journey-intro h3 {
  font-family: var(--font-accent);
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.journey-intro p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.journey-visualization {
  margin: 3rem auto;
  max-width: 900px;
}

.journey-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2rem 0;
}

.journey-steps:before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #c87c5d;
  z-index: 1;
}

.journey-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid #c87c5d;
  transition: all 0.3s ease;
}

.journey-step:nth-child(2) .step-icon {
  border-color: #c87c5d;
}

.journey-step:nth-child(3) .step-icon {
  border-color: #c87c5d;
}

.step-icon i {
  font-size: 2rem;
  color: #c87c5d;
  transition: all 0.3s ease;
}

.journey-step:nth-child(2) .step-icon i {
  color: #c87c5d;
}

.journey-step:nth-child(3) .step-icon i {
  color: #c87c5d;
}

.journey-step:hover .step-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-content {
  padding: 0 0.5rem;
  margin-bottom: 1.5rem;
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.step-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Make showcase items more prominent */
.showcase-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--white);
  margin-bottom: 2rem;
}

.showcase-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.showcase-content {
  padding: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .journey-steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .journey-steps:before {
    display: none;
  }
  
  .journey-step {
    display: flex;
    text-align: left;
    align-items: center;
  }
  
  .step-icon {
    margin: 0 1.5rem 0 0;
  }
  
  .step-content {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .journey-intro h3 {
    font-size: 1.5rem;
  }
  
  .journey-intro p {
    font-size: 1rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-icon i {
    font-size: 1.5rem;
  }
  
  .journey-step {
    padding: 0;
  }
}

/* Student Levels Section */
.student-levels {
  padding: 6rem 0;
  background-color: var(--light-bg);
  position: relative;
}

.student-levels .section-title {
  margin-bottom: 1rem;
}

.student-levels .section-subtitle {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.level-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.level-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.level-features li i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 0.8rem;
}

.journey-step:nth-child(2) .level-features li i {
  color: var(--secondary-color);
}

.journey-step:nth-child(3) .level-features li i {
  color: var(--primary-color);
}

.level-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #c87c5d;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 1px solid #c87c5d;
  border-radius: 4px;
}

.journey-step:nth-child(2) .level-link {
  color: #c87c5d;
  border-color: #c87c5d;
}

.journey-step:nth-child(3) .level-link {
  color: #c87c5d;
  border-color: #c87c5d;
}

.level-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.level-link:hover {
  opacity: 0.9;
  background-color: #c87c5d;
  color: white;
}

.level-link:hover i {
  transform: translateX(5px);
}

.level-note {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Enhanced journey steps for Levels section */
.student-levels .journey-visualization {
  margin: 4rem auto;
  max-width: 1100px;
}

.student-levels .journey-steps {
  gap: 2rem;
}

.student-levels .journey-steps:before {
  top: 50px;
}

.student-levels .step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.student-levels .step-icon i {
  font-size: 2.5rem;
}

.student-levels .step-content {
  padding: 0 1rem;
}

.student-levels .step-content h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.student-levels .step-content p {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .student-levels .journey-step {
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .student-levels .step-icon {
    margin: 0 auto 1.5rem;
  }
  
  .student-levels .level-features li {
    justify-content: center;
  }
  
  .student-levels .journey-steps:before {
    display: none;
  }
}

/* Section pattern styling for visual rhythm */
.hero + .section,
.student-levels,
.gallery,
.testimonials,
.contact {
  background-color: var(--light-bg);
}

.servicios,
.studio-access,
.student-showcase,
.faq {
  background-color: var(--white);
}

/* Visual transitions between sections */
.section-transition-top {
  position: relative;
  margin-top: -50px;
  z-index: 1;
}

.section-transition-bottom {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

.section-transition-bottom:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
}

.section-transition-white:after {
  background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
}

/* Enhanced section spacing */
section {
  padding: 5rem 0;
  position: relative;
}

section.hero {
  padding: 0;
}

/* Music Player Styling */
.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 8px 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
}

.music-player:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.music-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  font-size: 16px;
}

.music-btn:hover {
  background-color: #c87c5d;
  transform: scale(1.05);
}

.music-btn.playing {
  background-color: #4CAF50;
}

.music-info {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.music-player:hover .music-info {
  opacity: 1;
  max-width: 200px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .music-player {
    bottom: 15px;
    right: 15px;
  }
  
  .music-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}