/* public/css/landing.css */
/* Estilos para la landing page */

:root {
    --primary-dark: #1e3a23;
    --accent-gold: #fbbf24;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d5a3d 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}

.pricing-card.featured {
    border: 3px solid var(--accent-gold);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.pricing-card .price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card ul li {
    padding: 0.5rem 0;
}

/* Footers & Links */
.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold) !important;
    padding-left: 5px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: white;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(30, 58, 35, 0.95) !important;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero>div {
    animation: fadeInUp 1s ease-out;
}

/* Hero Section Enhancements */
.hero-image-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.main-hero-img {
    position: relative;
    z-index: 2;
    border: 8px solid rgba(255, 255, 255, 0.1);
    max-width: 80%;
}

.floating-animal {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 3;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    user-select: none;
    pointer-events: none;
}

.fa-1 {
    top: -20px;
    left: 0;
    animation: float1 5s ease-in-out infinite;
}

.fa-2 {
    top: 40px;
    right: -10px;
    animation: float2 6s ease-in-out infinite;
}

.fa-3 {
    bottom: 20px;
    left: -20px;
    animation: float3 7s ease-in-out infinite;
}

.fa-4 {
    bottom: -10px;
    right: 20px;
    animation: float1 4.5s ease-in-out infinite reverse;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10px, -20px) rotate(5deg);
    }

    66% {
        transform: translate(-10px, -10px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float2 {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-15px, 15px);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

@keyframes float3 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .floating-animal {
        width: 70px;
        height: 70px;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero .d-flex {
        justify-content: center;
    }

    .main-hero-img {
        max-width: 100%;
    }
}

/* Download Section */
.download-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.bg-secondary-subtle {
    background-color: #f8f9fa !important;
}

.mb-2 .text-muted {
    color: white !important;
}

.fas.fa-envelope.me-2.text-warning {
    color: white !important;
}

.fas.fa-phone-alt.me-2.text-warning {
    color: white !important;
}

.contact-info {
    color: white !important;
}

.footer-links {
    color: white !important;
}

.text-white {
    color: white !important;
}

.text-muted {
    color: white !important;
}

.col-lg-2.offset-lg-1 {
    color: white !important;
}