/* MODERN CSS WITH GLASSMORPHISM AND PREMIUM AESTHETICS */
:root {
    --bg-color: #0d0f1a;
    --text-primary: #f0f2f5;
    --text-secondary: #a3b1c6;
    --primary-color: #00d2ff;
    --secondary-color: #3a7bd5;
    --accent-color: #ff007f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background animated orbs for glassmorphism context */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--secondary-color);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

.highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Glassmorphism Styles */
.glass-panel, .glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.glass-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.3);
}

/* Typography & Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 30px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    border-radius: 0; /* Full width edge to edge */
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.hero-image {
    padding: 20px;
    border-radius: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

/* General Sections */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Cards */
.item-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(0,0,0,0.2);
}

.image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 15px;
}

.item-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #fff;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Beneficios Extra */
.beneficios {
    margin: 80px 20px;
    padding: 80px 40px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    margin-top: 100px;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-legal h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-legal ul {
    list-style: none;
}

.footer-legal li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-legal strong {
    color: #fff;
    margin-right: 8px;
}

.legal-placeholder {
    font-style: italic;
    color: var(--accent-color);
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 3.2rem;
    }
    .hero-text p {
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
