/*
Theme Name: Canogec Wow Theme
Theme URI: https://aicontext.eu
Author: aicontext.eu
Description: Tema premium bilingüe de alto impacto visual para Canogec. Optimizado para RGPD con fuentes de sistema.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: canogec-wow
*/

:root {
    --primary: #00bcd4;
    --secondary: #b8d432;
    --dark: #0a0a0a;
    --gray: #1a1a1a;
    --white: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.lang-en .esp, body.lang-es .eng { display: none; }

/* Header */
.site-header {
    position: fixed;
    top: 0; width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}
.site-logo img { height: 45px; }
.nav-links a { color: #fff; text-decoration: none; margin-left: 25px; font-weight: 600; text-transform: uppercase; font-size: 13px; }
.lang-switcher { margin-left: 25px; border-left: 1px solid #333; padding-left: 20px; display: inline-flex; gap: 10px; }
.lang-switcher span { cursor: pointer; font-weight: 800; font-size: 12px; }

/* Sections */
section { padding: 100px 10%; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; position: relative; }
.hero { height: 100vh; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; text-align: center; }
.hero::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.7); }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

h1 { font-size: clamp(3rem, 8vw, 5rem); line-height: 1; text-transform: uppercase; margin-bottom: 20px; }
h2 { font-size: 42px; text-transform: uppercase; margin-bottom: 40px; color: var(--primary); }

/* Grid Pillars */
.grid-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: var(--gray); padding: 40px; border-radius: 15px; border-bottom: 4px solid var(--secondary); transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.card i { font-size: 40px; color: var(--secondary); margin-bottom: 20px; display: block; }

/* Team */
.team-list { list-style: none; margin-top: 30px; }
.team-list li { padding: 15px 0; border-bottom: 1px solid #333; font-size: 18px; }
.team-list li strong { color: var(--primary); }

/* Contact */
.footer-contact { background: #050505; padding: 100px 10% 50px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { background: #111; border: 1px solid #333; padding: 15px; color: #fff; border-radius: 5px; }
.btn { background: var(--secondary); color: #000; padding: 15px; border: none; font-weight: 800; text-transform: uppercase; cursor: pointer; border-radius: 5px; }

.legal { margin-top: 80px; border-top: 1px solid #222; padding-top: 30px; font-size: 13px; color: #666; display: flex; justify-content: space-between; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .site-header { flex-direction: column; gap: 15px; }
}
