/* Base Styles */
:root {
  /* Color Variables */
  --primary: #3d5863;
  --primary-light: #4d6b78;
  --primary-dark: #2d424a;
  --secondary: #f5f5f5;
  --secondary-light: #ffffff;
  --secondary-dark: #e0e0e0;
  --accent: #3d5863;
  --accent-dark: #2d424a;
  --text-dark: #2d424a;
  --text-light: #ffffff;
  --text-gray: #6c757d;
  --bg-light: #ffffff;
  --bg-off-white: #f8f9fa;
  --bg-gray: #e9ecef;
  --success: #198754;
  --warning: #ffc107;
  --error: #dc3545;
  
  /* Spacing Variables */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Typography Variables */
  --font-primary: 'Work Sans', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-xxxl: 3rem;
  
  /* Border Variables */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-width: 1px;
  
  /* Shadow Variables */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Transition Variables */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition-fast);
}

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

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

ul {
  list-style-type: none;
}

section {
  padding: var(--space-xxl) 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  font-size: var(--font-size-md);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  font-size: var(--font-size-xxl);
  color: var(--primary);
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-gray);
  max-width: 800px;
  margin: var(--space-sm) auto 0;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  transition: background-color var(--transition-normal), padding var(--transition-normal);
}

.navbar.scrolled {
  background-color: var(--bg-light);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xs) 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-xl);
}

.navbar-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  font-family: var(--font-secondary);
}

.logo {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.scrolled .logo {
  color: var(--primary);
}

.navbar-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: var(--font-size-md);
  position: relative;
}

.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 2px 0;
  transition: all var(--transition-normal);
}

.scrolled .bar {
  background-color: var(--primary);
}

/* Hero Section */
#hero {
  background-image: url('/img/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(135, 206, 235, 0.85) 0%,
    rgba(173, 216, 230, 0.7) 40%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(255, 255, 255, 0.2) 100%
  );
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 800px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.highlight {
  color: #ffffff;
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: rgba(255, 255, 255, 0.15);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature p {
  margin: 0;
  font-weight: 600;
  font-size: var(--font-size-md);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-md);
  font-weight: bold;
  flex-shrink: 0;
}

/* Services Section */
#services {
  background-color: var(--bg-off-white);
  padding: var(--space-xxl) 0;
}

.services-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.service-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-md);
  border-radius: 50%;
  background-position: center;
  background-size: 32px;
  background-repeat: no-repeat;
}

.spanish-icon {
  background-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233d5863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'%3E%3C/path%3E%3C/svg%3E");
}

.italian-icon {
  background-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233d5863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'%3E%3C/path%3E%3C/svg%3E");
}

.documents-icon {
  background-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233d5863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.legal-icon {
  background-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233d5863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 1v22M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'%3E%3C/path%3E%3C/svg%3E");
}

.service-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.service-features {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.service-features li {
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: var(--space-md);
}

.service-features li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

.service-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
  position: relative;
}

.service-link::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.service-link:hover::after {
  transform: translateX(4px);
}

.services-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.services-cta p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

/* FAQ Section */
#faq {
  background-color: var(--bg-light);
}

.faq-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-normal);
}

.faq-question h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0;
  color: var(--text-dark);
  font-family: var(--font-primary);
  font-weight: 600;
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-normal);
  padding: 0 var(--space-md);
}

.faq-item.active .faq-answer {
  height: auto;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
  color: var(--text-gray);
}

/* About Section */
#about {
  background-color: var(--bg-off-white);
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: var(--font-size-xl);
  color: var(--primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  margin-bottom: var(--space-md);
  color: var(--text-gray);
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin: var(--space-lg) 0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-secondary);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-gray);
}

.testimonial {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

.author-detail {
  font-size: var(--font-size-sm);
  color: var(--text-gray);
  margin-bottom: 0;
}

/* Contact Section */
#contact {
  background-color: var(--bg-light);
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: var(--space-xl);
}

.contact-form-container {
  flex: 1;
  background-color: var(--bg-off-white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: var(--border-width) solid var(--bg-gray);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: var(--font-size-md);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  color: var(--text-gray);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--bg-light);
  border: var(--border-width) solid var(--bg-gray);
  border-radius: var(--border-radius-sm);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary-light);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-info {
  flex: 1;
}

.info-card {
  background-color: var(--primary);
  color: var(--text-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-lg);
}

.info-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.info-card p {
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-normal);
}

.contact-method:hover {
  transform: translateX(5px);
}

.method-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
}

.email-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233d5863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.phone-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233d5863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.instagram-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233d5863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.location-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233d5863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.method-details h4 {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-xs);
  font-family: var(--font-primary);
  font-weight: 600;
}

.method-details p {
  margin-bottom: 0;
  color: var(--text-gray);
  font-size: var(--font-size-sm);
}

/* Footer Styles */
#footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo {
  color: var(--text-light);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xs);
}

.tagline {
  opacity: 0.8;
  font-size: var(--font-size-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-column h4 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-md);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--text-light);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-normal);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
}

.social-icon:hover {
  background-color: var(--primary);
}

.facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E");
}

.twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z'%3E%3C/path%3E%3C/svg%3E");
}

.instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

.footer-legal {
  font-size: var(--font-size-xs);
  opacity: 0.7;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xs);
}

.legal-links a {
  color: #ffffff;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.text-link {
  text-decoration: underline;
  color: var(--primary-light);
}

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

/* Ley de Nietos Section */
#ley-nietos {
  background: #3d5863;
  padding: var(--space-xxl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.ley-nietos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ley-nietos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.ley-nietos-text {
  color: var(--text-light);
}

.ley-nietos-title {
  font-size: var(--font-size-xxxl);
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.ley-nietos-title strong {
  font-weight: 700;
  display: block;
  margin-top: var(--space-xs);
}

.title-underline {
  width: 120px;
  height: 3px;
  background-color: #f5c842;
  margin: var(--space-md) 0;
}

.ley-nietos-date {
  font-size: var(--font-size-lg);
  margin: var(--space-md) 0;
  color: var(--text-light);
}

.ley-nietos-highlight {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-light);
  margin: var(--space-lg) 0;
  letter-spacing: 0.5px;
}

.btn-ley-nietos {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
  cursor: pointer;
  margin-top: var(--space-md);
}

.btn-ley-nietos:hover {
  background-color: var(--text-light);
  color: #1e5a7d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.ley-nietos-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ley-nietos-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}