/* ================================
   SYSTEM FONTS - Sin dependencias externas
   ================================ */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  font-weight: 600;
}

strong, b {
  font-weight: 600;
}

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

:root {
  --primary: #4F5FFF;
  --primary-dark: #3D4FE6;
  --primary-light: #6B7AFF;
  --secondary: #F3F4F6;
  --text: #1F2937;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
}

body 

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

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

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

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  list-style: none;
  min-width: 14rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu,
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.header.scrolled .menu-toggle span {
  background: var(--text);
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.header.scrolled .btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #4F5FFF 0%, #3D4FE6 50%, #2D3FD6 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.hero-bg::before {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: var(--white);
}

.hero-bg::after {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: #6B7AFF;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 8rem 0;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.text-highlight {
  color: #C7D2FE;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #C7D2FE;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.flags span {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
  }
  
  .hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-gray {
  background: var(--gray-50);
}

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

.section-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

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

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

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

.grid-interpretation {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .grid-interpretation {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-light);
  line-height: 1.8;
}

/* Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.service-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-overlay p {
  color: rgba(255, 255, 255, 0.9);
}

/* Tags */
.tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  background: rgba(79, 95, 255, 0.2);
  color: #2D3FD6;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}


/* Testimonial */
.testimonial-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #4F5FFF 0%, #3D4FE6 100%);
  color: var(--white);
}

.testimonial {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.testimonial-icon {
  color: #C7D2FE;
  margin: 0 auto 1.5rem;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .testimonial-quote {
    font-size: 1.875rem;
  }
}

.testimonial-author {
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
}

.testimonial-author span {
  color: #C7D2FE;
  font-weight: 400;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-text {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

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

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: #D1D5DB;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-contact a {
  color: #60A5FA;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #93C5FD;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #4B5563;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

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

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #D1D5DB;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 1.5rem 0;
}

.footer-bottom p {
  text-align: center;
  color: #9CA3AF;
}

.footer-bottom a {
  color: #60A5FA;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #93C5FD;
}

/* Text Utilities */
.text-large {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.text-bold {
  font-weight: 700;
  color: var(--text);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Lazy Loading */
.lazy-image {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy-image.loaded {
  opacity: 1;
}


/* Legal Page Specific Styles */
.hero-legal {
  min-height: 60vh;
  background: linear-gradient(135deg, #1F2937 0%, #374151 50%, #4B5563 100%);
}

.hero-content-center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 8rem 0 6rem;
}

.hero-label {
  display: inline-block;
  color: #93C5FD;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title-large {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .hero-title-large {
    font-size: 4rem;
  }
}

.hero-subtitle-large {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #D1D5DB;
}

@media (min-width: 768px) {
  .hero-subtitle-large {
    font-size: 1.5rem;
  }
}

.content-centered {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.section-title-large {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

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

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

.gap-large {
  gap: 3rem;
}

/* Certification Tags */
.certification-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cert-tag {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Content Box */
.content-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.content-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-medium {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Card Hover Effect */
.card-hover {
  transition: all 0.3s;
  cursor: pointer;
}

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

.card-icon-large {
  width: 5rem;
  height: 5rem;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}

/* CTA Section Alternative */
.cta-section-alt {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: var(--white);
  padding: 5rem 0;
}

.cta-section-alt .cta-title {
  color: var(--white);
}

.cta-section-alt .cta-text {
  color: #D1D5DB;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary);
  transition: color 0.2s;
}

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

/* Schedule */
.schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.schedule-day {
  font-weight: 600;
  color: var(--text);
}

.schedule-time {
  color: var(--text-light);
}

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


/* Interpretes Page Specific Styles */
.hero-interpretes {
  min-height: 60vh;
  background: linear-gradient(135deg, #4F5FFF 0%, #7C3AED 50%, #A855F7 100%);
}

.section-brand {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
}

.brand-tagline {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title-xl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title-xl {
    font-size: 4.5rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.email-link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
  transition: color 0.2s;
}

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

/* Service Cards */
.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
}

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

.service-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.btn-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Flags Container */
.flags-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flags-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.subtitle-emphasis {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Info Box */
.info-box {
  background: rgba(79, 95, 255, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.info-box-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.info-box-text {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Interpretation Boxes */
.interpretation-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.interpretation-header {
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  color: var(--white);
  padding: 2rem;
}

.interpretation-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.interpretation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.interpretation-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.interpretation-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.interpretation-content {
  padding: 2rem;
}

.interpretation-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Platforms Section */
.section-platforms {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: var(--white);
}

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

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.platform-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.platform-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.platform-badge svg {
  color: var(--white);
}

.platform-badge span {
  font-weight: 600;
  text-align: center;
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.service-check {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, #b8964f 0%, #d4af37 50%, #b8964f 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: white;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-logo h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-icons .icon {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,0.9);
}

.contact-hero h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Intro */
.contact-intro {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.contact-intro h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.form-container h3 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

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

.contact-form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form .required {
  color: #e74c3c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4169e1;
}

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

.contact-form .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.form-note {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Contact Info Cards */
.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.contact-info-card h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.contact-info-card a {
  color: #4169e1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #2c4fb5;
  text-decoration: underline;
}

/* Maps Section */
.maps-section {
  padding: 80px 0;
  background: white;
}

.maps-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 3rem;
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.map-card {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-card h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  padding: 1.5rem;
  background: white;
  margin: 0;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: #e0e0e0;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-card p {
  padding: 1.5rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #4169e1 0%, #5a7fe6 100%);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: white;
  color: #4169e1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-section .btn-primary svg {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .maps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-hero-logo h1 {
    font-size: 3rem;
  }
  
  .contact-hero h2 {
    font-size: 1.5rem;
  }
  
  .form-container {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 60px 0 40px;
  }
  
  .contact-hero-logo h1 {
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
  }
  
  .contact-icons {
    gap: 1rem;
  }
  
  .contact-icons .icon {
    width: 36px;
    height: 36px;
  }
  
  .contact-hero h2 {
    font-size: 1.25rem;
  }
  
  .contact-intro h2 {
    font-size: 1.5rem;
  }
  
  .contact-intro p {
    font-size: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .maps-section h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
}

/* ========================================
   TRADUCCIONES URGENTES PAGE STYLES
   ======================================== */

/* Urgent Hero */
.urgent-hero {
  background: linear-gradient(135deg, #4F5FFF 0%, #3D4FE6 50%, #2D3FD6 100%);
  padding: 120px 0 80px;
  color: white;
}

.urgent-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.urgent-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .urgent-hero h1 {
    font-size: 3.5rem;
  }
}

.urgent-hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.badge-icon {
  font-size: 1.5rem;
}

.urgent-hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Services Grid Urgent */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

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

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

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

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #4F5FFF;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card-urgent h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-card-urgent p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Value Section */
.value-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.value-label {
  color: #4F5FFF;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: block;
}

.value-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

@media (min-width: 1024px) {
  .value-title {
    font-size: 3rem;
  }
}

.value-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-container h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.faq-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

/* WhatsApp Float Widget */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-text {
  position: absolute;
  right: 70px;
  background: white;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  
  .whatsapp-text {
    display: none;
  }
}

/* Section Description */
.section-description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .urgent-hero {
    padding: 80px 0 40px;
  }
  
  .urgent-hero h1 {
    font-size: 2rem;
  }
  
  .urgent-hero-subtitle {
    font-size: 1rem;
  }
  
  .value-title {
    font-size: 1.8rem;
  }
  
  .faq-container {
    padding: 2rem 1.5rem;
  }
  
  .faq-container h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   SUBTITULACIÓN PAGE STYLES
   ======================================== */

/* Subtitle Hero */
.subtitle-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23333" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.subtitle-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.subtitle-hero-label {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.subtitle-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .subtitle-hero h1 {
    font-size: 2rem;
  }
}

.subtitle-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.subtitle-hero-services {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.subtitle-hero-services strong {
  color: white;
  font-weight: 600;
}

/* Solutions Content */
.solutions-content {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.solutions-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.solutions-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

/* Services Grid Subtitle */
.services-grid-subtitle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.service-card-subtitle {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

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

.service-icon-subtitle {
  width: 70px;
  height: 70px;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4F5FFF;
}

.service-icon-subtitle svg {
  width: 32px;
  height: 32px;
}

.service-card-subtitle h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.service-card-subtitle p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA Label */
.cta-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .subtitle-hero {
    padding: 80px 0 40px;
  }
  
  .subtitle-hero h1 {
    font-size: 1.8rem;
  }
  
  .subtitle-hero-description {
    font-size: 1rem;
  }
  
  .solutions-intro {
    font-size: 1.05rem;
  }
}

/* ========================================
   TRADUCCIONES TÉCNICAS PAGE STYLES
   ======================================== */

/* Technical Hero */
.technical-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.6)), 
              url('../images/hero-traducciones-tecnicas.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.technical-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.technical-hero-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.technical-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .technical-hero h1 {
    font-size: 2.2rem;
  }
}

.technical-hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
}

/* Technical Intro */
.technical-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.technical-intro p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}

/* Benefits Box */
.benefits-box {
  background: linear-gradient(135deg, #4F5FFF 0%, #6B7FFF 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: 0 10px 40px rgba(79, 95, 255, 0.2);
}

.benefits-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.benefits-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
}

/* Industries Title */
.industries-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 4rem 0 2rem;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #4F5FFF;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(79, 95, 255, 0.2);
  border-left-color: #3a4acc;
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #4F5FFF;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
}

.industry-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.industry-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Proposals Section */
.proposals-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  margin-top: 4rem;
}

.proposals-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.proposals-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.proposals-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.proposals-content .btn {
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .technical-hero {
    padding: 80px 0 40px;
  }
  
  .technical-hero h1 {
    font-size: 1.9rem;
  }
  
  .technical-hero-description {
    font-size: 1rem;
  }
  
  .benefits-box {
    padding: 2rem 1.5rem;
  }
  
  .industries-title {
    font-size: 1.6rem;
  }
  
  .proposals-content h2 {
    font-size: 2rem;
  }
}

/* ========================================
   CONFIDENCIALIDAD PAGE STYLES
   ======================================== */

/* Privacy Hero */
.privacy-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.65)), 
              url('../images/hero-confidencialidad.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.privacy-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-hero-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.privacy-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2.2rem;
  }
}

.privacy-hero-date {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

/* Privacy Content */
.privacy-content {
  padding: 5rem 0;
}

.privacy-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* Privacy Intro Box */
.privacy-intro-box {
  background: linear-gradient(135deg, #4F5FFF 0%, #6B7FFF 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 4rem;
  box-shadow: 0 10px 40px rgba(79, 95, 255, 0.2);
}

.privacy-intro-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.privacy-intro-box p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
}

/* Privacy Sections */
.privacy-section {
  margin-bottom: 3.5rem;
}

.privacy-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #4F5FFF;
}

.privacy-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}

.privacy-section strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Privacy List */
.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.privacy-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.privacy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4F5FFF;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Privacy Purposes Grid */
.privacy-purposes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.purpose-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #4F5FFF;
  transition: all 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(79, 95, 255, 0.15);
}

.purpose-icon {
  width: 50px;
  height: 50px;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #4F5FFF;
}

.purpose-icon svg {
  width: 24px;
  height: 24px;
}

.purpose-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.purpose-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Privacy Notice Box */
.privacy-notice-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.privacy-notice-box svg {
  width: 24px;
  height: 24px;
  color: #ffc107;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.privacy-notice-box p {
  margin: 0;
  color: #856404;
  font-size: 1rem;
}

/* ARCO Grid */
.arco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

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

.arco-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid #4F5FFF;
  transition: all 0.3s ease;
}

.arco-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.arco-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4F5FFF;
  margin-bottom: 0.75rem;
}

.arco-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Highlight Section */
.highlight-section {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

.arco-contact {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 2rem 0 1rem;
}

/* Contact Info Box */
.contact-info-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #4F5FFF;
  margin-top: 1.5rem;
}

.contact-info-box p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #444;
}

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

/* INAI Section */
.inai-section {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 3rem;
  border-radius: 12px;
}

.inai-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  border-left: 4px solid #2196f3;
}

.inai-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.inai-box p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #444;
}

.inai-box a {
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.inai-box a:hover {
  color: #1976d2;
  text-decoration: underline;
}

/* Privacy CTA */
.privacy-cta {
  background: linear-gradient(135deg, #4F5FFF 0%, #6B7FFF 100%);
  color: white;
  padding: 4rem 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 4rem;
  box-shadow: 0 10px 40px rgba(79, 95, 255, 0.3);
}

.privacy-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  border-bottom: none;
  padding-bottom: 0;
}

.privacy-cta p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
}

.privacy-cta .btn {
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .privacy-hero {
    padding: 80px 0 40px;
  }
  
  .privacy-intro-box {
    padding: 2rem 1.5rem;
  }
  
  .privacy-intro-box h2 {
    font-size: 1.6rem;
  }
  
  .privacy-section h3 {
    font-size: 1.5rem;
  }
  
  .highlight-section {
    padding: 2rem 1.5rem;
  }
  
  .inai-section {
    padding: 2rem 1.5rem;
  }
  
  .privacy-cta {
    padding: 3rem 2rem;
  }
  
  .privacy-cta h3 {
    font-size: 1.6rem;
  }
}

/* ========================================
   PERITO TRADUCTOR PAGE STYLES
   ======================================== */

/* Perito Hero */
.perito-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.6)), 
              url('../images/hero-perito-traductor.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 0 100px;
  color: white;
  text-align: center;
}

.perito-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.perito-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .perito-hero {
    padding: 100px 0 60px;
  }
  
  .perito-hero h1 {
    font-size: 2.5rem;
  }
}

.perito-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Perito Services Cards */
.perito-services-cards {
  padding: 5rem 0;
  background: #f8f9fa;
}

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

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

.perito-service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #4F5FFF;
}

.perito-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(79, 95, 255, 0.15);
}

.perito-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 95, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #4F5FFF;
}

.perito-card-icon svg {
  width: 30px;
  height: 30px;
}

.perito-service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.perito-service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
}

/* Perito Content */
.perito-content {
  padding: 5rem 0;
}

.perito-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* Perito FAQ Section */
.perito-faq-section {
  margin-bottom: 4rem;
}

.perito-faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.perito-faq-section em {
  color: #4F5FFF;
  font-style: normal;
  font-weight: 700;
}

.perito-faq-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.perito-cta-inline {
  margin-top: 2rem;
}

/* Perito Certifications */
.perito-certifications {
  background: linear-gradient(135deg, #4F5FFF 0%, #6B7FFF 100%);
  color: white;
  padding: 4rem 3rem;
  border-radius: 12px;
  margin-bottom: 4rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(79, 95, 255, 0.3);
}

.perito-certifications h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
}

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

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

.cert-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cert-badge:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-5px);
}

.cert-badge-icon {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.cert-badge-text {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
}

.cert-badge-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.4;
}

/* Perito Languages Section */
.perito-languages-section {
  background: #f8f9fa;
  padding: 4rem 3rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.perito-languages-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: center;
}

.languages-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

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

.language-item {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.language-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(79, 95, 255, 0.15);
}

.lang-code {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4F5FFF;
  letter-spacing: 1px;
}

.lang-name {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Perito CTA Final */
.perito-cta-final {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 5rem 0;
}

.perito-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.perito-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.perito-cta-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .perito-certifications {
    padding: 3rem 2rem;
  }
  
  .perito-certifications h3 {
    font-size: 1.6rem;
  }
  
  .perito-languages-section {
    padding: 3rem 2rem;
  }
  
  .perito-cta-content h2 {
    font-size: 2rem;
  }
  
  .perito-cta-content p {
    font-size: 1.05rem;
  }
}

/* ===================================
   TRADUCCIONES CERTIFICADAS STYLES
   =================================== */

.certificadas-hero {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(63, 81, 181, 0.95) 100%), 
              url('../images/hero-traducciones-certificadas.jpg') center/cover no-repeat;
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
}

.certificadas-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.certificadas-hero-content p {
  font-size: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.certificadas-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.certificadas-badges .badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* ===================================
   COTIZAR TRADUCCIONES STYLES
   =================================== */

.cotizar-hero {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.95) 0%, rgba(25, 118, 210, 0.95) 100%), 
              url('../images/hero-cotizar-traducciones.jpg') center/cover no-repeat;
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
}

.cotizar-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cotizar-hero-content p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.procedure-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.procedure-card:hover {
  border-color: #4F5FFF;
  box-shadow: 0 8px 24px rgba(79, 95, 255, 0.15);
  transform: translateY(-5px);
}

.procedure-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4F5FFF, #6B7FFF);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.procedure-card h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.procedure-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
  color: #4F5FFF;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-item ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.faq-item ul li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: #444;
}

.faq-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
  .certificadas-hero-content h1,
  .cotizar-hero-content h1 {
    font-size: 2rem;
  }
  
  .certificadas-hero-content p,
  .cotizar-hero-content p {
    font-size: 1.1rem;
  }
  
  .services-grid-4,
  .procedure-grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1 );
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #E5E7EB;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1F2937;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid #F3F4F6;
}

.mobile-menu-separator {
  height: 8px;
  background: #F9FAFB;
  border: none;
}

.mobile-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #1F2937;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: #F3F4F6;
  color: #4F5FFF;
}

/* Overlay cuando el menú está abierto */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22, 22, 22, 0.23);
  transition: box-shadow 0.18s, background 0.18s;
  text-decoration: none;
  border: none;
}
.whatsapp-float:hover {
  background: #128c7e;
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.28);
}
.whatsapp-float svg {
  fill: #fff;
  width: 36px;
  height: 36px;
  display: block;
}
@media (max-width:600px){
  .whatsapp-float{
    width: 46px;
    height: 46px;
    right: 12px;
    bottom: 12px;
  }
  .whatsapp-float svg{
    width: 26px;
    height: 26px;
  }
}
