/*
Theme Name: Botarga Z Elementor
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: Tema ligero y profesional para Botarga Z, optimizado para Elementor y pensado para landing pages de botargas.
Version: 1.0.0
License: GPLv2 or later
Text Domain: botarga-z-elementor
*/

:root {
  --bz-primary: #0e3f8a;
  --bz-secondary: #ff9f1c;
  --bz-accent: #76c043;
  --bz-text: #10233f;
  --bz-muted: #64748b;
  --bz-bg: #f5f8fc;
  --bz-white: #ffffff;
  --bz-radius: 24px;
  --bz-shadow: 0 14px 40px rgba(14,63,138,.12);
}

html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--bz-text);
  background: var(--bz-bg);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: relative;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(14,63,138,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.branding {
  display: flex;
  align-items: center;
  gap: 14px;
}
.branding img { width: 64px; height: auto; border-radius: 16px; }
.branding-text strong {
  display: block;
  font-size: 1.2rem;
  color: var(--bz-primary);
}
.branding-text span {
  color: var(--bz-muted);
  font-size: .95rem;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.primary-nav a { font-weight: 700; color: var(--bz-primary); }
.header-cta {
  padding: 12px 18px;
  background: var(--bz-accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--bz-shadow);
}
.hero {
  background: linear-gradient(135deg, var(--bz-primary), #46a1ff);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  filter: blur(8px);
}
.hero:before { width: 340px; height: 340px; top: -60px; right: -50px; }
.hero:after { width: 260px; height: 260px; bottom: -40px; left: -40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 76px 0 54px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 4.3rem);
  line-height: 1.02;
  margin: 0 0 18px;
}
.hero p {
  font-size: 1.08rem;
  max-width: 620px;
  color: rgba(255,255,255,.94);
  margin: 0 0 28px;
}
.highlight { color: #ffd54a; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
}
.btn-primary { background: var(--bz-accent); color: #fff; }
.btn-secondary { background: #fff; color: var(--bz-primary); }
.btn:hover { transform: translateY(-2px); }
.hero-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mini-card {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding: 8px;
}
.mini-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
}
.mini-card span {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  margin-top: 6px;
}
.hero-visual img {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.18));
}
.section {
  padding: 76px 0;
}
.section-heading {
  text-align: center;
  margin-bottom: 34px;
}
.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--bz-primary);
  margin: 0 0 12px;
}
.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--bz-muted);
}
.features-grid,
.gallery-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}
.features-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
.card {
  background: var(--bz-white);
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-shadow);
  padding: 24px;
}
.feature-card {
  text-align: center;
}
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(255,159,28,.16), rgba(14,63,138,.12));
}
.feature-card h3,
.gallery-card h3,
.process-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--bz-primary);
}
.feature-card p,
.gallery-card p,
.process-card p,
.contact-card p,
.testimonial-card p { color: var(--bz-muted); margin: 0; }
.gallery-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}
.center-cta { text-align: center; margin-top: 28px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--bz-secondary), #ffcb47);
  margin-bottom: 14px;
}
.split-section {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 34px;
  align-items: center;
}
.split-media img {
  border-radius: 30px;
  box-shadow: var(--bz-shadow);
  width: 100%;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--bz-text);
  font-weight: 600;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(118,192,67,.14);
  color: #3d8e0c;
  font-size: .95rem;
}
.cta-band {
  background: linear-gradient(135deg, var(--bz-primary), #1a56c0);
  color: #fff;
  border-radius: 36px;
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--bz-shadow);
}
.cta-band h2 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-band p { margin: 0 0 20px; color: rgba(255,255,255,.88); }
.contact-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.contact-list strong { color: var(--bz-primary); }
.form-placeholder {
  border: 2px dashed rgba(14,63,138,.18);
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.75);
}
.form-placeholder .fake-field {
  height: 52px;
  border-radius: 14px;
  background: #eef4fb;
  margin-bottom: 14px;
}
.form-placeholder .fake-field.large { height: 140px; }
.site-footer {
  padding: 28px 0 44px;
  color: var(--bz-muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.page-template-elementor-fullwidth .site-header,
.page-template-elementor-fullwidth .site-footer,
.elementor-page .site-header,
.elementor-page .site-footer { display: none; }

@media (max-width: 1024px) {
  .hero-inner,
  .split-section,
  .contact-grid,
  .features-grid,
  .gallery-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-inner,
  .split-section,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual img { margin: 0 auto; }
}

@media (max-width: 767px) {
  .header-inner { flex-wrap: wrap; }
  .primary-nav { width: 100%; order: 3; }
  .primary-nav ul { flex-wrap: wrap; gap: 12px; }
  .features-grid,
  .gallery-grid,
  .process-grid,
  .testimonial-grid,
  .hero-mini-gallery { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 48px; }
  .section { padding: 56px 0; }
  .cta-band { padding: 32px 20px; }
}

.site-header + main {
  padding-top: 0;
  margin-top: 0;
}
.admin-bar .site-header {
  top: 0;
}
