/* ===========================================================
   Rapiruedas Perú SAC — Estilos globales
   Paleta basada en el banner y el logo:
     Rojo marca:      #E5232B
     Azul marino:     #1B2A5E
     Azul oscuro:     #0F1A40
     Rojo oscuro:     #B8161D
     Gris texto:      #2A2A2A
     Gris claro bg:   #F4F6F9
     Blanco:          #FFFFFF
   =========================================================== */

:root {
  --rojo: #E5232B;
  --rojo-oscuro: #B8161D;
  --azul: #1B2A5E;
  --azul-oscuro: #0F1A40;
  --azul-claro: #2A3F8F;
  --texto: #2A2A2A;
  --texto-claro: #5A5A5A;
  --bg-claro: #F4F6F9;
  --blanco: #FFFFFF;
  --sombra: 0 8px 24px rgba(15, 26, 64, 0.12);
  --sombra-fuerte: 0 12px 36px rgba(15, 26, 64, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blanco);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .top {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--rojo);
  font-weight: 700;
  margin-bottom: 4px;
}

.brand-text .name {
  font-size: 22px;
  font-weight: 800;
  color: var(--azul);
  letter-spacing: 0.5px;
}

.brand-text .tagline {
  font-size: 10px;
  color: var(--texto-claro);
  margin-top: 2px;
  font-style: italic;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav a {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--azul);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav a:hover {
  background: var(--bg-claro);
  color: var(--rojo);
}

.nav a.active {
  background: var(--rojo);
  color: var(--blanco);
}

.nav-cta {
  background: var(--rojo);
  color: var(--blanco) !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.nav a.nav-cta:hover,
.nav-cta:hover {
  background: var(--rojo-oscuro) !important;
  color: var(--blanco) !important;
  box-shadow: 0 6px 16px rgba(229,35,43,0.5);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--azul);
  cursor: pointer;
}

/* ================== HERO ================== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15,26,64,0.92) 0%, rgba(27,42,94,0.85) 100%),
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(229,35,43,0.08) 40px 80px);
  color: var(--blanco);
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229,35,43,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--rojo) 0%, var(--rojo) 50%, var(--azul) 50%, var(--azul) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(229,35,43,0.15);
  border: 1px solid var(--rojo);
  color: var(--rojo);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 .accent { color: var(--rojo); }

.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--rojo);
  color: var(--blanco);
}

.btn-primary:hover {
  background: var(--rojo-oscuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229,35,43,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--blanco);
  border-color: var(--blanco);
}

.btn-secondary:hover {
  background: var(--blanco);
  color: var(--azul);
}

.btn-solid {
  background: var(--azul);
  color: var(--blanco);
}

.btn-solid:hover {
  background: var(--azul-oscuro);
  transform: translateY(-2px);
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 32px;
}

.hero-card h3 {
  color: var(--rojo);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-card ul { list-style: none; }

.hero-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
}

.hero-card li:last-child { border-bottom: none; }

.hero-card li::before {
  content: '✓';
  color: var(--rojo);
  font-weight: 800;
  font-size: 18px;
}

/* ================== FEATURES BAR ================== */
.features-bar {
  background: var(--azul);
  color: var(--blanco);
  padding: 32px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: left;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--rojo);
}

.feature strong {
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ================== SECTIONS ================== */
section { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title .eyebrow {
  display: inline-block;
  color: var(--rojo);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 40px;
  color: var(--azul);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-title h2 .accent { color: var(--rojo); }

.section-title p {
  color: var(--texto-claro);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}

/* ================== SERVICIOS ================== */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.servicio-card {
  background: var(--blanco);
  border: 1px solid #E5E9F0;
  border-radius: 14px;
  padding: 32px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--rojo);
  transition: height 0.3s;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra);
  border-color: var(--rojo);
}

.servicio-card:hover::before { height: 100%; }

.servicio-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  margin-bottom: 20px;
}

.servicio-icon svg { width: 30px; height: 30px; }

.servicio-card h3 {
  font-size: 19px;
  color: var(--azul);
  margin-bottom: 12px;
  font-weight: 700;
}

.servicio-card p {
  color: var(--texto-claro);
  font-size: 15px;
}

/* ================== OFRECEMOS ================== */
.ofrecemos {
  background: var(--bg-claro);
}

.ofrecemos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.ofrecemos-item {
  background: var(--blanco);
  padding: 28px;
  border-radius: 12px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.ofrecemos-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
}

.ofrecemos-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--rojo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
}

.ofrecemos-icon svg { width: 26px; height: 26px; }

.ofrecemos-item h4 {
  font-size: 17px;
  color: var(--azul);
  margin-bottom: 6px;
}

.ofrecemos-item h4 strong { color: var(--rojo); }

.ofrecemos-item p {
  color: var(--texto-claro);
  font-size: 14px;
}

/* ================== COBERTURA ================== */
.cobertura {
  background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul) 100%);
  color: var(--blanco);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cobertura::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent 0 60px, rgba(229,35,43,0.06) 60px 120px);
}

.cobertura .container { position: relative; }

.cobertura h2 {
  font-size: 38px;
  margin-bottom: 14px;
  font-weight: 800;
}

.cobertura h2 .accent { color: var(--rojo); }

.cobertura p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 32px;
}

.cobertura-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.cobertura-map .pulse {
  width: 12px;
  height: 12px;
  background: var(--rojo);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 0 0 rgba(229,35,43,0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229,35,43,0.7); }
  70% { box-shadow: 0 0 0 18px rgba(229,35,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,35,43,0); }
}

/* ================== PAGE HEADER (no-inicio) ================== */
.page-header {
  background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul) 100%);
  color: var(--blanco);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 50px, rgba(229,35,43,0.05) 50px 100px);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rojo) 0%, var(--rojo) 50%, var(--blanco) 50%, var(--blanco) 100%);
}

.page-header .container { position: relative; }

.page-header h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header h1 .accent { color: var(--rojo); }

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--rojo); }
.breadcrumb a:hover { text-decoration: underline; }

/* ================== CONTACT STRIP ================== */
.contact-strip {
  background: var(--rojo);
  color: var(--blanco);
  padding: 40px 0;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: var(--blanco);
  color: var(--rojo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.contact-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-icon svg { width: 30px; height: 30px; }

.contact-strip-item .label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact-strip-item .value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.contact-strip-item a:hover { text-decoration: underline; }

/* ================== NOSOTROS ================== */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nosotros-text h2 {
  color: var(--azul);
  font-size: 36px;
  margin-bottom: 18px;
  font-weight: 800;
}

.nosotros-text h2 .accent { color: var(--rojo); }

.nosotros-text p {
  color: var(--texto-claro);
  font-size: 16px;
  margin-bottom: 16px;
}

.nosotros-visual {
  position: relative;
  height: 420px;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nosotros-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 30px, rgba(229,35,43,0.1) 30px 60px);
}

.nosotros-visual .big-logo {
  position: relative;
  width: 60%;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
}

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

.value-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--blanco);
  border-radius: 12px;
  border-top: 4px solid var(--rojo);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.value-card:hover { transform: translateY(-4px); }

.value-card .vicon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: var(--bg-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rojo);
}

.value-card .vicon svg { width: 30px; height: 30px; }

.value-card h4 {
  color: var(--azul);
  font-size: 17px;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--texto-claro);
  font-size: 14px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.mv-card {
  background: var(--bg-claro);
  border-left: 5px solid var(--rojo);
  padding: 30px;
  border-radius: 0 12px 12px 0;
}

.mv-card.vision { border-left-color: var(--azul); }

.mv-card h3 {
  color: var(--azul);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 800;
}

.mv-card.vision h3 { color: var(--rojo); }

.mv-card p {
  color: var(--texto-claro);
  font-size: 16px;
}

/* ================== SERVICIO DETALLE ================== */
.servicio-detalle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.servicio-full {
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid #E5E9F0;
  transition: all 0.3s;
}

.servicio-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-fuerte);
}

.servicio-full .head {
  background: var(--azul);
  color: var(--blanco);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.servicio-full .head .head-icon {
  width: 56px;
  height: 56px;
  background: var(--rojo);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.servicio-full .head .head-icon svg { width: 28px; height: 28px; }

.servicio-full .head h3 {
  font-size: 22px;
  font-weight: 800;
}

.servicio-full .body {
  padding: 28px;
}

.servicio-full .body p {
  color: var(--texto-claro);
  margin-bottom: 16px;
  font-size: 15px;
}

.servicio-full .body ul {
  list-style: none;
}

.servicio-full .body ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--texto);
  font-size: 14px;
}

.servicio-full .body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--rojo);
  font-weight: 800;
}

/* ================== CTA FINAL ================== */
.cta-final {
  background: var(--bg-claro);
  text-align: center;
}

.cta-final h2 {
  color: var(--azul);
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 800;
}

.cta-final h2 .accent { color: var(--rojo); }

.cta-final p {
  color: var(--texto-claro);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================== FOOTER ================== */
.site-footer {
  background: var(--azul-oscuro);
  color: var(--blanco);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .brand-logo {
  height: 84px;
  width: 84px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--blanco);
  padding: 6px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; }

.footer-col h4 {
  color: var(--rojo);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

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

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col a:hover { color: var(--rojo); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ================== WHATSAPP FLOTANTE ================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  display: block;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: wp-pulse 2s infinite;
}

@keyframes wp-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float .tip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blanco);
  color: var(--texto);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float .tip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--blanco);
}

.whatsapp-float:hover .tip { opacity: 1; }

/* ================== RESPONSIVE ================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 18px; }
  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-visual { height: 280px; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanco);
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav a { text-align: center; }
  .brand-text .name { font-size: 18px; }
  .brand-text .top { font-size: 10px; }
  .brand-logo { height: 44px; }
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 36px; }
  .section-title h2, .cobertura h2, .cta-final h2, .nosotros-text h2 { font-size: 28px; }
  .page-header h1 { font-size: 32px; }
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-strip-item .value { font-size: 20px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-float .tip { display: none; }
}
