/* ===================================
   Salón de Belleza - Estilos Específicos
   AMSOFT Solutions
   =================================== */

/* ===================================
   Hero Section - Salón
   =================================== */
.salon-hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .salon-hero {
        padding-top: 12rem;
        padding-bottom: 8rem;
    }
}

/* ===================================
   Stats Section
   =================================== */
.salon-stats {
    padding: 4rem 0;
    background-color: var(--color-slate-50);
}

.dark .salon-stats {
    background-color: rgba(15, 23, 42, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-item-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-item-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-600);
}

.dark .stat-item-label {
    color: var(--color-slate-400);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .features-section {
        padding: 8rem 0;
    }
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.dark .feature-card {
    background-color: var(--color-slate-800);
    border-color: var(--color-slate-700);
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(251, 192, 45, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    color: var(--color-primary);
    font-size: 1.875rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-slate-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

.dark .feature-description {
    color: var(--color-slate-400);
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--color-slate-50);
}

.dark .benefits-section {
    background-color: rgba(15, 23, 42, 0.5);
}

@media (min-width: 1024px) {
    .benefits-section {
        padding: 8rem 0;
    }
}

.benefits-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.benefit-icon-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background-color: rgba(251, 192, 45, 0.1);
    border: 1px solid rgba(251, 192, 45, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon {
    color: var(--color-primary);
    font-size: 3rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-description {
    color: var(--color-slate-600);
    line-height: 1.7;
}

.dark .benefit-description {
    color: var(--color-slate-400);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 8rem 0;
    }
}

.cta-wrapper {
    background-color: var(--color-slate-900);
    border-radius: 2.5rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-wrapper {
        padding: 6rem;
    }
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: radial-gradient(#FBC02D 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

.cta-title-highlight {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(251, 192, 45, 0.3);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-slate-500);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-btn-primary {
    background-color: var(--color-primary);
    color: var(--color-slate-900);
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px 0 rgba(251, 192, 45, 0.2);
    display: inline-block;
}

.cta-btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(251, 192, 45, 0.3);
}

.cta-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.cta-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   Hero Clients
   =================================== */
.hero-clients {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}

.hero-avatars {
    display: flex;
    margin-left: -0.75rem;
}

.hero-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 4px solid var(--color-background-light);
    margin-left: -0.75rem;
    background-size: cover;
    background-position: center;
}

.dark .hero-avatar {
    border-color: var(--color-background-dark);
}

.hero-clients-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-500);
}

.dark .hero-clients-text {
    color: var(--color-slate-400);
}

.hero-clients-count {
    display: block;
    font-weight: 700;
    color: var(--color-slate-900);
    font-size: 1rem;
}

.dark .hero-clients-count {
    color: white;
}

/* ===================================
   Hero Demo Card
   =================================== */
.hero-demo-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-slate-100);
    z-index: 20;
    display: none;
}

@media (min-width: 1280px) {
    .hero-demo-card {
        display: block;
    }
}

.dark .hero-demo-card {
    background-color: var(--color-slate-900);
    border-color: var(--color-slate-800);
}

.demo-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(251, 192, 45, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-card-icon .icon {
    color: var(--color-primary);
    font-weight: 700;
}

.demo-card-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-slate-400);
    letter-spacing: 0.05em;
}

.demo-card-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-slate-900);
}

.dark .demo-card-value {
    color: white;
}

/* ===================================
   CTA Intermedio
   =================================== */
.intermediate-cta {
    margin-top: 4rem;
    text-align: center;
}

.intermediate-cta-box {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.1) 0%, rgba(251, 192, 45, 0.05) 100%);
    border-radius: 1.5rem;
    border: 2px solid rgba(251, 192, 45, 0.2);
    max-width: 48rem;
    transition: all var(--transition-base);
}

.intermediate-cta-box:hover {
    border-color: rgba(251, 192, 45, 0.4);
    box-shadow: 0 10px 40px rgba(251, 192, 45, 0.15);
}

.dark .intermediate-cta-box {
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.15) 0%, rgba(251, 192, 45, 0.08) 100%);
    border-color: rgba(251, 192, 45, 0.3);
}

.intermediate-cta-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.intermediate-cta-icon {
    color: var(--color-primary);
    font-size: 2rem;
}

.intermediate-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-slate-900);
}

.dark .intermediate-cta-title {
    color: white;
}

.intermediate-cta-description {
    color: var(--color-slate-600);
    max-width: 32rem;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.dark .intermediate-cta-description {
    color: var(--color-slate-300);
}
