body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.navbar {
    background-color: #fff;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.header-main {
    background-color: #fff;
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.header-logo {
    max-height: 120px;
    margin-bottom: 1.5rem;
}

.header-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #004a99;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.nav-main {
    background-color: #004a99;
    padding: 0;
    margin-bottom: 3rem;
}

.nav-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav-main ul li a {
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.nav-main ul li a:hover {
    background-color: #003d7a;
    color: #fdef42;
}

.container-custom {
    max-width: 1100px;
    margin: 0 auto;
}

.footer {
    background-color: white;
    color: #555;
    padding: 60px 0 30px;
    margin-top: 100px;
    border-top: 1px solid #e0e0e0;
}

.footer h4 {
    color: #004a99;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 30px;
    color: #004a99;
    font-size: 1.1rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-icon {
    width: 28px;
    height: auto;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.color-primary {
    color: #004a99 !important;
}

.header-line {
    width: 60px;
    height: 3px;
    background-color: #004a99;
    margin: 0 auto 20px;
}

.header-line-left {
    width: 50px;
    height: 3px;
    background-color: #004a99;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nav-main ul {
        flex-wrap: wrap;
    }
    .nav-main ul li a {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    .header-title {
        font-size: 1.6rem;
    }
}

/* Clases específicas de index.phtml */
.service-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.service-card:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    transform: translateY(-3px);
    border-color: #004a99;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f5fa;
    color: #004a99;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 25px;
    flex-shrink: 0;
    border: 1px solid #e1e8f0;
}

.service-info {
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #004a99;
}

.service-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

.service-meta {
    text-align: right;
    margin-left: 25px;
    min-width: 140px;
}

.service-duration {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.btn-reserve {
    background-color: #004a99;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-reserve:hover {
    background-color: #003d7a;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,74,153,0.2);
}

.badge-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ce1126;
    font-weight: 800;
    margin-bottom: 6px;
    display: block;
}

/* Clases específicas de solicitar.phtml y form.phtml */
.card-appointment {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    border-top: 6px solid #004a99 !important;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.btn-book-now {
    background-color: #004a99;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-book-now:hover {
    background-color: #003d7a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,74,153,0.2);
}

.time-slot {
    display: block;
    width: 100%;
    padding: 8px 4px;
    margin-bottom: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    cursor: pointer;
}

.time-slot:hover {
    border-color: #004a99;
    color: #004a99;
    background: #f0f5fa;
    text-decoration: none;
}

.time-slot.selected {
    background: #004a99;
    color: #fff !important;
    border-color: #004a99;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: center;
    color: #ccc;
    font-weight: 600;
    font-size: 0.9rem;
}

.step.active {
    color: #004a99;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active .step-number {
    border-color: #004a99;
    background-color: #004a99;
    color: white;
}

.step-line {
    width: 50px;
    height: 2px;
    background: #eee;
    margin: 0 15px;
}

.next-available-banner {
    background: linear-gradient(135deg, #004a99 0%, #003366 100%);
    color: white;
    padding: 25px 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.next-available-info h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.next-available-date {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Clases específicas de contacto.phtml y sobre-nosotros.phtml */
.content-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #004a99;
    background-color: #f0f5fa;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-method h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.contact-method p {
    color: #666;
    margin-bottom: 0;
}

.btn-send {
    background-color: #004a99;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.btn-send:hover {
    background-color: #003d7a;
    color: white;
    box-shadow: 0 4px 8px rgba(0,74,153,0.2);
}

/* Específico para títulos en content-card */
.content-card h2 {
    color: #004a99;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.content-card h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #004a99;
}

.content-card p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.btn-pagination {
    background-color: transparent;
    color: #004a99;
    border: 1px solid #004a99;
    padding: 4px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-pagination:hover:not(:disabled) {
    background-color: #004a99;
    color: white;
    text-decoration: none;
}

.btn-pagination:disabled {
    color: #ccc;
    border-color: #eee;
    cursor: not-allowed;
}

/* Clases específicas de confirmacion.phtml */
.btn-custom-solid {
    background-color: #004a99;
    color: #fff;
    border: none;
}

.btn-custom-solid:hover {
    background-color: #003d7a;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,74,153,0.2);
}

.info-box-custom {
    border-left: 4px solid #004a99;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.monument-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.bg-readonly-custom {
    background-color: #e9ecef !important;
}
