/* Hero Section */
#inicio {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #292524;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #57534e;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    height: 400px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fef3c7, #e7e5e4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* About Section */
#nosotros {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    height: 400px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e7e5e4, #fef3c7);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #292524;
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #b45309;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.about-content p {
    color: #57534e;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Products Section */
#productos {
    background: #fafaf9;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #fef3c7, #e7e5e4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #292524;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #57534e;
    margin-bottom: 1rem;
}

.product-link {
    color: #b45309;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.product-link:hover {
    color: #92400e;
}

/* Experience Section */
#experiencia {
    background: linear-gradient(135deg, #b45309, #78350f);
    color: white;
}

#experiencia .section-header h2,
#experiencia .section-header p {
    color: white;
}

#experiencia .section-header p {
    color: #fde68a;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #fef3c7;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 1rem;
    color: #fde68a;
}

.experience-image {
    height: 400px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Newsletter Section */
#newsletter {
    background: #292524;
    color: white;
}

.newsletter-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #d6d3d1;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid #b45309;
}

.success-message {
    color: #4ade80;
    font-weight: 600;
    margin-top: 1rem;
    display: none;
}

.success-message.show {
    display: block;
}

/* Contact Section */
#contacto {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background: #fafaf9;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: #b45309;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s;
    font-size: 1.75rem;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #292524;
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    color: #57534e;
    text-decoration: none;
}

.contact-card a:hover {
    color: #b45309;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-links a {
    display: block;
}