/* Variables CSS */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #3b82f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}

/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*
.main-container{
  background: #F6EEE8;
  background: linear-gradient(90deg,rgba(246, 238, 232, 1) 0%, rgba(237, 213, 192, 1) 38%, rgba(209, 216, 198, 1) 100%);
}
*/

body {
  font-family: "TheSeasons", serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;

}

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

/* Utilidades color fondo */
.section-padding {
  padding: 80px 0;
  background: #F6EEE8;
  background: linear-gradient(90deg,rgba(246, 238, 232, 1) 0%, rgba(237, 213, 192, 1) 38%, rgba(209, 216, 198, 1) 100%);
}

.text-primary {
  color: var(--dark-color) !important;
}

.bg-primary {
  background-color: var(--dark-color) !important;
  /*
  background: #F6EEE8;
  background: linear-gradient(90deg,rgba(246, 238, 232, 1) 0%, rgba(237, 213, 192, 1) 38%, rgba(209, 216, 198, 1) 100%);
  */
}

/* colores botones grandes */

.btn-primary {
  background: #DDA787;
  background: radial-gradient(circle,rgba(221, 167, 135, 1) 0%, rgba(236, 207, 186, 1) 100%);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #f5d0ba;
  background: radial-gradient(circle,rgba(245, 208, 186, 1) 0%, rgba(247, 227, 213, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
  background: #DDA787;
  background: radial-gradient(circle,rgba(221, 167, 135, 1) 0%, rgba(236, 207, 186, 1) 100%);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #f5d0ba;
  background: radial-gradient(circle,rgba(245, 208, 186, 1) 0%, rgba(247, 227, 213, 1) 100%);
  transform: translateY(-2px);
}

/* Navbar */
.navbar-custom {
  background-color: #a6b79c;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container i {
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.5rem;
}

.logo-text h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
}

.logo-text small {
  color: var(--text-light);
  font-size: 0.8rem;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #faf9f7;
}

.social-icons {
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #6d5f52;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #faf9f7;
  transform: translateY(-2px);
}

.btn-cita {
  white-space: nowrap;
}

/* Hero Section  color hero*/
.hero-section {
  /*
  background: #F6EEE8;
  background: linear-gradient(90deg,rgba(246, 238, 232, 1) 0%, rgba(237, 213, 192, 1) 38%, rgba(209, 216, 198, 1) 100%);

  background: #f5e1d0;
  background: linear-gradient(0deg,rgba(245, 225, 208, 1) 0%, rgba(246, 238, 232, 1) 100%);

  background: #fff3ef;

*/
  background: #fef7f0;

  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%232563eb" stop-opacity="0.05"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-custom {
  display: inline-block;
  /*
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
 
  background: #F6EEE8;
  background: linear-gradient(90deg,rgba(246, 238, 232, 1) 0%, rgba(237, 213, 192, 1) 38%, rgba(209, 216, 198, 1) 100%);
  */
  
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-title {
  font-family: "TheSeasons", serif; 
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.gradient-text{

  color: #f8baa3;
}

.hero-buttons {
  margin-top: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: #7c8774;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.badge-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  padding: 8px;
  border-radius: 50%;
  margin-right: 12px;
}

/* Stats Section */
.stats-section {
  background-color:  #6d5f52;
  padding: 60px 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Section Titles */
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  
}

/* Service Cards */
.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

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

.service-icon {
  background: rgba(37, 99, 235, 0.1);
  color:  #6d5f52;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 600;
  color:  #6d5f52;
  margin-bottom: 1rem;
}

/*
  background: #EED8C7;
  background: linear-gradient(36deg,rgba(238, 216, 199, 1) 0%, rgba(246, 238, 232, 1) 50%, rgba(209, 217, 198, 1) 100%);
*/ 


/* Team Cards */
.team-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  margin-bottom: 1.5rem;
}

.team-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 0 auto;
}

.team-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background:#6d5f52;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.team-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.team-specialty {
  color: #99ae8a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* Horarios Cards */
.horarios-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.horarios-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #6d5f52;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.horarios-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.horarios-info i {
  color: #6d5f52;
}


/* Contact Section */
.contact-info {
  margin-top: 2rem;
  /*
  background: #F6EEE8;
  background: linear-gradient(90deg,rgba(246, 238, 232, 1) 0%, rgba(237, 213, 192, 1) 38%, rgba(209, 216, 198, 1) 100%);
  */
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #6d5f52;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-form-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-select {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Footer 
.footer-custom {
  background-color: #1f2937;
  color: white;
  padding: 60px 0 20px;
  
}

.footer-section {
  background-color: #a6b79c;
}


.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  background-color: #a6b79c;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo i {
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.5rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-section i {
  margin-right: 8px;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}
*/


/* ===== FOOTER ===== */
.footer-section {
  background-color: #a6b79c;
  color: var(--text-dark);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}



/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-badge {
    position: static;
    margin-top: 2rem;
  }

  .stats-section .row > div {
    margin-bottom: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-card,
  .team-card,
  .testimonial-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .navbar-custom {
    padding: 10px 0;
  }

  .logo-text h5 {
    font-size: 1rem;
  }

  .btn-cita {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Hover effects */
.service-card,
.team-card,
.testimonial-card,
.horarios-card {
  transition: all 0.3s ease;
}

.service-card:hover,
.team-card:hover,
.testimonial-card:hover,
.horarios-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


