:root {
    --primary-color: #D8906D;
    --secondary-color: #F1EAE3;
    --accent-color: #EFE8DB;
    --text-color: #3A3A3A;
    --secondary-text: #666666;
    --background-color: #F9F5EF;
    --heading-color: #3A3A3A;
    --border-color: #F1EAE3;
    --shadow-color: rgba(216, 144, 109, 0.1);
    --menstruation-color: #f5d0c5;
    --fertile-color: #c8e6c9;
    --ovulation-color: #e1bee7;
    --hover-color: #f5f5f5;
    --selected-color: #D8906D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header y Navegación */
header {
    background-color: white;
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.auth-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.auth-button.primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.auth-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 144, 109, 0.15);
}

.auth-button.primary:hover {
    background: var(--primary-color);
    opacity: 0.9;
}

.auth-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .auth-buttons {
        gap: 0.5rem;
    }
    
    .auth-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(135deg, var(--background-color) 0%, white 100%);
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-button.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-logo {
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    background: linear-gradient(45deg, #ff69b4, #ffb6c1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255, 182, 193, 0.6));
}

.heartbeat-icon {
    font-size: 4.5rem;
    color: transparent;
    background: linear-gradient(45deg, #ff69b4, #ffb6c1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 182, 193, 0.7);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.warm-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Secciones */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Servicios Section */
.services {
    background-color: #FFF9FB;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFE4E1" stroke-width="2"/></svg>');
    background-repeat: repeat;
    opacity: 0.5;
    z-index: 0;
}

.services-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Estilos responsivos para servicios */
@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }
    
    .services h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-highlight {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Professionals Section */
.professionals {
    padding: 80px 0;
    background-color: #f9f5f2;
}

.professionals h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Estilos específicos para cuando hay solo un profesional */
.professionals-grid:has(.professional-card:only-child) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.professionals-grid:has(.professional-card:only-child) .professional-card {
    max-width: 350px;
    width: 100%;
}

.professional-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.professional-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

/* Ajuste específico para cuando hay solo un profesional */
.professionals-grid:has(.professional-card:only-child) .professional-image {
    height: 280px;
}

.professionals-grid:has(.professional-card:only-child) .professional-image img {
    object-fit: cover;
    object-position: center;
}

.professional-card:hover .professional-image img {
    transform: scale(1.05);
}

.professional-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.professional-title {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.professional-specialty {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* Ajuste específico para cuando hay solo un profesional */
.professionals-grid:has(.professional-card:only-child) .professional-card h3 {
    font-size: 1.4rem;
}

.professionals-grid:has(.professional-card:only-child) .professional-title {
    font-size: 1rem;
}

.professionals-grid:has(.professional-card:only-child) .professional-specialty {
    font-size: 0.9rem;
}

.learn-more-btn {
    margin-top: auto;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
}

/* Estilos para el modal de profesionales */
.professional-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    justify-content: center;
    align-items: center;
}

.professional-modal .modal-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.professional-modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.professional-modal .close:hover {
    color: #333;
}

.professional-modal .modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.professional-modal .modal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.professional-modal .modal-info {
    flex: 1;
}

.professional-modal .modal-name {
    color: #333;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.professional-modal .modal-title {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 10px;
}

.professional-modal .modal-section {
    margin-bottom: 25px;
}

.professional-modal .modal-section h3 {
    color: #333;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.professional-modal .modal-section p {
    color: #555;
    line-height: 1.6;
}

/* Responsive para el modal de profesionales */
@media (max-width: 768px) {
    .professional-modal .modal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .professional-modal .modal-image {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .professional-modal .modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plan-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.plan-subtitle {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.plan-features {
    margin: 1.5rem 0;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.plan-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.plan-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.plan-button:hover {
    background-color: var(--accent-color);
}

.plan-note {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 1rem;
    text-align: center;
}

.plan-note.latidos-plus {
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb6c1 100%);
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(216, 144, 109, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.plan-note.latidos-plus::after {
    content: 'Click para ver más';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.plan-note.latidos-plus:hover::after {
    opacity: 1;
}

.plan-note.latidos-plus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 144, 109, 0.3);
}

.plan-note.latidos-plus .plus-icon {
    font-size: 1.2rem;
    animation: sparkle 1.5s infinite;
}

.plan-note.latidos-plus .plus-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.plan-note.latidos-plus .plus-price {
    font-weight: 500;
    opacity: 0.9;
}

.plan-note.latidos-plus.featured {
    background: linear-gradient(135deg, #ffb6c1 0%, var(--primary-color) 100%);
}

@keyframes sparkle {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Custom Plan Section */
.custom-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.option-group {
    margin-bottom: 2rem;
}

.option-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.option-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: white;
}

.summary-list {
    list-style: none;
    margin-bottom: 2rem;
}

.summary-list li {
    margin-bottom: 0.5rem;
}

.credits-total {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.points-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Community Section */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.community-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
}

.community-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.community-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.community-link:hover {
    background-color: var(--accent-color);
}

/* Workshops Section */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.workshop-card {
    max-width: 370px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(216,144,109,0.08);
    background: #fff;
    margin: 0 auto 2rem auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.workshop-card img, .workshop-card .warm-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.workshop-card h3 {
    color: #D8906D;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    padding: 1.2rem 1.5rem 0 1.5rem;
}

.workshop-card p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.7rem;
    padding: 0 1.5rem;
}

.workshop-date {
    font-size: 0.95em;
    color: #b8860b;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.workshop-link {
    background: #D8906D;
    color: #fff;
    border: none;
    border-radius: 0 0 16px 16px;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
}
.workshop-link:hover {
    background: #b86c3b;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: white;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-nav h5,
.footer-contact h5,
.footer-social h5 {
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.footer-nav ul,
.footer-contact ul,
.footer-social ul {
    list-style: none;
}

.footer-nav li,
.footer-contact li,
.footer-social li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .user-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        padding: 80px 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .user-menu.active {
        right: 0;
    }

    .modal {
        padding: 1rem;
    }

    .modal-content {
        width: 90%;
        max-width: none;
        margin: 1rem;
    }

    .about-content,
    .custom-plan-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .plan-card.featured {
        transform: none;
    }
}

/* Estilos para los modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex !important;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    text-align: center;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

/* Estilos para los formularios en los modales */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-color);
}

.modal-switch {
    margin-top: 1.5rem;
    text-align: center;
}

.modal-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.modal-switch a:hover {
    text-decoration: underline;
}

/* Estilos para el menú de usuario */
.user-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 1rem;
    min-width: 200px;
    z-index: 1000;
}

.user-menu.active {
    display: block;
}

.user-menu .user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    display: block;
}

.user-menu .user-name {
    display: block;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.user-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.user-menu a:hover {
    color: var(--primary-color);
}

.user-menu button {
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
    border: none;
    border-radius: 5px;
    background-color: var(--background-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-menu button:hover {
    background-color: var(--border-color);
}

/* Estilos para el perfil */
.profile-container {
    max-width: 1200px;
    margin: 6rem auto 2rem;
    padding: 0 1rem;
}

.profile-header {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px var(--shadow-color);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h1 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Estilos para las pestañas */
.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tab-buttons::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover::after,
.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-pane {
    display: none;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .auth-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .user-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        padding: 80px 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .user-menu.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        cursor: pointer;
        padding: 0.5rem;
        background: none;
        border: none;
        z-index: 1002;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .auth-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .user-menu {
        width: 90%;
        padding: 60px 1rem;
    }
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.auth-button {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-button.primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.auth-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-auth {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .desktop-auth {
        display: none;
    }

    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .mobile-auth .auth-button {
        width: 100%;
        text-align: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Estilos para imágenes cálidas */
.warm-image {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(1.05) saturate(1.1);
    object-fit: cover;
    width: 100%;
    height: 250px;
    display: block;
    margin: 0 auto;
}

.team-member .warm-image {
    height: 280px;
    margin-bottom: 15px;
    max-width: 100%;
}

.workshop-card .warm-image {
    height: 200px;
    margin-bottom: 15px;
    max-width: 100%;
}

.warm-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.3);
}

/* Ajustes responsivos para imágenes */
@media (max-width: 768px) {
    .team-member .warm-image {
        height: 220px;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .workshop-card .warm-image {
        height: 180px;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .workshop-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .professionals-grid, .workshops-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
}

/* Estilos para el modal de adquisición de Pulsos */
.pulses-modal {
    max-width: 600px;
    width: 90%;
}

.pulses-balance {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.pulses-balance h3 {
    color: #666;
    margin-bottom: 1rem;
}

.pulses-amount {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pulses-packages {
    margin-bottom: 2rem;
}

.pulses-packages h3 {
    color: #666;
    margin-bottom: 1rem;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.package-item.selected {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 139, 0.05);
}

.package-info {
    flex: 1;
}

.package-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.package-desc {
    color: #666;
    font-size: 0.9rem;
}

.package-price {
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    background-color: rgba(255, 107, 139, 0.1);
    border-radius: 20px;
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
}

#confirmBuyBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .pulses-modal {
        width: 95%;
        padding: 1.5rem;
    }

    .package-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .package-price {
        width: 100%;
    }
}

/* Estilos para la sección de Rituales de Bienestar */
.wellness-rituals {
    padding: 5rem 0;
    background-color: #fff9fb;
    position: relative;
}

.wellness-rituals h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pulses-info {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pulses-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pulses-info p {
    color: #666;
    line-height: 1.6;
}

.pulses-action {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pulses-button {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--primary-color);
    color: white;
}

.pulses-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.pulses-button.buy-button {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.pulses-button.buy-button:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .wellness-rituals {
        padding: 2rem 0;
    }

    .pulses-info {
        width: 90%;
        padding: 1.5rem;
    }

    .pulses-action {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .pulses-button {
        width: 90%;
        max-width: 300px;
    }
}

/* Estilos para el Espacio Profesional */
.professional-space {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.professional-space h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.professional-space .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.professional-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cuando solo hay una categoría, centrarla y mantener tamaño proporcional */
.professional-categories:has(.category-card:only-child) {
    grid-template-columns: minmax(280px, 400px);
    justify-content: center;
}

.professional-categories:has(.category-card:only-child) .category-card {
    max-width: 400px;
    width: 100%;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(216, 144, 109, 0.2);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-card .book-session {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    background-color: #d87a8f; /* pastel rosa */
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card .book-session:hover {
    background-color: #e0909f; /* pastel rosa más claro en hover */
    color: white;
}

/* Modal de reserva de sesión */
.session-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.session-modal.active {
    display: flex;
}

.session-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.session-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.session-modal-content .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.session-modal-content .close:hover {
    color: var(--primary-color);
}

.session-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-session {
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-session:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

/* Voucher de sesión */
.voucher {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
    max-width: 600px;
    margin: 2rem auto;
}

.voucher-header {
    text-align: center;
    margin-bottom: 2rem;
}

.voucher-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.voucher-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.voucher-section h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.voucher-info {
    color: var(--secondary-text);
    line-height: 1.6;
}

.voucher-footer {
    text-align: center;
    margin-top: 2rem;
}

.download-voucher {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-voucher:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

@media (max-width: 768px) {
    .professional-categories {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .session-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .voucher-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- Ajuste cálido y compacto para la sección de canje de pulsos en el formulario de agendar sesión --- */
.session-modal-content .form-group.pulses-canjeo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(90deg, #fff6f0 60%, #fbeee6 100%);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(216,144,109,0.07);
}
.session-modal-content .form-group.pulses-canjeo .pulses-info {
  margin: 0;
  padding: 0;
  min-width: 120px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
}
.session-modal-content .form-group.pulses-canjeo label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
}
.session-modal-content .form-group.pulses-canjeo input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 18px;
  height: 18px;
}
.session-modal-content .form-group.pulses-canjeo .canjear-btn {
  margin-left: auto;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(216,144,109,0.10);
}
.session-modal-content .form-group.pulses-canjeo .canjear-btn:hover {
  background: var(--accent-color);
  color: var(--text-color);
}

@media (max-width: 600px) {
  .session-modal-content .form-group.pulses-canjeo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.7rem 0.5rem;
  }
  .session-modal-content .form-group.pulses-canjeo .canjear-btn {
    margin-left: 0;
    width: 100%;
    margin-top: 0.5rem;
  }
} 

/* Estética cálida y atractiva para los íconos de tratamientos en Espacio Profesional */
.professional-categories .category-card i {
  background: linear-gradient(135deg, #ffe0c3 0%, #ffd6e0 100%);
  color: #d8906d;
  border-radius: 50%;
  padding: 1.1rem;
  font-size: 2.7rem;
  box-shadow: 0 4px 16px rgba(216,144,109,0.13), 0 1.5px 0 #fff inset;
  margin-bottom: 1.2rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  border: 2.5px solid #fbeee6;
}
.professional-categories .category-card:hover i {
  background: linear-gradient(135deg, #ffd6e0 0%, #ffe0c3 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(216,144,109,0.18), 0 2px 0 #fff inset;
}

/* Estilos para el pop-up de notificación de pulsos */
.pulses-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #fff6f0 0%, #fbeee6 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(216, 144, 109, 0.2);
    text-align: center;
    z-index: 1100;
    max-width: 400px;
    width: 90%;
    border: 2px solid var(--primary-color);
    animation: pulseIn 0.5s ease-out;
}

.pulses-notification i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

.pulses-notification h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.pulses-notification p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pulses-notification .pulses-count {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pulses-notification .close-notification {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pulses-notification .close-notification:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

@keyframes pulseIn {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.pulses-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Estilos para el mensaje de error de pulsos */
.error-message {
    background: linear-gradient(135deg, #fff0f0 0%, #ffe6e6 100%);
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    animation: shake 0.5s ease-in-out;
}

.error-message i {
    color: #f44336;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.error-message p {
    color: #d32f2f;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.error-message p:first-of-type {
    font-weight: 500;
    font-size: 1rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.warm-btn {
    background: linear-gradient(90deg, #F1EAE3 0%, #EFE8DB 100%);
    color: #D8906D;
    border: 2px solid #D8906D;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(216, 144, 109, 0.07);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}
.warm-btn:hover, .warm-btn:focus {
    background: #D8906D;
    color: #fff;
    border-color: #D8906D;
    box-shadow: 0 4px 16px rgba(216, 144, 109, 0.15);
    text-decoration: none;
}

/* Estilos para estados de carga y error en talleres */
.loading, .no-workshops, .no-talks, .error {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.loading {
    color: #007bff;
    font-weight: 500;
}

.error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 1rem 0;
}

.no-workshops, .no-talks {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin: 1rem 0;
}

.no-workshops p, .no-talks p {
    margin: 0.5rem 0;
}

.no-workshops p:first-child, .no-talks p:first-child {
    font-weight: 500;
    color: #495057;
}

/* --- Estilos para la Tienda Online --- */
.store-hero {
    background-color: #f8f5f2;
    padding: 3rem 0;
    text-align: center;
}

.store-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.store-main {
    padding: 2rem 0;
}

.store-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #c5a992;
    color: white;
    border-color: #c5a992;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    height: 60px; /* Limita la altura para descripciones */
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c5a992;
}

.btn-add-cart {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-add-cart:hover {
    background-color: #c5a992;
}

.btn-add-cart i {
    margin-right: 0.5rem;
}

.loading-message, .empty-message {
    text-align: center;
    width: 100%;
    padding: 2rem;
    font-size: 1.2rem;
    color: #888;
}

.session-card {
  display: flex;
  align-items: center;
  background: #fff7f2;
  border: 2px solid #f3e0d6;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(216,144,109,0.07);
  margin-bottom: 18px;
  padding: 18px 22px;
  cursor: pointer;
  transition: box-shadow 0.2s, border 0.2s;
}
.session-card:hover {
  box-shadow: 0 4px 16px rgba(216,144,109,0.13);
  border-color: #d8906d;
}
.session-card.selected {
  border: 2.5px solid #d8906d;
  background: #fff0e6;
}
.session-icon {
  margin-right: 20px;
  min-width: 40px;
  text-align: center;
}
.session-title {
  font-size: 1.18em;
  font-weight: bold;
  color: #d8906d;
  margin-bottom: 2px;
}
.session-desc {
  color: #3a3a3a;
  font-size: 1em;
  margin-bottom: 4px;
}
.session-pulses {
  color: #b97c5b;
  font-size: 0.98em;
  font-weight: 500;
}
.canje-exito {
  text-align: center;
  padding: 40px 20px 30px 20px;
}
.canje-exito h2 {
  color: #d8906d;
  font-size: 2em;
  margin-bottom: 10px;
}
.canje-exito p {
  color: #3a3a3a;
  font-size: 1.1em;
  margin-bottom: 22px;
}
.warm-btn {
  display: inline-block;
  background: #d8906d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 1.08em;
  font-weight: 600;
  margin: 8px 10px 0 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.warm-btn:hover {
  background: #b97c5b;
}