/*
Theme Name: Ultra Rope Child
Theme URI: https://ultrarope.pt
Description: Tema filho personalizado para o site Ultra Rope — Acesso por Corda, Pintura e Impermeabilização. Compatível com Elementor.
Author: Ultra Rope
Author URI: https://ultrarope.pt
Template: hello-elementor
Version: 1.0.0
Text Domain: ultrarope-child
*/

/* ============================================================
   ULTRA ROPE — ESTILOS GLOBAIS
   Importa as fontes e define as variáveis CSS globais
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --navy:       #192532;
  --navy-dark:  #0f1a23;
  --navy-mid:   #1e2e3d;
  --orange:     #F58220;
  --orange-dim: rgba(245,130,32,0.12);
  --grey:       #707070;
  --light:      #f4f4f2;
  --white:      #ffffff;
  --font-head:  'Oxanium', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Reset básico compatível com WordPress */
.ultrarope-page *,
.ultrarope-page *::before,
.ultrarope-page *::after {
  box-sizing: border-box;
}

.ultrarope-page {
  font-family: var(--font-body);
  color: var(--navy);
  overflow-x: hidden;
}

/* Scrollbar personalizada */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* Barra de progresso de scroll */
#ur-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  box-shadow: 0 0 8px rgba(245,130,32,0.6);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Cursor personalizado */
#ur-cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
#ur-cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 2px solid rgba(245,130,32,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}
#ur-cursor-ring.hover {
  width: 48px; height: 48px;
  border-color: var(--orange);
  background: rgba(245,130,32,0.08);
}
#ur-cursor-ring.click {
  width: 20px; height: 20px;
  background: rgba(245,130,32,0.2);
}

/* Ocultar cursor personalizado em dispositivos touch */
@media (hover: none) {
  #ur-cursor-dot, #ur-cursor-ring { display: none; }
}
