/* ===== ESTILOS PARA LA PÁGINA DE INICIO ===== */

/* Hero Section */
.kangaroo-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #FFD23F 0%, #FF6B35 50%, #004E89 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    top: 10%;
    left: 10%;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid white;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-square {
    width: 80px;
    height: 80px;
    background: white;
    top: 30%;
    right: 25%;
    animation-delay: -10s;
}

.shape-star, .shape-number, .shape-plus {
    font-size: 4rem;
    color: white;
    font-weight: bold;
}

.shape-star {
    top: 70%;
    left: 20%;
    animation-delay: -15s;
}

.shape-number {
    top: 20%;
    right: 10%;
    animation-delay: -7s;
}

.shape-plus {
    top: 50%;
    left: 5%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.kangaroo-mascot img {
    max-width: 300px;
    height: auto;
}

.bounce-animation {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.title-welcome {
    display: block;
    font-size: 2rem;
    font-weight: 600;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-subtitle {
    color: white;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    max-width: 800px;
    margin: 0 auto;
}

/* Botones Kangaroo */
.btn-kangaroo {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: none;
}

.btn-kangaroo i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.btn-kangaroo-orange {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    color: white;
}

.btn-kangaroo-orange:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #cc4a1f 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-kangaroo-green {
    background: linear-gradient(135deg, #06A77D 0%, #058a68 100%);
    color: white;
}

.btn-kangaroo-green:hover {
    background: linear-gradient(135deg, #058a68 0%, #047055 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 167, 125, 0.4);
    color: white;
}

.btn-kangaroo-blue {
    background: linear-gradient(135deg, #004E89 0%, #003d6b 100%);
    color: white;
}

.btn-kangaroo-blue:hover {
    background: linear-gradient(135deg, #003d6b 0%, #002d4f 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.4);
    color: white;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 2.5rem;
    color: #004E89;
    margin-bottom: 3rem;
}

.title-emoji {
    font-size: 3rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-card-orange {
    border-top: 5px solid #FF6B35;
}

.feature-card-yellow {
    border-top: 5px solid #FFD23F;
}

.feature-card-blue {
    border-top: 5px solid #004E89;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card-orange .feature-icon {
    color: #FF6B35;
}

.feature-card-yellow .feature-icon {
    color: #FFD23F;
}

.feature-card-blue .feature-icon {
    color: #004E89;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.feature-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.feature-decoration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 3rem;
    opacity: 0.1;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-image-container {
    position: relative;
    padding: 2rem;
}

.image-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.decoration-1 {
    top: 10%;
    left: 10%;
}

.decoration-2 {
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

.decoration-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

.about-bubble {
    background: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
    border-radius: 30px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.bubble-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.fun-facts {
    display: grid;
    gap: 1rem;
}

.fun-fact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.fact-icon {
    font-size: 2rem;
}

.fact-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.about-content {
    padding: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.info-boxes {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-box-students {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #004E89;
}

.info-box-schools {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-left: 5px solid #06A77D;
}

.info-box-icon {
    font-size: 3rem;
}

.info-box-content h6 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-box-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #004E89 0%, #002d4f 100%);
}

.cta-card {
    background: white;
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    color: #004E89;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #cc4a1f 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    color: white;
}

.cta-stars {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.star {
    font-size: 2rem;
    animation: twinkle 2s infinite;
}

.star:nth-child(2) {
    animation-delay: -0.7s;
}

.star:nth-child(3) {
    animation-delay: -1.4s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .title-welcome {
        font-size: 1.5rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .kangaroo-mascot img {
        max-width: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}
