/* Sección de Contacto */
.contact-section {
    width: 100%;
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #F7EDD9, #FCFDFC);
}

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

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 444px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.contact-logo {
    width: 80px;
    margin: 0 auto 30px;
    display: block;
}

.contact-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 30px;
    line-height: 111%;
    color: #2D2924;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.contact-title .highlight {
    color: #B48C09;
    font-style: italic;
}

.contact-subtitle {
    font-family: 'tt-commons-pro', sans-serif;
    font-size: 14px;
    line-height: 135%;
    color: #2D2924;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    max-width: 212px;
}

.form-fields {
    width: 100%;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
    position: relative;
}

.form-field input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'tt-commons-pro', sans-serif;
    font-size: 14px;
    padding: 5px 0;
    color: #2D2924;
    outline: none;
}

.form-field input::placeholder {
    color: #939391;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.14px;
    font-family: 'Bodoni Moda', serif;
    text-align: center;
}

.field-line {
    width: 100%;
    height: 1px;
    background-color: #2D2925;
    margin-top: 5px;
}

.privacy-policy {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
}

.privacy-policy input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-right: 5px;
    border: 1px solid #939391;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
}

.privacy-policy input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: -1px;
    left: 3px;
    color: #2D2925;
    font-size: 14px;
}

.privacy-policy label {
    font-family: 'tt-commons-pro', sans-serif;
    font-size: 11px;
    color: #939391;
    cursor: pointer;
    line-height: 100%;
    font-style: normal;
    font-weight: 300;
}

.contact-button {
    background-color: #2D2925;
    color: #F7EDD9;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    font-family: 'Bodoni Moda', serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 212px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-footer {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    padding-top: 20px;
}

.footer-logo {
    width: 300px;
    margin: 0 auto 20px;
    display: block;
}

.contact-info {
    text-align: center;
    font-family: 'tt-commons-pro', sans-serif;
    font-size: 14px;
    color: #2D2924;
    font-weight: 300;
    display: flex;
    justify-content: center;
    line-height: 135%;
    gap: 10px;
}

.contact-info p {
    margin: 0;
    padding: 0;
}

.contact-info a {
    font-family: 'tt-commons-pro', sans-serif;
    font-size: 14px;
    color: #2D2924;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #B48C09;
}

/* Responsive para la sección de contacto */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 60px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 13px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 24px;
    }
}
