@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #1A1A1A;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #f0f0f0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.logo {
    width: 100px;
}

.tagline {
    font-size: 0.9rem;
    color: #888;
    margin-left: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
}

main {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 8px;
}

h1, h2, h3, h4 {
    text-align: center;
    color: #199D7F;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 0 0 15px #199D7F;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    width: 200px;
    margin: 1rem auto;
    padding: 1rem;
    background-color: #199D7F;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #147a62;
}

.cta-button.secondary {
    background-color: #444;
}

.cta-button.secondary:hover {
    background-color: #555;
}

#hero {
    padding: 4rem 2rem;
    background-color: transparent;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    transform: scale(1.25);
}



#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem auto;
}

#sobre-pai p,
#producto p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 0.5rem auto; /* Reduced bottom margin */
}

.brand-name {
    color: #199D7F;
    font-weight: bold;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card,
.step-card {
    background-color: transparent;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-card h3,
.step-card h3 {
    color: #199D7F;
    margin-top: 0;
}

.step-card img,
.ai-image {
    max-width: 100px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

#cta-final {
    text-align: center;
    padding: 3rem 2rem;
}

#cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

footer {
    background-color: #1A1A1A;
    padding: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 1.5rem auto;
}

.footer-content h3 {
    color: #f0f0f0;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content ul li {
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: #888;
    text-decoration: none;
}

.footer-content a:hover {
    color: #f0f0f0;
}

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

.footer-social img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer-copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .cta-button {
        width: 80%;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content h3 {
        text-align: center;
    }

    .footer-social {
        display: block;
        text-align: center;
    }
}

.animated-border-button {
  position: relative;
  display: inline-block;
  padding: 2px; /* This will be the border thickness */
  border-radius: 7px; /* Slightly larger than the button's border-radius */
  background: linear-gradient(to right, magenta, purple, #199D7F);
  animation: rotate-gradient 4s linear infinite;
  background-size: 200% 200%;
  margin: 1rem auto;
}

.animated-border-button .cta-button {
  margin: 0;
  border-radius: 5px; /* Match the button's original border-radius */
}

@keyframes rotate-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}