/* Variables de colores */
:root {
    --primary-color: #038ad4;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

/* Footer Brand */
.footer-brand {
    font-size: 2rem;
    font-weight: bold;
}

.footer-brand span {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-brand {
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #026ba0;
    transform: translateY(-2px);
}

/* Footer */
.footer-top {
    background-color: var(--dark-gray);
    padding: 60px 0;
    color: white;
}

.footer-bottom {
    background-color: #212529;
    color: white;
}

/* Enlaces del footer */
.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Enlaces del footer en párrafos */
.footer-bottom p a {
    color: inherit;
    font-weight: 600;
}

.footer-bottom p a:hover {
    color: var(--primary-color);
}

.footer-top h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-top h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-top ul {
    list-style: none;
    padding: 0;
}

.footer-top ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-top ul li a:hover {
    color: var(--primary-color);
}

/* WhatsApp Button */
.button-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.button-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* General */
.intro h6 {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro h1 {
    font-weight: bold;
    margin-bottom: 20px;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
}

/* Botones en cards */
.card .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Botones por categoría */
.card .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.card .btn-outline-success {
    color: #198754;
    border-color: #198754;
}

.card .btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0;
}

/* Carousel */
.carousel-item {
    position: relative;
}

.carousel-caption {
    bottom: 100px;
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
}

.carousel-caption h1 {
    font-weight: bold;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 20px;
    }
}
