/* Variables de color */
:root {
    --color-primary: #d4a5a5;
    --color-secondary: #c9b037;
    --color-accent: #9b8aa5;
    --color-light: #f8f4f4;
    --color-dark: #3d3d3d;
}

/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

.brand-text {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* Navegación */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.9), rgba(201, 176, 55, 0.8)), 
                url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1200');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    margin-top: -76px;
}

/* Tarjetas de características */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Tarjetas de producto */
.product-card {
    transition: transform 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Testimonios */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

/* Header de página */
.page-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    margin-top: 76px;
}

/* Tarjetas de valores */
.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Tarjetas de objetivos */
.objective-card {
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
}

.objective-number {
    opacity: 0.3;
}

/* Tarjetas de servicio */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Botones de tabs */
.nav-pills .nav-link {
    color: var(--color-dark);
    margin: 0 5px;
    border-radius: 25px;
    padding: 10px 25px;
}

.nav-pills .nav-link.active {
    background-color: var(--color-primary);
}

/* Formularios */
.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 165, 0.25);
}

/* Botones personalizados */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: #c49494;
    border-color: #c49494;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--color-primary);
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-primary) !important;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .page-header {
        margin-top: 76px;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Redes sociales */
.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--color-primary) !important;
}