/* ================================================= */
/* CONFIGURACIÓN BASE (Colores de Consulmarcas) */
/* ================================================= */
:root {
    --primary-color: #0d47a1; /* Azul corporativo (Oscuro) */
    --secondary-color: #ff9800; /* Naranja de acento */
    --text-color: #333;
    --light-bg: #f5f7fa; /* Fondo claro para secciones */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-deep: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {padding: 0;
margin: 0;}


.contact-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 20px; 
}

.contact-hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
}

.contact-hero-text {
    flex: 1;
}

.contact-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-bottom: 5px;
    margin-top: 25px;
}

.contact-hero-text h1 {
    color: white;
    font-size: 3em;
    line-height: 1.1;
    margin-bottom: 15px;
}

.cta {margin-top: 30px;}

.gradient-text {
    color: var(--secondary-color); 
}

.contact-subtitle {
    font-size: 1.15em;
    opacity: 0.9;
}

.contact-hero-image {
    flex: 1;
    text-align: right;
}

.contact-hero-image img {
    max-width: 80%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-deep);
}


/* ================================================= */
/* SECCIÓN DE INFORMACIÓN Y REDES (INFO CARDS) */
/* ================================================= */

.contact-content {
    background-color: var(--light-bg);
    padding: 60px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.info-card-icon {
    color: var(--secondary-color);
    font-size: 2em;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    margin: 0;
}

/* Social Connect */
.social-connect {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
}

.social-connect h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.social-connect p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, opacity 0.3s;
}

.social-card:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-card.facebook { background-color: #3b5998; }
.social-card.instagram { background-image: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); } /* Gradiente */
.social-card.twitter { background-color: #1da1f2; }
.social-card.linkedin { background-color: #0077b5; }


/* ================================================= */
/* SECCIÓN DE FORMULARIO DE CONTACTO */
/* ================================================= */

.contact-form-section {
    padding: 60px 20px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-deep);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #e68900; 
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 1.2em;
}


/* ================================================= */
/* RESPONSIVE DESIGN */
/* ================================================= */

@media (max-width: 992px) {
    .contact-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-hero-image {
        text-align: center;
        margin-top: 30px;
    }
    .contact-hero-image img {
        max-width: 80%;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-form-section {
        padding: 40px 15px;
    }
    .form-container {
        padding: 30px 20px;
    }
    .footer-content {
        justify-content: center;
        text-align: center;
    }
}
@media (min-width: 1024px) {
  .mobile-nav,
  .mobile-nav-overlay {
    display: none ;
  }
}

a{ text-decoration: none;}