/* Importación de fuente para que funcione en Hostinger */ @import url('https://fonts.googleapis.com'); :root { --accent: #fe5000; --bg: #fdfaf5; /* Crema claro */ --bg-alt: #f5f0e6; /* Crema contraste */ --card-bg: #ffffff; /* Blanco */ --text-main: #1a1a1c; /* Texto casi negro */ --text-muted: #4a4d55; /* Texto secundario oscuro */ --border-subtle: #e2ddd2; --btn-bg: #fe5000; --btn-text: #ffffff; --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.08); } *, *::before, *::after { box-sizing: border-box; } html, body { margin: 0; padding: 0; background-color: var(--bg); } body { font-family: "Comfortaa", cursive, sans-serif; color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; } /* Layout base */ .container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; } .section { padding: 4.5rem 0; } .section-alt { background-color: var(--bg-alt); } /* Header */ .site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(18px); background: rgba(253, 250, 245, 0.9); border-bottom: 1px solid var(--border-subtle); } .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0.5rem; } .logo-main { font-weight: 700; letter-spacing: 0.06em; font-size: clamp(1.1rem, 2.6vw, 1.9rem); text-transform: uppercase; color: var(--text-main); } .logo-sub { font-weight: 400; font-size: 0.8rem; color: var(--text-muted); } .accent { color: var(--accent); } .main-nav { display: flex; gap: 1.5rem; font-size: 0.85rem; } .main-nav a { color: var(--text-muted); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; position: relative; } .main-nav a:hover { color: var(--text-main); } .main-nav a::after { content: ""; position: absolute; left: 0; bottom: -0.35rem; width: 0; height: 2px; background: var(--accent); transition: width 0.2s ease-out; } .main-nav a:hover::after { width: 100%; } /* Hero */ .hero { padding: 4.5rem 0 3.5rem; } .hero-inner { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr); gap: 2.5rem; align-items: center; } .hero-text h1 { font-size: 2.4rem; line-height: 1.2; margin: 0 0 1rem; color: var(--text-main); } .hero-text p { margin: 0 0 1.25rem; color: var(--text-muted); } .hero-bullets li { margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.95rem; } .btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 0.8rem 1.6rem; border-radius: 999px; background: var(--btn-bg); color: var(--btn-text); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; box-shadow: 0 8px 20px rgba(254, 80, 0, 0.25); border: none; transition: all 0.12s ease-out; } .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 25px rgba(254, 80, 0, 0.4); background: #ff6a26; } .hero-card { background: var(--card-bg); border-radius: 1.4rem; padding: 1.8rem 1.6rem; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-soft); } .hero-card h2 { margin-top: 0; margin-bottom: 0.75rem; font-size: 1.2rem; color: var(--text-main); } .hero-card p { margin: 0 0 0.75rem; font-size: 0.95rem; color: var(--text-muted); } .hero-note { font-size: 0.85rem; color: var(--accent); font-weight: 700; } /* Secciones generales */ .section h2 { font-size: 1.7rem; margin: 0 0 1rem; color: var(--text-main); } .section p { color: var(--text-muted); } /* Cards */ .cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.8rem; margin-top: 1.5rem; } .card { background: var(--card-bg); border-radius: 1.2rem; padding: 1.5rem 1.4rem; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-soft); } .card h3 { color: var(--text-main); margin-top: 0; } .card li { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; } /* Contacto */ .contact-panel { background: var(--card-bg); border-radius: 1.2rem; padding: 1.5rem 1.4rem; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-soft); } .contact-panel a { color: var(--accent); text-decoration: none; font-weight: 700; } /* Footer */ .site-footer { border-top: 1px solid var(--border-subtle); padding: 1.8rem 0 2.2rem; background: var(--bg-alt); } .footer-inner { text-align: center; font-size: 0.85rem; color: var(--text-muted); } /* Responsivo */ @media (max-width: 960px) { .hero-inner, .cards-grid { grid-template-columns: 1fr; } .header-inner { flex-direction: column; align-items: flex-start; gap: 0.6rem; } .main-nav { flex-wrap: wrap; } } @media (max-width: 600px) { .hero-text h1 { font-size: 1.8rem; } .btn-primary { width: 100%; text-align: center; } }