/* 
* General Styles - Actualizado para un aspecto más moderno y futurista
*/
:root {
    --primary-color: #58C3E5; /* Azul pastel */
    --secondary-color: #8BD7D2; /* Verde agua pastel */
    --accent-color: #FFA877; /* Naranja pastel */
    --dark-color: #425466; /* Azul oscuro suave */
    --light-color: #F2F9FF; /* Celeste muy claro */
    --white-color: #ffffff;
    --text-color: #333333;
    --light-text-color: #ffffff;
    --border-color: #E6EEF2;
    --box-shadow: 0 10px 30px rgba(88, 195, 229, 0.15);
    --box-shadow-hover: 0 15px 40px rgba(88, 195, 229, 0.25);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.18);
    --card-radius: 16px;
    --button-radius: 12px;
    --gradient-bg: linear-gradient(135deg, #58C3E5 0%, #8BD7D2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Para que los anclajes no queden debajo del header */
}

body {
    font-family: 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, Tahoma, Geneva, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    text-align: center;
    width: 100%;
    display: block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-bg);
    border-radius: 2px;
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    text-align: center;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--card-radius);
    transition: var(--transition);
}

/* Botones modernos con efectos */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px; /* Más cuadrado */
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Mejora aspecto del texto */
    font-family: 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, Tahoma, Geneva, sans-serif;
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-bg);
    color: var(--light-text-color);
    border: none;
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8BD7D2 0%, #58C3E5 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 20px rgba(88, 195, 229, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: rgba(88, 195, 229, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 195, 229, 0.3);
}

/* Efecto de ondas para secciones */
.wave-bg {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 150px;
    z-index: -1;
    opacity: 0.6;
}

.wave-top {
    top: 0;
    bottom: auto;
    transform: rotate(180deg);
}

/* Efecto para los fondos de secciones */
.bg-dots {
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* 
* Header and Navigation - Mejorado con efecto glassmorphism y estilo cohesivo
*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(88, 195, 229, 0.15);
    border-bottom: 1px solid var(--glass-border);
}

.navbar {
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 5px rgba(88, 195, 229, 0.2));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 3px 8px rgba(88, 195, 229, 0.4));
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--button-radius);
    position: relative;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.nav-menu li a:not(.btn):hover,
.nav-menu li a:not(.btn).active {
    color: var(--primary-color);
    background-color: rgba(88, 195, 229, 0.08);
    transform: translateY(-2px);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    opacity: 0.7;
}

.nav-menu li a:not(.btn):hover::after,
.nav-menu li a:not(.btn).active::after {
    width: 20px;
}

.nav-menu li a.btn {
    background: var(--gradient-bg);
    color: var(--white-color);
    padding: 10px 22px;
    border-radius: var(--button-radius);
    margin-left: 6px;
    box-shadow: 0 5px 15px rgba(88, 195, 229, 0.25);
    border: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu li a.btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-menu li a.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 195, 229, 0.4);
    background-image: linear-gradient(135deg, #58C3E5 0%, #6fd1e0 100%);
    color: var(--white-color);
}

.nav-menu li a.btn:hover i {
    transform: translateY(-2px);
}

.nav-menu li a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8BD7D2 0%, #58C3E5 100%);
    opacity: 0;
    border-radius: var(--button-radius);
    transition: var(--transition);
    z-index: -1;
}

.nav-menu li a.btn:hover::before {
    opacity: 1;
}

.nav-menu li a.btn::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(88, 195, 229, 0.1);
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    color: var(--primary-color);
    border: 1px solid rgba(88, 195, 229, 0.15);
}

.menu-toggle:hover {
    background-color: rgba(88, 195, 229, 0.2);
    transform: rotate(5deg);
}

/* Menu Toggle Animation */
.menu-toggle {
    transition: transform 0.3s ease;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

/* 
* Hero Section - Modernizada con efectos y estilo futurista
*/
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f2f9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Floating animation for hero image */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-image {
    position: relative;
    margin-left: 100px;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    border-radius: var(--card-radius);
    box-shadow: 0 20px 40px rgba(88, 195, 229, 0.2);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-5deg);
    filter: drop-shadow(0 20px 30px rgba(88, 195, 229, 0.25));
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: var(--gradient-bg);
    filter: blur(60px);
    opacity: 0.15;
    bottom: -10%;
    left: 10%;
    z-index: -1;
}

.hero-content {
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 36px;
    color: var(--dark-color);
    opacity: 0.85;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%2358C3E5" /><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%238BD7D2" /><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23F2F9FF" /></svg>');
    background-size: 100% 100px;
    z-index: 1;
}

/* 
* Features Section - Modernizada con efectos de cristal y sombras
*/
.features {
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-bg);
    filter: blur(80px);
    opacity: 0.1;
    top: -50px;
    left: -100px;
    z-index: -1;
}

.features::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--gradient-bg);
    filter: blur(80px);
    opacity: 0.1;
    bottom: -50px;
    right: -100px;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Feature Cards con efectos modernos */
.feature-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bg);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.5s ease-out;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(88, 195, 229, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-bg);
    color: var(--white-color);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    transition: var(--transition);
}

/* 
* About Section - Mejorada con efectos futuristas
*/
.about {
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(88, 195, 229, 0.1) 0%, transparent 50%);
    top: 0;
    left: 0;
    z-index: -1;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    position: relative;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    margin-left: 0;
    margin-right: auto;
}

.about-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

/* Animación para la imagen */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-radius: var(--card-radius);
    background: var(--gradient-bg);
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
    animation: pulse 4s infinite ease-in-out;
}

.about-image img {
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(5deg);
    filter: drop-shadow(0 15px 25px rgba(88, 195, 229, 0.2));
}

.about-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* 
* Testimonials Section - Mejorada con efectos modernos y diseño futurista
*/
.testimonials {
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(88, 195, 229, 0.08) 0%, transparent 60%);
    top: 0;
    left: 0;
    z-index: -1;
}

.testimonial-slider {
    margin: 40px 0;
    position: relative;
}

.testimonial {
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-content {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    color: var(--dark-color);
    line-height: 1.8;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 6rem;
    color: rgba(88, 195, 229, 0.1);
    z-index: 0;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white-color);
    box-shadow: 0 4px 10px rgba(88, 195, 229, 0.2);
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-author p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-controls button {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var (--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-controls button:hover {
    background: var(--gradient-bg);
    color: var(--light-text-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 195, 229, 0.25);
}

/* 
* FAQ Section - Rediseñada con estilo moderno y efectos interactivos
*/
.faq {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: -1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--white-color);
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                padding 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-answer p {
    line-height: 1.8;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.99);
}

/* 
* Plataformas Section - Rediseñada con estilo glassmorphism
*/
.pricing {
    background-color: var(--light-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pricing::before,
.pricing::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-bg);
    opacity: 0.1;
    filter: blur(80px);
}

.pricing::before {
    top: -150px;
    right: -100px;
}

.pricing::after {
    bottom: -150px;
    left: -100px;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pricing-plan {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow);
    padding: 45px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

/* Efecto de halo para los planes */
.pricing-plan::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(88, 195, 229, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.pricing-plan:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(88, 195, 229, 0.3);
}

.pricing-plan:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.pricing-plan h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.feature-icon {
    margin-bottom: 25px;
}

.plan-features {
    margin: 30px 0;
    padding: 0 10px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(88, 195, 229, 0.1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .fas {
    margin-right: 8px;
}

.fa-check {
    color: #48BB78;
}

.fa-times {
    color: #F56565;
}

.btn-plan {
    width: 100%;
    padding: 14px;
    border-radius: var(--button-radius);
    background: var(--gradient-bg);
    color: var(--light-text-color);
    border: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8BD7D2 0%, #58C3E5 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 195, 229, 0.25);
    color: white;
}

.btn-plan:hover::before {
    opacity: 1;
}

.featured {
    transform: translateY(-10px) scale(1.03);
    border: 2px solid rgba(88, 195, 229, 0.3);
    z-index: 2;
}

.featured:hover {
    transform: translateY(-20px) scale(1.03);
}

.plan-badge {
    background: var(--gradient-bg);
    color: var(--light-text-color);
    padding: 8px 18px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(88, 195, 229, 0.2);
    z-index: 2;
}

/* 
* CTA Section - Modernizada con gradientes y efectos
*/
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255,255,255,0.05)" d="M0,0l50,50l50,-50l0,50l-50,50l-50,-50z" /></svg>');
    opacity: 0.3;
    background-size: 30px 30px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.download-buttons .btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.download-buttons .btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.version-info {
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* 
* Contact Section
*/
.contact {
    background-color: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-detail h4 {
    margin-bottom: 5px;
}

.social-media {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* 
* Form Validation Messages
*/
.form-message {
    padding: 12px 15px;
    margin-top: 15px;
    border-radius: var(--button-radius);
    font-weight: 500;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.message-visible {
    transform: translateY(0);
    opacity: 1;
}

.message-error {
    background-color: rgba(235, 87, 87, 0.1);
    color: #EB5757;
    border: 1px solid rgba(235, 87, 87, 0.3);
}

.message-success {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27AE60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

/* 
* FAQ Section - Rediseñada con estilo moderno y efectos interactivos
*/
.faq {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: -1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--white-color);
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                padding 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-answer p {
    line-height: 1.8;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.99);
}

/* 
* Newsletter Section - Rediseñada con estilo futurista
*/
.newsletter {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--light-text-color);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.newsletter h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.newsletter p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--button-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: var(--button-radius) 0 0 var(--button-radius);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
}

.newsletter-form input:focus {
    outline: none;
    background-color: var(--white-color);
}

.newsletter-form button {
    padding: 0 30px;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    border-radius: 0 var(--button-radius) var(--button-radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.05rem;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: translateX(3px);
}

/* 
* Footer - Rediseñado con estilo moderno y futurista
*/
.footer {
    background: linear-gradient(to bottom, #3d4e62 0%, var(--dark-color) 100%);
    color: #fff;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.footer-logo p {
    margin-bottom: 25px;
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: var(--white-color);
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: var (--transition);
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 1rem;
}

/* 
* Back to Top Button - Mejorado con efectos
*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    background: var(--gradient-bg);
    color: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(88, 195, 229, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99;
    cursor: pointer;
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-bg);
    opacity: 0;
    z-index: -1;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(88, 195, 229, 0.4);
}

/* 
* Responsive Design
*/
@media (max-width: 1024px) {
    .features-grid,
    .pricing-plans {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: #fff;
        padding: 20px;
        transition: var (--transition);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero .container,
    .about .container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .pricing-plans,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Centrando contenedores de títulos */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Estilos para la sección "Un estilo que habla por sí solo" */
.style-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.style-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.style-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    line-height: 1.4;
}

.style-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.style-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.style-cta {
    margin-top: 20px;
}

.style-image {
    position: relative;
    z-index: 2;
}

.style-showcase-image {
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-5deg);
    max-height: 500px;
    object-fit: cover;
}

.style-showcase-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: var(--box-shadow-hover);
}

.style-image::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 0;
    left: 0;
    border-radius: var(--card-radius);
    background: rgba(88, 195, 229, 0.2);
    filter: blur(40px);
    z-index: -1;
}

.style-image-caption {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white-color);
    color: var(--dark-color);
    padding: 12px 24px;
    border-radius: var(--button-radius);
    box-shadow: var(--box-shadow);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
    border: 1px solid var(--border-color);
}

/* Responsive para la nueva sección */
@media (max-width: 992px) {
    .style-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .style-image {
        order: -1;
    }
    
    .style-image-caption {
        bottom: -10px;
        right: 20px;
    }
}

/* 
* Quiri Pro Section - Diseño elegante y futurista con tonos morados y plateados
*/
.pro-section {
    background: linear-gradient(135deg, #1e1133 0%, #2c1a45 50%, #1a0b2e 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 100px 0;
    margin: 60px 0;
    z-index: 1;
}

.pro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)" x="0" y="0"></rect></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.pro-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(147, 112, 219, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(192, 192, 192, 0.2) 0%, transparent 50%);
    z-index: -1;
}

.pro-title {
    color: #fff;
    margin-bottom: 25px;
    background: linear-gradient(to right, #c5a4ff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(197, 164, 255, 0.3));
}

.pro-title::after {
    background: linear-gradient(90deg, #9370DB, #C0C0C0);
    height: 5px;
    width: 80px;
    margin-top: 20px;
}

.pro-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.pro-premium-text {
    color: #c5a4ff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pro-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.pro-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    height: 100%;
}

.pro-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9370DB, #C0C0C0);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.pro-feature-item:hover::before {
    transform: scaleX(1);
}

.pro-feature-item::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(147, 112, 219, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.pro-feature-item:hover::after {
    opacity: 0.4;
}

.pro-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.pro-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9370DB 0%, #8A63D2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.3);
    transition: all 0.5s ease;
}

.pro-feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #C0C0C0, #9370DB, #C0C0C0);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: -1;
}

.pro-feature-item:hover .pro-feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.pro-feature-item:hover .pro-feature-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pro-feature-item:hover .pro-feature-icon i {
    animation: pulse 1.5s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.pro-feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.pro-feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    max-width: 90%;
    margin: 0 auto;
}

.pro-feature-item:hover .pro-feature-text h3 {
    transform: translateY(-3px);
    background: linear-gradient(to right, #c5a4ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
}

.pro-feature-item:hover .pro-feature-text p {
    color: rgba(255, 255, 255, 0.9);
}

.pro-cta {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.pro-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(147, 112, 219, 0.1), rgba(192, 192, 192, 0.1));
    z-index: -1;
}

.pro-pricing {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pro-price {
    background: linear-gradient(to right, #c5a4ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 3.5rem;
}

.pro-period {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
    align-self: flex-end;
    padding-bottom: 8px;
}

.pro-guarantee {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.btn-pro {
    background: linear-gradient(135deg, #9370DB 0%, #C0C0C0 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(147, 112, 219, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 220px;
}

.btn-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C0C0C0 0%, #9370DB 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.btn-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(147, 112, 219, 0.5);
    color: #fff;
}

.btn-pro:hover::before {
    opacity: 1;
}

.pro-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-showcase-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.pro-showcase-image:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(147, 112, 219, 0.3);
}

.pro-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(147, 112, 219, 0.5) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: 0;
}

.pro-badge {
    position: absolute;
    top: -25px;
    right: 40px;
    background: linear-gradient(135deg, #9370DB 0%, #C0C0C0 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.pro-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
}

/* Responsive para la sección Pro */
@media (max-width: 992px) {
    .pro-showcase {
        flex-direction: column;
    }
    
    .pro-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pro-badge {
        top: -20px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .pro-features {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.animated {
    animation: fadeInUp 0.7s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Lazy Loading Images */
.lazy-image {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Placeholder para imágenes */
.placeholder {
    background-color: #e6f4ff;
    position: relative;
    overflow: hidden;
}

.placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    animation: placeholder-shine 1.5s infinite;
}

@keyframes placeholder-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
