/* === INDEX.HTML SPECIFIC STYLES === */
/* Landing page specific styles for index.html */

/* Landing page wrapper */
.landing-page {
    width: 100%;
    overflow-x: hidden;
}

.landing-container {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #c4a7f7 0%, #f8b3c7 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 20px 40px;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    color: white;
    font-size: 20px;
    margin-right: 8px;
}

.cta-button {
    background: white;
    color: #914ac8;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Hero Visual */
.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 60px;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 20px;
    animation-delay: 4s;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon {
    font-size: 32px;
    color: var(--primary);
}

.card-2 .card-icon {
    color: var(--accent);
}

.card-text {
    text-align: left;
}

.card-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.central-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-container {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.central-icon i {
    font-size: 80px;
    color: white;
    margin-right: 0;
}

/* Background Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 80%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 24px;
}

.benefit-icon i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

/* Report Section */
.report-section {
    padding: 80px 0;
    background: white;
}

.report-header {
    text-align: center;
    margin-bottom: 60px;
}

.report-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.report-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.report-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.report-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.report-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.report-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.report-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #914ac8, #f2758b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-feature-icon i {
    font-size: 20px;
    color: white;
}

.report-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.report-feature-content p {
    color: #666;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    padding: 30px 0;
       background: linear-gradient(135deg, #c4a7f7 0%, #f8b3c7 100%);
    color: white;
    text-align: center;
}

.cta-content {
    width: 90%;
    max-width: none;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.guarantee-item i {
    color: var(--primary);
    font-size: 18px;
    margin-right: 8px;
}

/* Valorador Section - Estilos de tamaño y alineación */
.valorador-section {
    background: linear-gradient(135deg, #914ac8 0%, #f2758b 100%);
    width: 100%;
    padding: 30px 0;
}

.valorador-container {
    width: 90%;
    height: 700px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

#app-extra {
    margin-top: 30px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .visual-container {
        width: 300px;
        height: 350px;
    }
    
    /* Mejor posicionamiento vertical para móvil */
    .card-1 {
        top: 10px;
        left: 10px;
    }
    
    .card-2 {
        top: 120px;
        right: 10px;
    }
    
    .card-3 {
        top: 230px;
        left: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .report-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-title,
    .benefits-title,
    .report-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .valorador-container {
        width: 95%;
        height: 600px;
    }

    .central-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .visual-container {
        width: 280px;
        height: 380px;
    }
    
    .floating-card {
        padding: 15px;
    }
    
    .card-content {
        gap: 12px;
    }
    
    /* Posicionamiento vertical mejorado para móviles pequeños */
    .card-1 {
        top: 5px;
        left: 5px;
        right: auto;
    }
    
    .card-2 {
        top: 130px;
        right: 5px;
        left: auto;
    }
    
    .card-3 {
        top: 255px;
        left: 15px;
        right: auto;
        bottom: auto;
    }
    
    .features-title,
    .benefits-title,
    .report-title,
    .cta-title {
        font-size: 1.8rem;
    }
}
