/* 
* Consultora IMontanar - Styles
* Palette:
* Dark Blue: #1e3a8a
* Modern Light Blue: #3b82f6
* Professional Gray: #64748b
* White: #ffffff
*/

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #1e3a8a;
    --color-secondary: #3b82f6;
    --color-gray: #64748b;
    --color-white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-gray);
    background-color: #f8fafc; /* Very light gray background for modern feel */
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-weight: 700;
}

.text-primary-custom {
    color: var(--color-primary);
}

.text-secondary-custom {
    color: var(--color-secondary);
}

.bg-primary-custom {
    background-color: var(--color-primary);
}

.bg-secondary-custom {
    background-color: var(--color-secondary);
}

.btn-primary-custom {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #172e6e;
    border-color: #172e6e;
    color: white;
}

.btn-outline-custom {
    color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.8)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.hero-section h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Services */
.service-card {
    padding: 2rem;
    height: 100%;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

/* Contact */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: var(--color-secondary);
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}
