/*
Theme Name: NaweCorp
Theme URI: https://nawecorp.com/
Author: NaweCorp
Author URI: https://nawecorp.com/
Description: Tema personalizado para NaweCorp basado en su landing page.
Version: 1.0
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: nawecorp
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #FFFFFF;
  color: #1E1E1E;
}

.header {
  background: #ffffff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #38EF7D, #3EE0B2, #1AC8FC, #1795FF, #155FC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  color: #1E1E1E;
  font-weight: 500;
}

.nav a:hover {
  color: #1795FF;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #EFFFFB, #F1FAFF);
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1795FF;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.btn-nawe {
  background: linear-gradient(135deg, #38EF7D, #3EE0B2, #1AC8FC, #1795FF, #155FC4);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-nawe:hover {
  opacity: 0.85;
}

.content {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #155FC4;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background-color: #F1FAFF;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(21, 95, 196, 0.1);
  width: 250px;
  text-align: center;
}

.feature-box h3 {
  color: #1795FF;
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: #333;
}

.testimonial {
  background-color: #EFFFFB;
  padding: 60px 20px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.1rem;
  color: #155FC4;
  font-style: italic;
  margin: 0 auto 20px;
  max-width: 700px;
}

.testimonial cite {
  font-weight: bold;
  color: #1AC8FC;
}

.cta-section {
  background: #155FC4;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.newsletter, .contact, .team {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.newsletter input[type="email"] {
  padding: 10px;
  width: 250px;
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact form, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-member {
  text-align: center;
  width: 180px;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
}

.footer {
  background-color: #f9f9f9;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #eee;
}

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

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

  .feature-box {
    width: 100%;
    max-width: 300px;
  }

  .team-member {
    width: 100%;
    max-width: 200px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: 10px;
  }

  .newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact form {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Se importará el CSS desde header.php */
