/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Template: twentytwentyfive
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.0.1746556413
Updated: 2025-05-06 18:33:33
*/

/* ————— Importar la fuente Poppins ————— */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

/* ————— Estilos globales ————— */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #1D1D1D;
}

/* ————— Header ————— */
header {
  background-color: #06327d;
  color: #FFFFFF;
  padding: 15px 0;
  border-bottom: 3px solid #ffd034;
}

header > div {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ————— Navegación (oculta) ————— */
.main-nav {
  display: none;
}

/* ————— Hover states (de tu <style>) ————— */
.main-nav a:hover {
  opacity: 0.8;
}

.plan-card a:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
  opacity: 1;
  text-decoration: underline;
}

.client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ————— Botón “Ver Planes Semanales” ————— */
a[href="#planes"] {
  background-color: #ffd034;
  color: #06327d;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  display: inline-block;
  font-size: 0.9em;
}

/* ————— Toggle móvil ————— */
header button {
  background: none;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 5px 10px;
  font-size: 1.2em;
  cursor: pointer;
  display: none;
}