/* HOME PAGE - Conquerors Club Design */

/* HERO SECTION - Inspirador y Profundo */
.hero-section {
    background: url("/static/images/fondo_anochecer.f9025eb2833c.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section h1 {
    color: var(--light);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 3.2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-section .lead {
    font-size: 1.4rem;
    color: rgba(255, 251, 240, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
    line-height: 1.6;
    font-weight: 300;
}

.hero-section .btn {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-section .btn-primary {
    background-color: #007bff !important;
    border-color: #007bff !important;
    color: white !important;
}

.hero-section .btn-primary:hover {
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
}

.hero-image {
    animation: float 4s ease-in-out infinite;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    margin: 1rem 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    letter-spacing: 0.5px;
}

.hero-tagline:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-tagline:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-tagline:nth-child(3) {
    animation-delay: 0.8s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ANIMACIONES */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* FEATURES SECTION */
.features-section {
    background: var(--light);
    padding: 80px 0;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 4px solid var(--primary);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(212, 113, 79, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* PRINCIPLES SECTION */
.principles-section {
    background: linear-gradient(135deg, #7A9B6F 0%, #A8C986 100%);
    padding: 80px 0;
    color: var(--light);
}

.principles-section h2 {
    color: var(--light);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
}

.principle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.principle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.principle h4 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.principle p {
    color: rgba(255, 251, 240, 0.9);
    margin-bottom: 0;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #D4714F 0%, #C8A574 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--light);
}

.cta-section h2 {
    color: var(--light);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 251, 240, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: var(--light-alt);
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .principle {
        padding: 1.8rem;
    }
    
    .cta-section h2,
    .testimonials-section h2,
    .principles-section h2 {
        font-size: 1.8rem;
    }
}
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.section-dark .feature-item i {
    color: #17a2b8;
}

.feature-item h5 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.section-dark .feature-item h5 {
    color: #17a2b8;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

.section-dark .feature-item p {
    color: rgba(255,255,255,0.8);
}

/* Project Type Cards */
.project-type-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-type-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 2.5rem;
    }
}
