/* Common styles for Rosales Lawn Services LLC website */
:root {
  --primary-green: #4CAF50;
  --primary-blue: #2196F3;
  --gradient-green: linear-gradient(135deg, #4CAF50, #2E7D32);
  --gradient-blue: linear-gradient(135deg, #2196F3, #0D47A1);
  --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --gradient-primary: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition-ease: all 0.3s ease;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-gray);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Button styles */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-green);
  color: white;
  font-weight: bold;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:hover {
  background-color: #3d8b40;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover:before {
  left: 100%;
}

.btn-secondary {
  display: inline-block;
  background-color: var(--primary-blue);
  color: white;
  font-weight: bold;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary:hover {
  background-color: #0b7dda;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-secondary:hover:before {
  left: 100%;
}

/* Premium section styling */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Glass effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Premium text styles */
.premium-heading {
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #333333 0%, #555555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Premium service cards */
.service-card {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 1;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(76, 175, 80, 0.05), rgba(33, 150, 243, 0.05));
  z-index: -1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover::after {
  opacity: 0.3;
  transform: scale(1);
}

/* Premium card effects */
.premium-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.premium-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.8);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--primary-green), var(--primary-blue), var(--primary-green));
  background-size: 200% 200%;
  opacity: 0;
  border-radius: 50%;
  z-index: -1;
  transition: opacity 0.5s ease;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-icon i {
  font-size: 28px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.05), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  transform: rotate(5deg);
}

.service-card:hover .service-icon::before {
  opacity: 0.15;
}

.service-card:hover .service-icon i {
  transform: scale(1.2);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
  border-radius: 2px;
}

.service-card:hover .service-title {
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}

.service-card:hover .service-title::after {
  width: 100%;
  height: 3px;
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-description {
  color: #666;
  line-height: 1.6;
}

.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Estilos adicionales */

/* Títulos con degradado */
.gradient-title {
    background: linear-gradient(90deg, #4CAF50 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Iconos verdes en el pie de página */
.footer-icon {
    color: #4CAF50;
    margin-right: 0.75rem;
}

/* Custom Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

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

@keyframes glow {
  0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
  50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.5); }
  100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-in {
  animation: zoomIn 0.8s ease-out forwards;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* Parallax effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-position 0.5s ease-out;
}

/* Responsive image container */
.img-container {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.img-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.img-container img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-container:hover img {
  transform: scale(1.08);
}

.img-container:hover::before {
  opacity: 1;
}

.img-container .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: white;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.img-container:hover .img-caption {
  transform: translateY(0);
}

/* Before-After Slider */
.before-after-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: col-resize;
}

.before-after-slider .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.before-after-slider .before-image,
.before-after-slider .after-image {
  position: absolute;
  top: 0;
  height: 100%;
  background-size: cover;
}

.before-after-slider .before-image {
  left: 0;
  width: 50%;
  z-index: 2;
  background-position: left center;
}

.before-after-slider .after-image {
  left: 0;
  width: 100%;
  z-index: 1;
  background-position: center center;
}

.before-after-slider .slider-bar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: white;
  transform: translateX(-50%);
  z-index: 20;
  cursor: col-resize;
}

.before-after-slider .slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 21;
}

.before-after-slider .slider-handle::before,
.before-after-slider .slider-handle::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #4CAF50;
}

.before-after-slider .slider-handle::before {
  transform: translateX(-5px) rotate(45deg);
}

.before-after-slider .slider-handle::after {
  transform: translateX(-5px) rotate(-45deg);
}

.before-after-slider .slider-handle::before:nth-child(2),
.before-after-slider .slider-handle::after:nth-child(2) {
  transform: translateX(5px) rotate(-45deg);
}

.before-after-slider .slider-handle::before:nth-child(3),
.before-after-slider .slider-handle::after:nth-child(3) {
  transform: translateX(5px) rotate(45deg);
}

.before-after-slider .label {
  position: absolute;
  bottom: 20px;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: bold;
  border-radius: 4px;
  z-index: 19;
}

.before-after-slider .before-label {
  left: 20px;
}

.before-after-slider .after-label {
  right: 20px;
}

.before-after-slider.active .slider-handle {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Call floating button */
.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Testimonial card premium styles */
.testimonial-card {
  position: relative;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  transition: var(--transition-ease);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  line-height: 1;
  font-family: 'Georgia', serif;
  color: rgba(76, 175, 80, 0.1);
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Premium button styles */
.btn-premium {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: white;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-ease);
  border: none;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover::before {
  transform: translateX(100%);
}

/* Hover effect for links */
.premium-link {
  position: relative;
  display: inline-block;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-ease);
}

.premium-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.premium-link:hover {
  color: var(--primary-green);
}

.premium-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Animated background for sections */
.animated-bg {
  position: relative;
  overflow: hidden;
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(76,175,80,0.05) 0%, rgba(33,150,243,0.05) 50%, rgba(255,255,255,0) 70%);
  animation: rotateGradient 15s linear infinite;
  z-index: -1;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Estilos para el hero mejorados */
.hero-content {
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  animation: glow 3s ease-in-out infinite;
  padding-bottom: 15px;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, white, transparent);
  border-radius: 4px;
}

.hero-title.center-aligned::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, white, transparent);
}

.hero-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  position: relative;
  padding-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}

/* Estilos para la barra de navegación premium */
.premium-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-medium);
  border-bottom: 1px solid rgba(220, 220, 220, 0.5);
}

.premium-logo {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.premium-logo:hover {
  transform: scale(1.05);
}

/* Estilos para las tarjetas de servicios premium */
.service-card-premium {
  transition: all 0.5s ease;
  position: relative;
  margin-bottom: 3rem;
}

.service-card-premium:hover {
  transform: translateY(-5px);
}

/* Contenedor de imágenes de servicios */
.service-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  max-height: 300px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  border-radius: 12px;
}

.service-image-container:hover .service-image {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 100%;
}

.service-image-container:hover .service-image-overlay {
  opacity: 1;
}

.service-icon-large {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  margin-left: 20px;
  opacity: 0.9;
}

.service-content {
  padding: 20px 0;
}

.logo-text {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.premium-nav {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: #4a5568;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--primary-green);
  background: rgba(76, 175, 80, 0.1);
}

.nav-link.active {
  color: white;
  background: var(--gradient-green);
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.premium-mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-medium);
  border-top: 1px solid rgba(220, 220, 220, 0.5);
}

.nav-link-mobile {
  display: block;
  padding: 12px 15px;
  font-weight: 600;
  color: #4a5568;
  transition: all 0.3s ease;
  border-radius: 10px;
  margin: 5px 0;
}

.nav-link-mobile:hover {
  color: var(--primary-green);
  background: rgba(76, 175, 80, 0.1);
}

.nav-link-mobile.active {
  color: white;
  background: var(--gradient-green);
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

/* Estilos para secciones y subtítulos */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: var(--gradient-green);
  border-radius: 3px;
}

.section-title.center-underline::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--primary-blue);
  border-radius: 2px;
}

.section-subtitle.left-aligned {
  text-align: left;
  margin-left: 0;
}

.section-subtitle.left-aligned::after {
  left: 0;
  transform: none;
}

/* Botón premium outline */
.btn-premium-outline {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-ease);
  border: 2px solid white;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Botón premium pequeño */
.btn-premium-sm {
  display: inline-block;
  background: var(--gradient-green);
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.btn-premium-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-premium-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-premium-light {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background: white;
  color: var(--primary-green);
  font-weight: bold;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-ease);
  border: none;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-premium-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}
