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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: rgba(223, 215, 187, 0.1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-image {
    height: 40px; /* Ajusta este valor según el tamaño que desees */
    width: auto;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo span {
    font-size: 1.25rem;
    font-weight: bold;
    color: #8bad9d;
}

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

.nav-links a {
    color: #8bad9d;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #c36c5d;
}

.login-btn {
    background-color: #c36c5d;
    color: white !important;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s !important;
}

.login-btn:hover {
    background-color: #d89065;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #8bad9d;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    color: white;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -1;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #d89065;
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

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

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: white;
}

.features h2,
.pricing h2,
.faq h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #8bad9d;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-top: 1rem;
    font-size: 1.25rem;
}

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

.feature-card {
    padding: 1.5rem;
    background-color: rgba(223, 215, 187, 0.1);
    border-radius: 0.5rem;
}

.feature-card h3 {
    margin-top: 1rem;
    color: #8bad9d;
    font-size: 1.125rem;
}

.feature-card p {
    margin-top: 0.5rem;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: rgba(223, 215, 187, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.pricing-card {
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.pricing-card.basic {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card.premium {
    background-color: #8bad9d;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    margin-top: 0.25rem;
    opacity: 0.8;
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-card li {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-card li::before {
    content: '✓';
    color: #a4bea0;
}

.premium li::before {
    color: white;
}

.pricing-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    text-decoration:none;
}

.basic .pricing-button {
    background-color: transparent;
    border: 1px solid #8bad9d;
    color: #8bad9d;
}

.basic .pricing-button:hover {
    background-color: #8bad9d;
    color: white;
}

.premium .pricing-button {
    background-color: white;
    color: #8bad9d;
}

.premium .pricing-button:hover {
    background-color: #dfd7bb;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: white;
}

.faq-list {
    max-width: 768px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-top: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background-color: rgba(223, 215, 187, 0.1);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #c36c5d;
    font-size: 1.125rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: rgba(223, 215, 187, 0.2);
}

.chevron {
    transition: transform 0.2s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem;
}

/* Footer */
footer {
    background-color: #8bad9d;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}