/* Taomind IA Custom Styles */

:root {
    --brand-primary: #C19A6B;
    --brand-primary-light: #F5F0EB;
    --brand-text-dark: #333333;
}

body {
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--brand-text-dark);
    background-color: #FFFFFF;
}

.text-brand {
    color: var(--brand-primary) !important;
}

.bg-brand-light {
    background-color: var(--brand-primary-light) !important;
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    box-shadow: none;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--brand-primary-light);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-icon svg,
.advantage-icon svg {
    width: 26px;
    height: 26px;
}

.border-brand {
    border-color: var(--brand-primary) !important;
}

.hero-section {
    background: linear-gradient(180deg, rgba(193, 154, 107, 0.08), rgba(255, 255, 255, 0));
}

.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-primary-light);
    color: var(--brand-primary);
    font-size: 1.35rem;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--brand-primary-light);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 18px;
    height: 18px;
}

/* Iconos grandes para contacto */
.icon-circle-lg {
    width: 64px;
    height: 64px;
}

.icon-circle-lg svg {
    width: 28px;
    height: 28px;
}

/* Iconos de redes sociales */
.icon-circle-social {
    width: 48px;
    height: 48px;
    transition: transform 0.25s ease, background-color 0.25s ease;
    text-decoration: none;
}

.icon-circle-social svg {
    width: 22px;
    height: 22px;
}

.icon-circle-social:hover {
    transform: translateY(-4px);
    background-color: var(--brand-primary);
    color: #fff;
}

footer a {
    color: var(--brand-text-dark);
    text-decoration: none;
}

footer a:hover {
    color: var(--brand-primary);
}

