/* Updated color scheme to match PDF - green and orange theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Updated logo height */
.logo {
  height: 130px; /* reduced logo height from 150px to 130px */
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.header.scrolled .logo {
  filter: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

/* Updated font size for navigation links */
.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem; /* increased font size from 0.95rem to 1.1rem for larger navigation links */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.header.scrolled .nav-menu a {
  color: #333;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #4caf50;
}

/* Added stronger styling for active link to ensure it's always visible */
.nav-menu a.active {
  color: #4caf50 !important;
  font-weight: 700;
}

.header.scrolled .nav-menu a.active {
  color: #4caf50 !important;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #4caf50;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cotiza-btn {
  background: #ff9800;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.cotiza-btn:hover {
  background: #f57c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Added hero-large class to make hero section taller for servicios page */
.hero.hero-large {
  min-height: 120vh;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  color: white;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-top: 1rem;
}

.hero-btn:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero p {
  font-size: 1rem;
  color: #fefefe;
}

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1002; /* Ensure hamburger is always visible */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background: #333;
}

.logo:hover {
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%)
    contrast(119%);
}

.header.scrolled .logo:hover {
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%)
    contrast(119%);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1.5rem;
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    color: #333 !important;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    display: block;
    width: 100%;
  }

  .navbar {
    padding: 1rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .intro-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat {
    min-width: auto;
  }

  /* Ensure hamburger menu is always visible on mobile */
  .hamburger {
    display: flex !important;
    z-index: 1002;
  }

  .nav-actions {
    display: none;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .services-grid {
    padding: 0.5rem;
  }

  .service-content {
    padding: 1rem;
  }

  .service-content h3 {
    font-size: 1rem;
    min-height: 50px;
  }
}

/* Fade in animation for service cards */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
.service-card:nth-child(7) {
  animation-delay: 0.7s;
}
.service-card:nth-child(8) {
  animation-delay: 0.8s;
}
.service-card:nth-child(9) {
  animation-delay: 0.9s;
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.page-header h1,
.section-title,
.hero h1,
.intro h2,
.process-title,
.about-title,
.services-title {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.process h2,
.about h2,
.services h2 {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Services Full Page */
.services-full {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #4caf50;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-content {
  padding: 1.5rem;
  text-align: center;
}

.service-content h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  width: 100%;
  margin-top: 1rem;
}

.service-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Added new sections for homepage */
/* Quick Intro Section */
.quick-intro {
  padding: 80px 0;
  /* Changed background from #f8f9fa to white */
  background: #fff;
}

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

.intro-content h2 {
  font-size: 2.5rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
}

.intro-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  color: #ff9800;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat p {
  color: #666;
  font-size: 1.1rem;
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
  background: #fff;
}

.services-preview h2 {
  font-size: 2.5rem;
  color: #4caf50;
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card-preview {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 3px solid transparent;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-preview:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #4caf50;
}

.service-icon {
  font-size: 3.5rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
}

.service-card-preview h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-card-preview p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  flex-grow: 1;
}

/* New services grid layout matching PDF format */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-new {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 3px solid #e0e0e0;
}

.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: #4caf50;
}

.service-image-new {
  height: 250px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

.service-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s;
  padding: 0;
}

.service-button-new {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.service-button-new button {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

/* Process Full Page */
.process-full {
  padding: 80px 0;
  background: #fff;
}

.process-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.process-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.process-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.process-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.process-hero h1 {
  font-size: 4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.step-text h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-text p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.benefits-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.benefits-section h2 {
  text-align: center;
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.benefit-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4caf50, #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.benefit-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-card h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive adjustments for process page */
@media (max-width: 768px) {
  .process-hero h1 {
    font-size: 2.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    padding: 1rem;
  }

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid-preview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-preview {
    padding: 1.5rem;
  }

  .btn,
  button,
  .cotiza-btn,
  .hero-btn,
  .cta-button,
  .cta-button-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  .services-grid-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .process-hero {
    height: 60vh;
    min-height: 350px;
  }

  .process-hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .step-text h3 {
    font-size: 1.1rem;
  }

  .step-text p {
    font-size: 0.9rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .benefits-section h2 {
    font-size: 1.8rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }

  .service-button-new button {
    font-size: 0.8rem;
    padding: 0.7rem 0.8rem;
    min-height: 50px;
  }
}

/* FAQ Full Page */
.faq-full {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-expandable {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  color: #4caf50;
  font-size: 1.2rem;
  margin: 0;
}

.faq-question i {
  color: #4caf50;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

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

/* Contact Full Page */
.contact-full {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content-full {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info-full h2 {
  color: #4caf50;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 2rem;
  color: #4caf50;
  margin-top: 0.5rem;
}

.contact-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  line-height: 1.5;
}

.contact-form-full {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-full h2 {
  color: #4caf50;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form-full > p {
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}

.cotizacion-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.submit-btn-full {
  background: #4caf50;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s;
  width: 100%;
}

.submit-btn-full:hover {
  background: #45a049;
}

.feedback-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
  text-align: center;
}

.feedback-btn {
  background: #ff9800;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.feedback-btn:hover {
  background: #f57c00;
}

.feedback-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: left;
}

.feedback-form h3 {
  color: #4caf50;
  margin-bottom: 1rem;
  text-align: center;
}

.feedback-form p {
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}

.submit-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #45a049;
}

/* Success and Error Messages */
.success-message {
  background: #4caf50;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.error-message {
  background: #f44336;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  text-align: right;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

.footer-info p:first-child {
  font-weight: 600;
  color: white;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

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

/* Comprehensive button styles for all elements */
.btn,
button,
.cotiza-btn,
.hero-btn,
.cta-button,
.cta-button-large,
.service-button-new button,
.submit-btn,
.submit-btn-full,
.feedback-btn,
input[type="submit"],
input[type="button"],
.nav-actions button {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover,
button:hover,
.cotiza-btn:hover,
.hero-btn:hover,
.cta-button:hover,
.cta-button-large:hover,
.service-button-new button:hover,
.submit-btn:hover,
.submit-btn-full:hover,
.feedback-btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.nav-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049, #5cb85c);
}

/* Improved service card content styling */
.service-content-new {
  padding: 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content-new p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

/* Updated process grid to show 2x2 layout */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Enhanced text formatting for all sections */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #333;
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #555;
  font-size: 1rem;
}

/* Added styles for services-cta section and services-btn */
.services-cta {
  text-align: center;
  margin-top: 2rem;
}

.services-btn {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 auto;
}

.services-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049, #5cb85c);
}

/* Added CTA section styles */
.cta-section {
  padding: 80px 0;
  /* Changed background to white */
  background: #fff;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button-large {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049, #5cb85c);
}
