:root {
    --primary-color: #a078ba;
    /* Color malva principal, sin tintes rosados */
    --primary-dark: #7a5791;
    --primary-light: #ebe4f0;
    --text-dark: #2b262d;
    --text-muted: #6e6870;
    --bg-color: #E6E0F2;
    /* Fondo lila muy suave, frío y sin tonos rosas */
    --white: #ffffff;
    --whatsapp-color: #25d366;
    --whatsapp-dark: #1da851;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Glow Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(187, 129, 235, 0.2);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Layout */
.container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    min-height: 90vh;
    padding: 2rem;
    gap: 4rem;
    align-items: center;
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
}

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

.image-wrapper:hover .portrait-img {
    transform: scale(1.03);
}

/* Content Section */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 1rem;
}

.logo {
    max-height: 400px;
    width: 100%;
    max-width: 450px;
    object-fit: contain;
}

.text-content {
    margin-bottom: 3rem;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* Actions */
.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(187, 129, 235, 0.3);
    width: fit-content;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(187, 129, 235, 0.4);
}

.btn-primary i {
    font-size: 1.3rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--whatsapp-color);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    width: fit-content;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.social-link .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-dark);
}

.social-link:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Reviews Section */
.reviews-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.rating-badge .score {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.rating-badge .stars {
    color: #fbbc04;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-badge .count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.reviews-slider {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.review-card {
    flex: 0 0 320px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(187, 129, 235, 0.1);
}

.review-stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: auto;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .image-section {
        order: -1;
    }

    .image-wrapper {
        max-width: 350px;
    }

    .content-section {
        margin: 0 auto;
        align-items: center;
    }

    .title {
        font-size: 2.5rem;
    }

    .actions {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .image-wrapper {
        max-width: 280px;
    }
}