/* --- ESTILO MAESTRO DE FLOKI (style.css) - VERSIÓN ESTABLE --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --floki-yellow: #FAC402;
    --floki-dark: #4a4a4c;
    --floki-light: #f9f9f9;
    --white: #ffffff;
    --text-color: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text-color); line-height: 1.6; background-color: var(--white); display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* HEADER */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 700; color: var(--floki-dark); text-transform: uppercase; letter-spacing: 1px; }
.logo span { color: var(--floki-yellow); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; color: var(--floki-dark); font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--floki-yellow); }

/* BOTONES */
.btn { display: inline-block; padding: 12px 30px; border-radius: 50px; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; cursor: pointer; border: none; }
.btn-primary { background-color: var(--floki-yellow); color: var(--floki-dark); box-shadow: 0 4px 6px rgba(250, 196, 2, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(250, 196, 2, 0.5); }
.btn-outline { border: 2px solid var(--floki-dark); color: var(--floki-dark); background: transparent; }
.btn-outline:hover { background: var(--floki-dark); color: var(--white); }

/* HERO SECTIONS */
.hero { background: linear-gradient(135deg, var(--floki-dark) 0%, #2c2c2e 100%); color: var(--white); text-align: center; padding: 120px 0 100px; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero h1 span { color: var(--floki-yellow); }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; color: #ddd; }
.hero-mini { padding: 80px 0; background: var(--floki-dark); color: white; text-align: center; }

/* CARDS & SERVICES */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--white); padding: 40px; border-radius: 15px; border-top: 5px solid var(--floki-yellow); box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; height: 100%; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-10px); }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--floki-dark); }
.card p { color: #666; margin-bottom: 20px; flex-grow: 1; }
.price-tag { font-size: 2rem; font-weight: 700; color: var(--floki-yellow); display: block; margin-bottom: 10px; }
.feature-list li { margin-bottom: 12px; padding-left: 25px; position: relative; color: #555; }
.feature-list li::before { content: "✔"; color: var(--floki-yellow); position: absolute; left: 0; font-weight: bold; }

/* MAPA VISUAL (Versión simple y segura) */
.map-visual { text-align: center; background: var(--floki-light); }
.chile-graphic { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.zone-badge { background: white; padding: 15px 30px; border-radius: 10px; border-left: 5px solid var(--floki-yellow); box-shadow: 0 4px 10px rgba(0,0,0,0.05); font-weight: 600; color: var(--floki-dark); }
.zone-remote { background: var(--floki-dark); color: var(--floki-yellow); border: none; }

/* FOOTER */
footer { background-color: var(--floki-dark); color: white; padding: 60px 0 20px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--floki-yellow); margin-bottom: 20px; }
.footer-col a:hover { color: var(--floki-yellow); }
.copyright { text-align: center; border-top: 1px solid #666; padding-top: 20px; color: #999; font-size: 0.9rem; }

/* WHATSAPP */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 100; transition: 0.3s; }
.whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
    .grid-3 { grid-template-columns: 1fr; }
}