/* Variables */
:root {
    --primary-color: #ff80ab;
    --secondary-color: #f8bbd0;
    --accent-color: #c51162;
    --dark-color: #37474f;
    --light-color: #ffffff;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 76px; /* Este padding-top debe ser igual en todas las páginas para dejar espacio al header fijo */
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-nav .nav-item {
    margin-left: 18px;
}
.navbar-nav .nav-item:first-child {
    margin-left: 0;
}
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #f8f9fa !important; /* Fondo claro uniforme */
    min-height: 70px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.5;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
}

.hero-section h1 {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 3.5rem;
    animation: fadeInUp 1s ease;
}

.hero-section p {
    font-size: 1.5rem;
    animation: fadeInUp 1.2s ease;
}

/* Services Section */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: var(--light-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.6s ease;
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

.card-body {
    padding: 1.5rem;
}

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Testimonials Section */
#testimonios {
    background: linear-gradient(135deg, #fff5f8 0%, #fce4ec 100%);
    padding: 5rem 0;
}

#testimonios .card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

#testimonios .card-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.blockquote-footer {
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special Offers Section */
.special-offers {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 4rem 0;
    margin: 3rem 0;
}

.special-offers .card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
}

.special-offers .card-body {
    position: relative;
    z-index: 1;
}

.special-offers .offer-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

.contact-info .card {
    transition: all 0.3s ease;
}

.contact-info .card:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    color: white;
}

.contact-info .card:hover i {
    color: white !important;
}

/* Footer Enhancement */
footer {
    background-color: var(--dark-color);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.social-links a {
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .card-img-top {
        height: 200px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Additional Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

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