/*
Theme Name: Victoria con Uve
Theme URI: http://localhost/victoriaconv
Author: M'arte
Author URI: http://www.maarte.es
Description: Tema personalizado para victoriaconuve
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: victoriaconuve
*/

:root {
  /* Colores */
  --color-primary: #28E1DA;   /* Color principal */
  --color-secondary: #FF9B26; /* Color secundario */
  --color-accent: #55B4B0;    /* Color de acento */
  --color-orange: #F49E51;      /* Color de texto */
  --color-bg: #B8F6F3;        /* Fondo */
  --color-white: #F8D7B9;  
  --color-white2: #fbfefe;   /* Blanco suave / alternativo */
  --color-text: #2b2b2b;    /* Texto principal */
  --color-bottom:#003f3d;   /* Texto botones */;

  /* Dimensiones y espacios */
  --max-width: 1200px;
  --container-padding: 1rem;
  --radius: 12px;
  --gap: 1.25rem;

  /* Tipografía */
  --font-sans: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --base-font-size: 16px;
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Que html y body ocupen toda la altura */
html, body {
    height: 100%;
    background-color: var(--color-white2);
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    overflow-x: hidden; /* Evita scroll horizontal */
}

/* Para Chrome, Safari y Edge */
html::-webkit-scrollbar, 
body::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Fondo transparente */
}

/* Contenedor principal que cubra toda la pantalla */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    cursor: url('http://localhost/victoriaconv/wp-content/themes/victoriaconuve/assets/img/icons/leaf.png'), auto;
}

p {
  font-family: var(--font-sans);
}
/* WHATSSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  right: 20px;           
  bottom: 20px;         
  width: 60px;           
  height: 60px;
  z-index: 9999;         
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float i {
  color: var(--color-white);
  font-size: 32px;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 55px;
    height: 55px;
  }
}
