/* Base Styles */
:root {
  --primary-color: #6256ca;
  --primary-dark: rgba(98, 86, 202, 0.8);
  --secondary-color: #dff18e;
  --secondary-dark: rgba(223, 241, 142, 0.8);
  --text-color: #4a4a4a;
  --text-light: rgba(74, 74, 74, 0.7);
  --bg-color: #fafafa;
  --bg-light: rgba(250, 250, 250, 0.8);
  --bg-dark: rgba(74, 74, 74, 0.9);
  --border-color: rgba(233, 236, 239, 0.8);
  --success-color: #4caf50;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Harmonia Sans Pro Cyr", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

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

section {
  padding: 100px 0;
}

/* Header & Navigation */
header_ {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
  animation: slide-in 1s ease-out;
  height: 60px; /* Reduce the height */
  display: flex;
  align-items: center; /* Center items vertically */
}

@keyframes slide-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header.scrolled {
  background-color: var(--bg-light);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* Adjust padding to reduce height */
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center; /* Center items vertically */
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.login-button {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center; /* Center items vertically */
}

.login-button:hover {
  background-color: var(--primary-dark);
}

.mobile-menu {
  display: none;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the content vertically */
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

#hero .container {
  max-width: 800px;
  text-align: center;
}

#hero h1 {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  font-family: "Overlock", sans-serif; /* Apply Overlock font to main text */
}

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

.changing-text {
  display: block;
  height: 60px;
  position: relative;
  color: var(--secondary-color);
}

#hero p {
  font-family: "Overlock", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}



.login-button {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center; /* Center items vertically */
}

.login-button:hover {
  background-color: var(--primary-dark);
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Features Section */
#features {
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Success Stories Section */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Plans Section */
#plans {
  background-color: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background-color: var(--bg-color);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.get-started-button {
  width: 100%;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: "Harmonia Sans Pro Cyr", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(98, 86, 202, 0.2);
}

.contact-info {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--bg-color);
  border-radius: 5px;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo .logo {
  color: white;
  margin-bottom: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .about-content {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
  }

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

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  h1 {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .fixed-text,
  .changing-text {
    font-size: 2.5rem; /* Increase font size for mobile */
  }

  .pricing-grid,
  .features-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

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

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .mobile-menu .login-button {
    margin-right: 10px;
  }
}














/* ESTILOS DE WEBSITE ESTÁTICO */

/* Base Styles */
:root {
  --primary-color: #6256ca;
  --primary-dark: rgba(98, 86, 202, 0.8);
  --secondary-color: #dff18e;
  --secondary-dark: rgba(223, 241, 142, 0.8);
  --text-color: #4a4a4a;
  --text-light: rgba(74, 74, 74, 0.7);
  --bg-color: #fafafa;
  --bg-light: rgba(250, 250, 250, 0.8);
  --bg-dark: rgba(74, 74, 74, 0.9);
  --border-color: rgba(233, 236, 239, 0.8);
  --success-color: #4caf50;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Harmonia Sans Pro Cyr", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

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

section {
  padding: 100px 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
  animation: slide-in 1s ease-out;
  height: 60px; /* Reduce the height */
  display: flex;
  align-items: center; /* Center items vertically */
}

@keyframes slide-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header.scrolled {
  background-color: var(--bg-light);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* Adjust padding to reduce height */
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center; /* Center items vertically */
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.login-button {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center; /* Center items vertically */
}

.login-button:hover {
  background-color: var(--primary-dark);
}

.mobile-menu {
  display: none;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the content vertically */
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

#hero .container {
  max-width: 800px;
  text-align: center;
}

#hero h1 {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  font-family: "Harmonia Sans Pro Cry", sans-serif; /* Apply Overlock font to main text */
}

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

.changing-text {
  display: block;
  height: 60px;
  position: relative;
  color: var(--secondary-color);
}

#hero p {
  font-family: "Overlock", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Buttons */
.cta-button,
.get-started-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.cta-button:hover,
.get-started-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.login-button {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center; /* Center items vertically */
}

.login-button:hover {
  background-color: var(--primary-dark);
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Features Section */
#features {
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Success Stories Section */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Plans Section */
#plans {
  background-color: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background-color: var(--bg-color);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}


.facts {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.facts span {
  font-size: 1rem;
  color: var(--text-light);
}


.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.get-started-button {
  width: 100%;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: "Harmonia Sans Pro Cyr", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(98, 86, 202, 0.2);
}

.contact-info {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--bg-color);
  border-radius: 5px;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo .logo {
  color: white;
  margin-bottom: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .about-content {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
  }

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

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  h1 {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .fixed-text,
  .changing-text {
    font-size: 2.5rem; /* Increase font size for mobile */
  }

  .pricing-grid,
  .features-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

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

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .mobile-menu .login-button {
    margin-right: 10px;
  }
}