.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-item:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
}

.nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255,255,255,0.9) !important;
}
.hero-section {
    height: 100vh;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-slide.active {
    opacity: 1;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

.service-card:hover, .testimonial-card:hover, .doc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.doc-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doc-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.doc-card .card-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.doc-card .card-text {
    margin-bottom: 1.5rem;
}

.doc-card .btn {
    width: 100%;
    margin-top: auto;
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-card img {
    border: 3px solid #007bff;
    padding: 3px;
}

.service-card i {
    color: #007bff;
}

.requisito-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.requisito-card h3 {
    color: #007bff;
    margin-bottom: 20px;
}

.contact-info i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2em;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-button::before {
    content: "¿En qué te podemos ayudar?";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.whatsapp-button:hover::before {
    opacity: 1;
    visibility: visible;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    color: white;
    font-size: 24px;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
    color: #007bff;
}

/* Estilos para FAQ */
.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #007bff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,123,255,0.25);
}

/* Estilos para Contador */
.counter {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.counter:hover {
    transform: translateY(-10px);
}

.counter-number {
    font-size: 3em;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
}

/* Estilos para Blog */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* Estilos para Calendario */
.calendar-container {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

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

.service-card, .requisito-card {
    animation: fadeIn 1s ease-out;
}

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

    .service-card {
        margin-bottom: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}