:root {
  /* Tetrachromatic brutalist palette */
  --color-primary: #9328A2;
  --color-primary-dark: #721e7c;
  --color-secondary: #FDC603;
  --color-secondary-dark: #b8960b;
  --color-tertiary: #47b3d8;
  --color-tertiary-dark: #2986ad;
  --color-accent: #1AB15B;
  --color-accent-dark: #15733b;
  --color-light: #fffdf7;
  --color-dark: #1a1a1a;
  --color-bg-gray: #e7e7e7;
  --color-bg-white: #fff;
  --color-bg-black: #111014;
  --color-muted: #eeeeee;
  --color-glass: rgba(255,255,255,0.68);
  --shadow-color: rgba(20,20,20,0.13);

  --gradient-hero: linear-gradient(180deg,rgba(0,0,0,0.7), rgba(40,25,59,0.64));
  --gradient-purple: linear-gradient(110deg, #9328A2 65%, #47b3d8 100%);
  --gradient-tetrachrome: linear-gradient(105deg,#1AB15B 62%,#FDC603 100%);
  --gradient-yellowblue: linear-gradient(92deg,#FDC603 60%,#47b3d8 100%);

  --font-title: 'Manrope', Arial, sans-serif;
  --font-main: 'Rubik', Arial, sans-serif;

  --radius-main: 13px;
  --radius-card: 15px;
  --radius-btn: 8px;

  --transition-main: 0.25s cubic-bezier(.74,0,.35,1.01);
  --transition-btn: 0.18s cubic-bezier(.58,.03,.46,1);

  --danger: #e5484d;
}

/* Global reset & box-sizing */
html { box-sizing: border-box; }
*,*::before,*::after { box-sizing: inherit; }

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  background: var(--color-bg-gray);
  font-size: 1.13rem;
  min-width: 320px;
  margin: 0;
  scroll-behavior: smooth;
}
.container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography */
h1, .title {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.19;
  margin-bottom: 0.75em;
}
h1, h2, h3, h4, h5, h6 {
  text-shadow: 1px 1px 3px rgba(0,0,0,0.07);
}
h2, .subtitle {
  font-family: var(--font-title);
  font-weight: 700;
}
h2.title {
  font-size: 2.5rem !important; 
  margin-bottom: 1.4rem;
}

p, span, li, .label {
  font-family: var(--font-main);
  color: var(--color-dark);
  font-size: 1.07rem;
  line-height: 1.66;
}

@media (max-width: 900px) {
  h1, .title { font-size: 2.15rem !important; }
  h2.title { font-size: 1.65rem !important; }
}

@media (max-width: 760px) {
  h1, .title { font-size: 1.45rem !important; }
  h2.title { font-size: 1.17rem !important; }
  .container { padding: 0.75rem;}
}

/*==============  BRUTALIST LAYOUT & SECTION ===============*/
section.section {
  border-top: 6px solid var(--color-primary);
  padding: 3.2rem 0 3.2rem 0;
  position: relative;
  z-index: 1;
}
section.section:nth-of-type(even) {
  border-left: 6px solid var(--color-secondary);
  border-top: none;
}
section#hero {
  border: none;
  margin: 0; padding: 0;
}
/* Padding for terms/privacy */
.page-legal {
  padding-top: 100px !important;
}

/*==============  HEADER & NAVBAR ===============*/
header {
  box-shadow: 0 5px 0 var(--color-primary);
  position: sticky;
  top: 0;
  background: var(--color-bg-black);
  z-index: 1001;
}
.navbar {
  font-family: var(--font-title);
  font-weight: 600;
  border-bottom: solid 3px var(--color-secondary);
  background: transparent;
}
.navbar-item {
  font-family: var(--font-title) !important;
  color: #fff !important;
  transition: color var(--transition-main);
  font-size: 1.1rem;
}
.navbar-item:hover, .navbar-item:focus {
  color: var(--color-accent) !important;
  background: none !important;
  text-decoration: underline;
}
.navbar-burger span, .navbar-burger {
  background: var(--color-secondary);
  box-shadow: 2px 2px 0 var(--color-primary);
}

@media screen and (max-width: 900px){
  .navbar-menu {
    background: var(--gradient-purple);
    border-radius: var(--radius-main);
    margin-top: 9px;
    box-shadow: 2px 6px 15px rgba(49,49,49,0.15);
  }
}
@media (max-width: 760px) {
  header {
    padding: 0;
  }
  .navbar-menu {
    text-align: left !important;
    background: var(--color-bg-black) !important;
    border-left: 2px solid var(--color-accent);
    box-shadow: 1px 3px 12px rgba(35,14,69,0.15);
  }
}

/*==============  HERO STYLES  ===============*/
section#hero {
  min-height: 0;
}
#hero .hero-body {
  padding: 4.5rem 0 4rem 0 !important;
  min-height: 440px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}
#hero h1,
#hero .title, #hero .subtitle, #hero p, #hero a, #hero span {
  color: #fff;
  text-shadow: 1px 2px 10px rgba(0,0,0,0.39),0 0 7px #000;
}
#hero .subtitle,
#hero p.subtitle {
  background: linear-gradient(90deg,rgba(0,0,0,0.42),rgba(0,0,0,0.09));
  border-radius: var(--radius-main);
  color: #fff !important;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 25px rgba(37,37,37,0.23);
}
#hero a.button {
  box-shadow: 2px 5px 0 0 var(--color-secondary-dark);
  transition: background var(--transition-btn), transform 0.16s;
  border: none;
}
#hero a.button:hover {
  background: linear-gradient(90deg,var(--color-primary-dark),var(--color-accent-dark));
  color: #fff;
  transform: scale(1.04) translateY(-3px);
}

/*==============  BRUTALIST CARDS ===============*/
.card, .item, .testimonial, .team-member, .product-card {
  background: var(--color-bg-white);
  border: 3px solid var(--color-primary);
  box-shadow:
    4px 8px 0 0 var(--color-secondary),
    0 1.5px 15px var(--shadow-color);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-bottom: 0.7em;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
  margin-bottom: 1.13rem;
}
.card:hover, .item:hover, .testimonial:hover, .team-member:hover {
  box-shadow: 6px 22px 0 0 var(--color-tertiary), 0 6px 35px rgba(40,18,102,0.12);
  transform: translateY(-5px) scale(1.022);
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2em 0.6em 0.6em 0.5em;
  background: transparent;
  width: 100%;
}
@media (max-width: 900px) {
  .card, .item { padding-bottom: 0.45rem;}
}
@media (max-width: 510px) {
  .card {
    border-radius: 7px;
    box-shadow: 3px 7px 0 0 var(--color-tertiary), 0 1.5px 8px var(--shadow-color);
    padding-bottom: 0.2rem;
  }
}

/*==============  IMAGE CONTAINERS & CARDS ===============*/
.card-image, .image-container, .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 195px;
  width: 100%;
  overflow: hidden;
  background: var(--color-muted);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  margin-bottom: 0;
  position: relative;
  box-shadow: none;
}
.card-image img, .image-container img, .product-image img {
  width: 95%;
  height: 100%;
  max-width: 400px;
  min-width: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  background: #e1e1e1;
  transition: filter 0.11s;
}
.card-image img:hover, .image-container img:hover {
  filter: brightness(0.93) grayscale(5%);
}
@media (max-width: 420px) {
  .card-image, .image-container, .product-image {height:110px;}
}

/*==============  FORM & INPUTS ===============*/
input, textarea, select, button, .input, .textarea {
  font-family: var(--font-main);
  color: var(--color-dark);
  border-radius: var(--radius-main);
  border: 2px solid var(--color-tertiary-dark);
  background: rgba(255,255,255,0.86);
  box-shadow: 1px 4px 0 var(--color-tertiary);
  font-size: 1.07rem;
  transition: border .13s, box-shadow .13s, background .16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 2.5px solid var(--color-accent-dark);
  background: #e6ffe6;
}
.field {
  margin-bottom: 1.4rem;
}

/*==============  GLOBAL BUTTONS ===============*/
.btn, button, input[type="submit"], .button {
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  box-shadow:
    3px 3px 0 0 var(--color-accent-dark),
    0 1.5px 10px var(--shadow-color);
  background: linear-gradient(90deg,var(--color-primary),var(--color-secondary));
  color: #fff;
  font-size: 1.08rem;
  padding: 0.85em 2.25em;
  letter-spacing: 0.7px;
  margin-top: 0.4em;
  margin-bottom: 0.14em;
  transition: background var(--transition-btn),box-shadow var(--transition-btn),transform 0.11s;
  outline: none;
}
.btn:hover, button:hover, input[type="submit"]:hover, .button:hover,
.btn:focus, button:focus, input[type="submit"]:focus, .button:focus {
  background: linear-gradient(90deg,var(--color-accent-dark),var(--color-primary-dark));
  color: #fff;
  box-shadow:
    5px 5px 0 0 var(--color-tertiary-dark),
    0 2.5px 15px var(--shadow-color);
  transform: scale(1.038) translateY(-2px);
}

/* =========== LINK / "read more" STYLES =========== */
a, a:visited {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 500;
  transition: color .15s;
}
a:hover, a:focus {
  color: var(--color-accent-dark);
  background: linear-gradient(90deg, var(--color-tertiary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline wavy 2.5px var(--color-accent);
}
.read-more, .leer-mas {
  font-family: var(--font-title);
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.7px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  margin-top: 1em;
  border-bottom: 2.5px solid var(--color-secondary);
  transition: color .17s;
}
.read-more:hover {
  color: var(--color-accent-dark);
  border-color: var(--color-primary-dark);
}

/*==============  COLUMNS (GRID / FLEX HELPER) ===============*/
.columns.is-centered {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.column.is-two-thirds {
  max-width: 66.6%;
  flex: 0 0 66.6%;
}
@media (max-width:1000px) {
  .column.is-two-thirds {max-width:100%;}
}

/*==============  FOOTER ===============*/
.footer {
  background: var(--color-bg-black);
  color: #fff;
  font-size: 1.08rem;
  border-top: 6px solid var(--color-primary);
  text-align: center;
  box-shadow: 0 -5px 0 var(--color-secondary);
  margin-top: 2.5rem;
  letter-spacing: 0.3px;
  padding-bottom: 2.2rem !important;
}
.footer .container {
  padding: 0;
}
.footer p, .footer strong, .footer a, .footer span {
  color: #fff;
  font-family: var(--font-title);
}
.footer a {
  color: var(--color-accent);
  text-decoration: underline solid 2.5px var(--color-secondary);
  font-weight: bold;
  padding: 0 0.3em;
  font-size: 1.09em;
}
.footer a:hover, .footer a:focus {
  color: var(--color-secondary);
  background: none;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.12);
}
.footer span {
  font-size: 0.95em;
}
.footer strong {
  color: var(--color-secondary);
}

@media (max-width: 650px) {
  .footer {padding: 1.5rem 0.4rem;}
}
/* Social text links */
.footer .social-text {
  font-size: 1rem;
  color: var(--color-secondary);
  font-family: var(--font-title);
  margin-left: 5px;
  margin-right: 6px;
}

/* Social "icons" via bold first/last letter as visual hint (no images/icons used) */
.footer .footer-social-link {
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1.2px;
  padding: 0 0.3em;
}
.footer .footer-social-link:hover,
.footer .footer-social-link:focus {
  color: var(--color-secondary);
  text-decoration: underline double;
}

/*==============  ENLACE EXTERNOS (MEDIA/RESOURCES) ===============*/
.section#enlaces-externos .box {
  border: 2px dashed var(--color-tertiary-dark);
  box-shadow: 4px 7px 0 0 var(--color-primary);
  background: var(--color-bg-white);
}

/*==============  GALLERY CARD STYLES ===============*/
#gallery .columns {
  gap: 1.1em 2.0em;
}
#gallery .card, #gallery .image-container {
  background: var(--color-glass);
  border: 2.5px solid var(--color-tertiary-dark);
}
#gallery .card-content {
  padding: 0.8em 0.25em 0.6em 0.25em;
}

/*==============  DRAWN-STYLE (SKETCH/ILLUSTRATIVE) ANIMATIONS ===============*/
@keyframes drawn-border {
  from { box-shadow: 0 0 0 0 var(--color-accent); border-color: transparent;}
  to { box-shadow: 0 7px 0 0 var(--color-accent); border-color: var(--color-primary);}
}
.card, .item, .testimonial, .team-member, .product-card {
  animation: drawn-border 0.5s cubic-bezier(.86,0,.16,1) both;
}
.card-image img, .image-container img, .product-image img {
  transition: box-shadow 0.17s, filter 0.19s;
  box-shadow: 0 2px 12px 1.5px rgba(61, 17, 146, 0.10);
}
.card-image img:hover, .image-container img:hover, .product-image img:hover {
  filter: contrast(1.08) saturate(112%);
  box-shadow: 0 6px 24px 5px rgba(31, 177, 91, 0.10);
}
/* Simulate drawn line on hover for "card" bottom border */
.card:hover::after, .item:hover::after {
  content: '';
  display: block;
  width: 68%;
  margin: 0.5em auto 0 auto;
  border-bottom: 3px dashed var(--color-accent);
  opacity: 0.8;
}

/*==============  PARALLAX HELPERS ===============*/
.has-parallax {
  background-attachment: fixed !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* Dark overlay for text on image backgrounds */
.bg-gradient-dark {
  background: linear-gradient(180deg,rgba(0,0,0,0.5),rgba(0,0,0,0.22));
  mix-blend-mode: multiply;
}

/*==============  GLASSMORPHIC BOXES ===============*/
.glass-box, .box {
  background: rgba(255,255,255,0.90) !important;
  box-shadow: 0 7px 25px 0 var(--shadow-color),0 3px 0 var(--color-accent);
  border-radius: var(--radius-card);
  backdrop-filter: blur(6px);
  border: 1.5px solid var(--color-tertiary);
}

/*==============  BEHIND THE SCENES & PRESS ===============*/
#detras-de-camaras .card,
#press .card,
#stories .card {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 7px 0 var(--color-accent);
  border: 2.5px solid var(--color-primary);
}

/*==============  TESTIMONIALS / CUSTOMER STORIES ===============*/
#stories .card-content,
#press .card-content {
  font-size: 1.13rem;
  color: var(--color-dark);
}

/*==============  SUCCESS PAGE ===============*/
.success-center-page, .success-center-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100vh !important;
  text-align: center;
  flex-direction: column;
}

/*==============  MISCELLANEOUS ===============*/
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.py-6 { padding-top: 3.2rem !important; padding-bottom: 3.2rem !important;}
.text-shadow, .shadow-title {
  text-shadow: 1px 1px 8px rgba(35,18,102,0.17), 0 1px 12px #fff5;
}
.has-text-center, .has-text-centered, .center {
  text-align: center !important;
}
@media (max-width: 700px) {
  .has-text-right { text-align: center !important;}
}

/* ========== SCROLLBAR (minimalist) ========== */
::-webkit-scrollbar {
  width: 8px; background: var(--color-bg-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--color-tertiary-dark);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-accent-dark); }

/*========== PLACEHOLDER COLORS (inputs) ==========*/
input::placeholder,
textarea::placeholder {
  color: #adadad;
  font-weight: 400;
  opacity: 1;
  font-family: var(--font-main);
}

/*========== Cookie pop-up styles ==========*/
#cookie-consent-popup {
  font-family: var(--font-main);
  font-weight: 500;
  background: rgba(27,29,34,0.91);
  color: #fff;
  z-index: 9999;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -7px 21px -4px var(--color-primary-dark);
  letter-spacing: 0.2px;
}
#cookie-consent-popup a, #cookie-consent-popup a:visited {color: var(--color-secondary);}
#cookie-consent-popup button {
  padding: 0.5em 2em;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  background: var(--color-accent);
  color: #fff;
  margin-left: 1.15em;
  margin-top: 0.3em;
  font-family: var(--font-title);
  font-weight: 700;
  border: none;
  letter-spacing: 0.7px;
  box-shadow: 1px 1px 6px #222;
  cursor: pointer;
  transition: background .14s;
}
#cookie-consent-popup button:hover {
  background: var(--color-secondary-dark);
  color: #222;
}
/* Hide Bulma hero footer */
.hero .hero-foot {display: none !important;}

/* Miscellaneous overrides */
ul,ol {
  margin-top: 0.6em;
  margin-bottom: 1.1em;
  padding-left: 1.34em;
}
li {margin-bottom:0.5em;}
/* Remove border from last cards in a row on small screens */
@media screen and (max-width:600px) {
  .card, .item, .testimonial, .team-member, .product-card {
    border-bottom: 2px solid var(--color-accent);
    border-right: none;
    border-left: 1px solid var(--color-primary-dark);
  }
}
.navbar-item {
    color: #423e3e !important;
}
.burger{
  display: none!important;
}