/* style.css: intentionally cleared — legacy Bootstrap styles moved to legacy-style.css
   This file remains for compatibility but no longer contains Bootstrap-specific rules.
   Use Tailwind utilities and public/css/tailwind-overrides.css for current styles. */

/* Keep minimal body defaults for older templates that may reference this file. */
body { background: #ffffff; color: #111827; }
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    margin: 0;
    padding: 0;
}
.custom-contact-section {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.custom-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 991px) {
    .custom-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* Columna Izquierda: Textos */
.custom-info-col h1 {
    font-size: 34px;
    font-weight: 800;
    color: #0c4a26;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.2;
}
.custom-info-col .subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 500px;
}
.info-item-box {
    margin-bottom: 35px;
}
.info-item-box strong {
    display: block;
    font-size: 15px;
    color: #0c4a26;
    margin-bottom: 8px;
    font-weight: 700;
}
.info-item-box a {
    color: #2b6cb0;
    text-decoration: none;
    font-size: 15px;
}
.info-item-box span {
    font-size: 15px;
    color: #4a5568;
}
/* Columna Derecha: Tarjeta de Formulario */
.custom-form-card {
    background: #ffffff;
    border: 2px solid #e3f2fd;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(227, 242, 253, 0.6), 0 5px 15px rgba(0, 0, 0, 0.02);
}
.custom-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}
@media (max-width: 576px) {
    .custom-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.custom-field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.custom-field-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}
.custom-field-group input,
.custom-field-group select,
.custom-field-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2d3748;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.custom-field-group input::placeholder,
.custom-field-group textarea::placeholder {
    color: #a0aec0;
}
.custom-field-group input:focus,
.custom-field-group select:focus,
.custom-field-group textarea:focus {
    outline: none;
    border-color: #0c4a26;
}
.custom-field-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d3748' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
}
.custom-submit-btn {
    width: 100%;
    background-color: #0c4a26;
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}
.custom-submit-btn:hover {
    background-color: #08331a;
}
/* Bloque SEO Inferior Centrado */
.custom-seo-container {
    max-width: 900px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
    text-align: center;
}
.custom-seo-container h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0c4a26;
    margin-bottom: 20px;
}
.custom-seo-container p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}