/* TerraForce España - Modern Red Theme Styles */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
}

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

/* Header Styles */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #c53030;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  font-size: 1.8rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #c53030;
  background-color: #fed7d7;
}

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

.btn-primary {
  background-color: #c53030;
  color: white;
}

.btn-primary:hover {
  background-color: #9c2626;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #f7fafc;
  color: #c53030;
  border: 2px solid #c53030;
}

.btn-secondary:hover {
  background-color: #c53030;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fed7d7 0%, #f7fafc 100%);
  padding: 4rem 0;
  text-align: center;
}

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

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

.hero-description {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-visual {
  margin-top: 2rem;
}

.hero-icon {
  font-size: 4rem;
  opacity: 0.7;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  margin-bottom: 3rem;
}

.guides {
  padding: 4rem 0;
  background-color: #f7fafc;
}

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

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

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

.guide-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.guide-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.guide-card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

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

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #4a5568;
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background-color: #f7fafc;
}

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

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #f6ad55;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial p {
  color: #4a5568;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #c53030;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: #c53030;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background-color: white;
  color: #c53030;
}

.cta-section .btn-primary:hover {
  background-color: #f7fafc;
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Footer */
.footer {
  background-color: #2d3748;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #c53030;
}

.footer-slogan {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
  color: #c53030;
}

/* Page Specific Styles */
.main-content {
  min-height: 60vh;
  padding: 2rem 0;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  text-align: center;
}

.page-description {
  font-size: 1.25rem;
  color: #4a5568;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.blog-meta {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Article Styles */
.article {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.article-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.article-meta {
  color: #718096;
  font-size: 0.9rem;
}

.article-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3748;
  margin: 2rem 0 1rem;
}

.article-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin: 1.5rem 0 0.5rem;
}

.article-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

.article-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #4a5568;
}

.article-cta {
  background-color: #f7fafc;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  color: #2d3748;
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-page {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

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

.contact-info {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

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

.contact-note {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #c53030;
}

.contact-note h3 {
  color: #c53030;
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-page {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  font-size: 4rem;
  color: #38a169;
  margin-bottom: 1rem;
}

.confirmation-details {
  background: #f0fff4;
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid #38a169;
}

.thank-you-message {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.next-steps {
  margin: 3rem 0;
}

.next-steps h2 {
  color: #2d3748;
  margin-bottom: 2rem;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.step-card {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-reminder {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-reminder h3 {
  color: #c53030;
  margin-bottom: 1rem;
}

/* Policy Pages */
.policy-page {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  color: #718096;
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
}

.disclaimer-notice {
  background: #fed7d7;
  border: 2px solid #c53030;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-notice h2 {
  color: #c53030;
  margin-bottom: 1rem;
}

.policy-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: #2d3748;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #c53030;
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  color: #4a5568;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-cta {
  text-align: center;
  background: #f7fafc;
  padding: 2rem;
  border-radius: 8px;
}

/* About Page */
.about-page {
  max-width: 1000px;
  margin: 0 auto;
}

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

.page-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  font-style: italic;
}

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

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  color: #2d3748;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #c53030;
  padding-bottom: 0.5rem;
}

.about-section h3 {
  color: #4a5568;
  font-size: 1.3rem;
  margin: 1.5rem 0 0.5rem;
}

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

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 8px;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-item h3 {
  color: #2d3748;
  margin-bottom: 0.5rem;
}

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

.commitment-item {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 8px;
}

.commitment-item h4 {
  color: #c53030;
  margin-bottom: 0.5rem;
}

.contact-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

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

  .hero-description {
    font-size: 1.1rem;
  }

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

  .guides-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .article {
    padding: 2rem 1rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

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

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
