:root {
    --primary: #ff3b77;
    --primary-dark: #d62c5e;
    --secondary: #1a0010;
    --dark: #0f0f0f;
    --light: #f4f4f4;
    --text-light: #ffccd5;
    --gray-dark: #222;
    --gray: #444;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
    background: linear-gradient(to right, var(--secondary), #2c041f);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
    letter-spacing: 1px;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: white !important;
    background-color: rgba(255, 59, 119, 0.1);
}

/* Search Form and Results */
.content-wrapper {
    padding: 3rem 0;
}

.search-section {
    background: linear-gradient(135deg, rgba(26, 0, 16, 0.8), rgba(44, 4, 31, 0.8));
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: var(--primary);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--gray);
    color: white;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    background-color: rgba(42, 42, 42, 0.95);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 119, 0.25);
    color: white;
}

.form-select {
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--gray);
    color: white;
    border-radius: 8px;
    padding: 0.7rem 1rem;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 119, 0.25);
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 59, 119, 0.2);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 59, 119, 0.2);
}

/* Results Section */
.results-section {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.results-summary {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.filter-tag {
    background-color: rgba(255, 59, 119, 0.1);
    color: var(--primary);
    border-radius: 20px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.filter-tag i {
    margin-right: 0.3rem;
}

/* Profile Cards */
.profile-card {
    background: linear-gradient(to bottom, rgba(26, 0, 16, 0.9), rgba(44, 4, 31, 0.9));
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 59, 119, 0.05);
    margin-bottom: 1.5rem;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 59, 119, 0.1);
    border: 1px solid rgba(255, 59, 119, 0.1);
}

.profile-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile-card:hover .profile-img {
    transform: scale(1.05);
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    z-index: 1;
}

.profile-info {
    padding: 1.5rem;
    text-align: center;
}

.profile-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.profile-age {
    background-color: rgba(255, 59, 119, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    margin-left: 0.5rem;
}

.profile-location {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.profile-location i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.profile-services {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    min-height: 40px;
}

.btn-view-profile {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
}

.btn-view-profile:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 59, 119, 0.2);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.page-item:first-child .page-link {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.page-link {
    background-color: rgba(42, 42, 42, 0.8);
    color: var(--light);
    border: 1px solid var(--gray);
    transition: var(--transition);
    padding: 0.5rem 1rem;
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-link:hover {
    background-color: rgba(255, 59, 119, 0.2);
    color: white;
    border-color: rgba(255, 59, 119, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--secondary), #2c041f);
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .navbar-collapse {
        background-color: var(--secondary);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    
    .search-section {
        padding: 1.5rem;
    }
    
    .profile-card {
        margin-bottom: 1.5rem;
    }
    
    .filter-tag {
        margin-bottom: 0.5rem;
    }
}

/* Estilos adicionales para el perfil de usuario */
.profile-header {
    background: linear-gradient(135deg, rgba(26, 0, 16, 0.9), rgba(44, 4, 31, 0.9));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.profile-cover {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-dark), var(--secondary));
    position: relative;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--dark);
    object-fit: cover;
    position: absolute;
    bottom: -75px;
    left: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-info-header {
    padding: 2rem 2rem 2rem 230px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-basic-info h3 {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.profile-meta-item {
    display: flex;
    align-items: center;
}

.profile-meta-item i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.profile-actions {
    display: flex;
    gap: 1rem;
}

.profile-content {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.profile-tabs {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-tab {
    color: var(--text-light);
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.profile-tab.active {
    color: white;
}

.profile-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px 3px 0 0;
}

.profile-section {
    margin-bottom: 2rem;
}

.profile-section-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bio {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Estilos para formularios de mensajes */
.message-form {
    background: rgba(26, 0, 16, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.message-input {
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--gray);
    color: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    resize: none;
}

.message-input:focus {
    background-color: rgba(42, 42, 42, 0.95);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 119, 0.25);
}

/* Estilos para mensajería */
.chat-container {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 15px;
    height: 70vh;
    display: flex;
    overflow: hidden;
}

.chat-sidebar {
    width: 300px;
    background: rgba(26, 0, 16, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.chat-search {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-search input {
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--gray);
    color: white;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: 100%;
}

.chat-contacts {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.chat-contact {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.chat-contact:hover, .chat-contact.active {
    background-color: rgba(255, 59, 119, 0.1);
}

.chat-contact-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.chat-contact-info {
    flex: 1;
}

.chat-contact-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.chat-contact-preview {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.chat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.chat-header-info h4 {
    margin: 0;
    font-weight: 500;
}

.chat-header-status {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message-received {
    background-color: rgba(42, 42, 42, 0.8);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message-sent {
    background-color: rgba(255, 59, 119, 0.2);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
    text-align: right;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.5rem;
}

.chat-input textarea {
    flex: 1;
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--gray);
    color: white;
    border-radius: 20px;
    padding: 0.75rem 1rem;
    resize: none;
    max-height: 100px;
}

.chat-input textarea:focus {
    background-color: rgba(42, 42, 42, 0.95);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 119, 0.25);
}

.chat-input-actions {
    display: flex;
    gap: 0.5rem;
}

.chat-input-actions button {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-input-actions button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Estilos para Premium */
.premium-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.premium-header {
    margin-bottom: 3rem;
}

.premium-heading {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.premium-subheading {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.premium-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.premium-plan {
    background: linear-gradient(135deg, rgba(26, 0, 16, 0.8), rgba(44, 4, 31, 0.8));
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 59, 119, 0.1);
}

.premium-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 59, 119, 0.2);
    border: 1px solid rgba(255, 59, 119, 0.3);
}

.plan-recommended {
    border: 2px solid var(--primary);
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.plan-title {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.plan-feature {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.plan-feature i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.premium-benefits {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

.premium-testimonials {
    margin-bottom: 3rem;
}

.testimonials-slider {
    margin-top: 2rem;
    padding: 1rem;
}

.testimonial {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 0 1rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    opacity: 0.3;
}

.testimonial-content::before {
    top: -1.5rem;
    left: 0;
}

.testimonial-content::after {
    bottom: -2.5rem;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-info h5 {
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-light);
}

.premium-faq {
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estilos para páginas Acerca de y Contacto */
.about-section, .contact-section {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.about-text {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary);
}

.team-member-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Estilos complementarios */

/* Formularios */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

textarea.form-control {
    min-height: 120px;
}

.form-check-input {
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--gray);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Páginas estáticas */
.static-page {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.static-page h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.static-page h3 {
    color: white;
    margin: 2rem 0 1rem;
}

.static-page p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.static-page ul, .static-page ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.static-page li {
    margin-bottom: 0.5rem;
}

/* Cards informativas */
.info-card {
    background: linear-gradient(135deg, rgba(26, 0, 16, 0.8), rgba(44, 4, 31, 0.8));
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 59, 119, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 59, 119, 0.2);
}

.info-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Notificaciones y Alertas */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    animation: fadeInRight 0.5s ease forwards;
}

.notification.success {
    background-color: rgba(25, 135, 84, 0.9);
    border-left: 4px solid rgb(25, 135, 84);
}

.notification.error {
    background-color: rgba(220, 53, 69, 0.9);
    border-left: 4px solid rgb(220, 53, 69);
}

.notification.warning {
    background-color: rgba(255, 193, 7, 0.9);
    border-left: 4px solid rgb(255, 193, 7);
}

.notification.info {
    background-color: rgba(13, 110, 253, 0.9);
    border-left: 4px solid rgb(13, 110, 253);
}

.notification-icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.notification-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modal personalizado */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 0, 16, 0.95), rgba(44, 4, 31, 0.95));
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.custom-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loader/Spinner */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(255, 59, 119, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Botones flotantes */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 900;
    transition: var(--transition);
}

.floating-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 59, 119, 0.3);
}

/* Banner promocional */
.promo-banner {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Componentes para galería */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.gallery-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gallery-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gallery-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-nav button {
    background-color: rgba(255, 59, 119, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
}

.gallery-nav button:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 59, 119, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-close:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Estilos para calendario y citas */
.calendar {
    background: rgba(26, 0, 16, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    background-color: rgba(255, 59, 119, 0.1);
    color: var(--primary);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calendar-nav button:hover {
    background-color: var(--primary);
    color: white;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.weekday {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-day:hover {
    background-color: rgba(255, 59, 119, 0.1);
}

.calendar-day.today {
    background-color: rgba(255, 59, 119, 0.2);
    font-weight: 600;
}

.calendar-day.selected {
    background-color: var(--primary);
    color: white;
}

.calendar-day.has-event {
    position: relative;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Estilos para valoraciones y reviews */
.rating-container {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-star {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-number {
    font-weight: 500;
    margin-left: 0.5rem;
}

.review {
    background: rgba(26, 0, 16, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.review-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.review-content {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.review-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.review-action:hover {
    color: var(--primary);
}