/* --- THEME / DESIGN TOKENS --- *
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:wght@400;500;600&display=swap');
*/




@font-face {
  font-family: 'DynaPuff';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/aquayi-files/fonts/dynapuff-v9-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Gabarito';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/wp-content/aquayi-files/fonts/Gabarito-VariableFont_wght.woff2') format('woff2');
}
/*
@font-face {
  font-family: 'Google Sans Flex';
  font-style: normal;
  font-weight: 400;  
  font-display: swap;
  src: url('/wp-content/aquayi-files/fonts/google-sans-flex-v15-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;  
  font-display: swap;
  src: url('/wp-content/aquayi-files/fonts/manrope-latin-500-normal.woff2') format('woff2');
}



@font-face {
  font-family: "Google Sans Flex";
  font-weight: 600;
  font-display: swap;
  src: url('/wp-content/aquayi-files/fonts/google-sans-flex-600.woff2') format('woff2');
}*/

@font-face {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-display: swap;
  src: url('/wp-content/aquayi-files/fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-display: swap;
  src: url('/wp-content/aquayi-files/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2');
}



:root {
  --font-brand-title: 'DynaPuff', sans-serif;
  --font-title: 'Gabarito', sans-serif;
  /*--font-body: 'Manropex','Plus Jakarta Sans','Google Sans Flex', times;*/
  --font-body: 'Plus Jakarta Sans',sans-serif;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  --webkit-text-size-adjust: 100%;
}


/* --- GLOBAL TYPOGRAPHY --- */
body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.8rem;     
  line-height: 1.55;
}


@media (max-width: 600px) {
  body {
    font-size: 4.5vw;
  }
}


strong, b {
  font-weight: 700;
  
}





:root {
  /* BACKGROUNDS */

  --bg-header: #ebe4dd;
  --bg-site1: #f7f6f4;

  --footer-bg: #44362f;
  --bg-site: #f5f1ee;

  --bg-card: #FFFFFF;
  --bg-color-alt: #f1f0ee;
  /* SERVICES */
   --bg-service-header2:#d5cbc2;
   --bg-service-header:#595148;
   
   --bg-service-content2:#fefefe;
  --bg-service-content:#dbcfc2;



  /* BUTTONS */
  --bg-button: #837c75;
  --bg-button2: #9f978f;

  /* TEXT */
  --text-primary: #2C2C2C;
  --text-secondary: #555555;

  /* ACCENT */
  --accent: #8c847c;
  --accent-hover: #7a7a7a;

  /* BORDERS & SHADOWS */
  --border-soft: rgba(0, 0, 0, .08);
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);

  /* RADIUS */
  --radius-card: .7rem;

  --card-bg: #FFFFFF;
  --card-radius: .9rem;
  --card-padding: 1.5rem;
  --card-border: rgba(0,0,0,0.06);
  --card-shadow: 0 4px 12px rgba(0,0,0,0.05);

    

  --space-section-mobile: 4rem;
  --space-section-desktop: 8rem;

  --gutter-mobile: 1.2rem;  /* 16px */
  --gutter-tablet: 2rem;    /* 20px */
  --gutter-desktop: 3.2rem; /* 32px */
}








body {
  background: var(--bg-site);
  color: var(--text-primary);
  /*margin: 1rem;*/
  margin:0;
}




form {
    --form-radius: 6px;
    --form-border: 1px solid #ccc;

    font-family: var(--font-body);
    
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


form input,
form select,
form textarea {
    border: var(--form-border);
    border-radius: var(--form-radius);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 1.7rem;
}





h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  line-height: 1.15;
}

/* Headings in rems (relative to base) */
h1 { font-size: 3rem; font-weight: 400; } /* 36px */
h2 { font-size: 2.7rem; font-weight: 400;}                    /* 28px */
h3 { font-size: 2.3rem; font-weight: 400;}     



p {
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    padding-inline-start: 30px;
    unicode-bidi: isolate;
}

/* --- GLOBAL LINKS --- */
a {
  color: var(--accent);
  transition: color .25s ease;
  /*border-bottom: 1px dotted;
  text-decoration: none;*/
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25ch;
}

a:hover {
  color: var(--accent-hover);
  /*border-bottom: 1px solid;*/
  text-decoration-style: dashed;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}




.mybutton {
  display: flex;
  align-items: center;   /* centra verticalmente */
  justify-content: center; /* centra horizontalmente */
  height: 2rem;          /* tu altura fina */
  line-height: normal;
  padding: 0.8rem 1.4rem;
  margin: 0.8rem 1rem;

  /*background-color: var(--bg-button);*/

  background: linear-gradient(
    180deg,
    var(--bg-button) 0%,
    var(--bg-button2) 100%
  );
  color: white;
  border-radius: 1rem;
  min-width: 14rem;
  max-width: 27rem;

  text-decoration: none;
  cursor: pointer;
}

.mybutton2 {
    font-size: 15px;
    background: -webkit-linear-gradient(top, rgb(184, 195, 153), rgb(139, 159, 108));
    border-width: 1px;
    border-style: solid;
    border-color: rgb(139, 159, 108);
    border-image: initial;
    text-decoration: none;
}

/* Hover estilo tierra */
.mybutton:hover,
.mybutton:active {
  background: linear-gradient(
    180deg,
    var(--bg-button2) 0%,
    var(--bg-button) 100%
  );
  color: white;
  border-radius: 12px;
}

/* --- CARD COMPONENT (VISUAL ONLY) --- */
.card {
  margin-top: 2rem;
  margin-bottom: 4rem;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card img {
    border-radius: 25px;
    margin: 2px;
    max-width: 40rem;
    width: 100%;
}

@media (max-width: 520px) {
  .card img {
    max-width: 28rem;
  }

  }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.7s ease-out;
}

.scroll-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- FIX iOS SAFARI NAV ICON SPACING --- */

/* Evita que iOS escale los rem/font-size */
html {
  -webkit-text-size-adjust: 100% !important;
}


/* Normaliza iconos y enlaces del nav */
.header-inner .main-nav .menu-item a,
.header-inner .main-nav .menu-item i,
.header-inner .main-nav .menu-item svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem; /* was 16px; now 1.6rem (16px) keeps parity with iOS note */
  line-height: 1;
  margin: 0;
  padding: 0;
}