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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    sans-serif;
  line-height: 1.6;
  color: #374151;
  scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
  background: #1f2937;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.logo {
  height: 40px;
  width: auto;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3b82f6;
}

.language-switch {
  display: flex;
  background: #374151;
  border-radius: 8px;
  padding: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: #9ca3af;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: #3b82f6;
  color: white;
}

.lang-btn:hover:not(.active) {
  color: white;
}

.desktop-contact {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.contact-email {
  display: none;
}

.contact-icon {
  width: 16px;
  height: 16px;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  display: block;
}

.mobile-menu {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem 0;
  text-align: left;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #3b82f6;
}

.mobile-language-switch {
  display: flex;
  background: #374151;
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
}

.mobile-lang-btn {
  background: none;
  border: none;
  color: #9ca3af;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-lang-btn.active {
  background: #3b82f6;
  color: white;
}

.mobile-contact {
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Hero Section */
/*
.hero {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}*/

/* Hero Section */
.hero {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('/images/decorando.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

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

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

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-attention {
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-call {
  background: #10b981;
  color: white;
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-call:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-quote {
  background: white;
  color: #374151;
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-quote:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.btn-service {
  background: #3b82f6;
  color: white;
  width: 100%;
  margin-top: 1rem;
}

.btn-service:hover {
  background: #2563eb;
}

.btn-cta {
  background: #3b82f6;
  color: white;
  font-size: 1.125rem;
  padding: 16px 32px;
}

.btn-cta:hover {
  background: #2563eb;
}

.btn-gallery {
  background: #3b82f6;
  color: white;
  font-size: 1.125rem;
  padding: 16px 32px;
}

.btn-gallery:hover {
  background: #2563eb;
}

.btn-info {
  background: #10b981;
  color: white;
  width: 100%;
  margin-top: 1rem;
}

.btn-info:hover {
  background: #059669;
}

.btn-submit {
  background: #10b981;
  color: white;
  width: 100%;
  font-size: 1.125rem;
  padding: 16px;
}

.btn-submit:hover {
  background: #059669;
}

.btn-emergency {
  background: #dc2626;
  color: white;
  width: 100%;
  margin-top: 1rem;
}

.btn-emergency:hover {
  background: #b91c1c;
}

.btn-footer {
  background: #10b981;
  color: white;
}

.btn-footer:hover {
  background: #059669;
}

.btn-link {
  background: none;
  border: none;
  color: #3b82f6;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
}

.btn-link:hover {
  color: #2563eb;
}

.btn-refresh-captcha {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-refresh-captcha:hover {
  background: #e5e7eb;
}

/* Pulse Animation */
.pulse {
  animation: pulse 2s infinite;
}

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

/* Section Styles */
section {
  padding: 4rem 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about {
  background: #f9fafb;
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  color: #3b82f6;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

.quote-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top: 1rem;
}

.quote-text {
  font-style: italic;
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1rem;
}

.quote-signature {
  font-weight: 600;
  color: #3b82f6;
}

/* Services Section */
.services {
  background: white;
}

.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  color: #3b82f6;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #6b7280;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

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

.cta-box {
  background: #f3f4f6;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Gallery Section */
.gallery {
  background: #f9fafb;
}

.gallery-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-description {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.gallery-tag {
  display: inline-block;
  background: #3b82f6;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

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

.gallery-cta-text {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 2rem;
}

/* Work Areas Section */
.work-areas {
  background: white;
}

.areas-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.area-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.area-icon {
  color: #3b82f6;
  width: 32px;
  height: 32px;
  margin: 0 auto 1rem;
}

.area-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.area-description {
  color: #6b7280;
  font-size: 0.875rem;
}

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

/* Reviews Section */
.reviews {
  background: #f9fafb;
}

.reviews-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.star {
  width: 20px;
  height: 20px;
  color: #f59e0b;
}

.star.filled {
  fill: currentColor;
}

.review-text {
  font-style: italic;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.author-name {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.author-project {
  color: #6b7280;
  font-size: 0.875rem;
}

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

/* Contact Section */
.contact {
  background: white;
}

.contact-content {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.contact-form-container {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.form-description {
  color: #6b7280;
  font-size: 1.125rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* CAPTCHA Styles */
.captcha-group {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 1.5rem;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.captcha-question {
  font-weight: 600;
  color: #92400e;
  margin: 0;
  flex: 1;
}

.captcha-input {
  width: 80px;
  text-align: center;
}

.form-note {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  margin-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
}

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

.info-icon {
  color: #3b82f6;
  width: 24px;
  height: 24px;
}

.info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.info-content {
  color: #374151;
}

.info-address,
.info-city,
.info-phone,
.info-email {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-phone {
  font-size: 1.5rem;
  color: #10b981;
}

.info-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.schedule-item {
  margin-bottom: 0.5rem;
}

.emergency-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.emergency-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 1rem;
}

.emergency-text {
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.map-container {
  margin-top: 3rem;
}

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

.map-icon {
  color: #3b82f6;
  width: 24px;
  height: 24px;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-note {
  text-align: center;
  margin-top: 1rem;
  color: #374151;
}

/* FAQ Section */
.faq {
  background: #f9fafb;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  transition: background-color 0.3s ease;
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #374151;
  line-height: 1.6;
}

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

/* Additional Content Section */
.additional-content {
  background: white;
  padding: 5rem 0;
}

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

.content-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  text-align: center;
  margin-bottom: 3rem;
}

.highlight-box {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.highlight-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.highlight-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-highlight {
  background: white;
  color: #3b82f6;
  font-size: 1.125rem;
  padding: 16px 32px;
}

.btn-highlight:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.content-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

.content-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
}

.content-card.kitchen {
  background: #fef7ff;
  border-color: #e879f9;
}

.card-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 2rem;
}

.card-services {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid #e5e7eb;
}

.card-services ul {
  list-style: none;
  margin-top: 1rem;
}

.card-services li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
}

.card-services li:last-child {
  border-bottom: none;
}

.btn-card {
  background: #3b82f6;
  color: white;
  width: 100%;
  font-size: 1.125rem;
  padding: 16px;
}

.btn-card:hover {
  background: #2563eb;
}

.integral-reform {
  background: #f0fdf4;
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 4rem;
}

.integral-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.integral-text,
.integral-includes,
.integral-guarantee {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.btn-integral {
  background: #10b981;
  color: white;
  font-size: 1.25rem;
  padding: 18px 36px;
  display: block;
  margin: 2rem auto 0;
  width: fit-content;
}

.btn-integral:hover {
  background: #059669;
}

/*
.final-cta {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 4rem;
  border-radius: 16px;
  text-align: center;
}*/

.final-cta {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('/images/pintores.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 4rem;
  border-radius: 16px;
  text-align: center;
}





.final-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.final-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.final-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-final-call {
  background: #10b981;
  color: white;
  font-size: 1.25rem;
  padding: 18px 36px;
}

.btn-final-call:hover {
  background: #059669;
}

.btn-final-quote {
  background: white;
  color: #374151;
  font-size: 1.25rem;
  padding: 18px 36px;
}

.btn-final-quote:hover {
  background: #f3f4f6;
}

.final-features {
  display: grid;
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.feature-item {
  font-size: 1rem;
  opacity: 0.9;
}

/*Seccion con foto de fondo*/

.highlight-box-bg {
  background-image: url('../images/foto_logo_marbellabuilders.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px; /* 👈 asegura que tenga altura en móvil */
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.highlight-box-bg .overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Capa oscura */
  color: #fff;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Esto separa el título arriba y botón abajo */
  align-items: center;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 40px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}



.highlight-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.highlight-bg {
  width: 100%;
  height: auto;
  display: block;
}

.highlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Capa oscura */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.highlight-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.btn-highlight {
  background-color: #ffae00;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.btn-highlight:hover {
  background-color: #e69e00;
}


/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

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

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-company-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.footer-list li {
  color: #d1d5db;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-list li:hover {
  color: white;
}

.footer-contact .contact-item {
  margin-bottom: 0.75rem;
}

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

.copyright {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.legal {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* Message Container */
.message-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
}

.message {
  background: white;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #10b981;
  animation: slideIn 0.3s ease;
}

.message.error {
  border-left-color: #dc2626;
}

.message.warning {
  border-left-color: #f59e0b;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .final-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .final-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .desktop-nav {
    display: flex;
  }

  .desktop-contact {
    display: flex;
  }

  .contact-email {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .final-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

  .content-title {
    font-size: 2rem;
  }

  .final-title {
    font-size: 2rem;
  }

  .highlight-title {
    font-size: 1.5rem;
  }

  .integral-title {
    font-size: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .back-to-top,
  .message-container {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section-title {
    font-size: 18pt;
  }

  .btn {
    display: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }

  .service-card,
  .gallery-item,
  .review-card {
    border: 2px solid #374151;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .pulse {
    animation: none;
  }
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
