/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #B8956A;
    transition: color 0.3s ease;
    margin: 0;
}

.navbar.scrolled .logo h1 {
    color: #B8956A;
}

.nav-menu {
    display: none; /* Oculto por defecto en móvil */
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar.scrolled .nav-menu a {
    color: #333;
}

.nav-menu a:hover {
    color: #B8956A;
}

.tienda-btn {
    background: #B8956A;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s ease;
    font-size: 0.85rem;
}

.tienda-btn:hover {
    background: #A0834F;
    color: white !important;
}

/* Hero Section */
.hero-section {
    height: 50vh;
    min-height: 300px;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quecchch {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: #F8F6F3;
    min-height: auto;
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
    align-items: start;
}

.contact-left {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-header h2 {
    background: #B8956A;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-subtitle {
    font-size: 1rem;
    color: #B8956A;
    margin-bottom: 2rem;
    font-weight: 500;
}

.team-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    margin: 1rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B8956A;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 1.2rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #B8956A;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #B8956A;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: #B8956A;
    font-size: 0.75rem;
    text-align: left;
}

/* Submit Button */
.submit-btn {
    background: #B8956A;
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 1.5rem auto 0;
    min-width: 140px;
}

.submit-btn:hover {
    background: #A0834F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 149, 106, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 438px) {
    .team-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* Tablets y Desktop */
@media (min-width: 768px) {
    .navbar {
        padding: 1.5rem 0;
    }

    .logo h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
        color: #fff;
    }

    .navbar.scrolled .logo h1 {
        color: #333;
    }

    .nav-menu {
        display: flex; /* Mostrar en desktop */
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .tienda-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }

    .contact-left {
        text-align: left;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .contact-header h2 {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .team-image {
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }

    .checkbox-container {
        font-size: 0.9rem;
    }

    .checkbox-text {
        font-size: 0.85rem;
    }

    .checkmark {
        width: 20px;
        height: 20px;
    }

    .checkbox-container input[type="checkbox"]:checked + .checkmark::after {
        font-size: 14px;
    }

    .submit-btn {
        padding: 1rem 3rem;
        font-size: 1.1rem;
        margin: 2rem auto 0;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .hero-section {
        height: 65vh;
    }

    .nav-container {
        padding: 0 2rem;
    }
}