
/* 
 ROOT ELEMENTS 
*/
:root {

  /* brand web colors */
    --pink-atara: #ff4f66;
    --pink-hover: #EB1538;
    --green-atara:hsl(157, 45%, 47%);
    --blue-atara: hsl(222, 72%, 69%);
    --cobre-atara: hsl(33, 48%, 68%);
    --curuba-atara: hsl(32, 58%, 90%); 
    --black-atara: hsl(0, 0%, 14%) ;

    --ff-accent: 'Barlow Semi Condensed', sans-serif;
    --ff-base: 'Barlow', sans-serif;

    /* --ff-accent: 'Literata', serif;
    --ff-base: 'Literata', serif; */

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 900;

    /* Dynamic font sizes */

    --step--2: clamp(0.69rem, calc(0.66rem + 0.16vw), 0.80rem);
    --step--1: clamp(0.83rem, calc(0.78rem + 0.24vw), 1.00rem);
    --step-0: clamp(1.00rem, calc(0.93rem + 0.37vw), 1.25rem);
    --step-1: clamp(1.20rem, calc(1.09rem + 0.53vw), 1.56rem);
    --step-2: clamp(1.44rem, calc(1.29rem + 0.75vw), 1.95rem);
    --step-3: clamp(1.73rem, calc(1.52rem + 1.05vw), 2.44rem);
    --step-4: clamp(2.07rem, calc(1.79rem + 1.44vw), 3.05rem);
    --step-5: clamp(2.49rem, calc(2.10rem + 1.95vw), 3.82rem);

    /* NUEVAWEB 2026 */

    /* brand web colors */
    --grey-atara:rgb(220, 220, 220);


}   

/* RESET ELEMENTS */

*, ::before, ::after {
    box-sizing: border-box;
}

/* Para resetear margenes y padding y para resetear tamaños de fuentes */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
    color-scheme: dark light;
    scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
    line-height: 1.7;
}

/* Para imágenes responsive  */
img, picture, svg, video {
    display: block;
    max-width: 100%;
}

/* Para manejar más fácil el formato de fuentes dentro de estos elementos */
/* input, textarea, button, select {
    font: inherit;
} */

/*
8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }

h1, h2, h3 {
    line-height: 1.1;
}

a:visited {color:#00ff40;}
a:hover {color:#7ce917;}
a:focus {color:#a15421;}
a:active {color:#1b0606;}

/*
9. Create a root stacking context
*/
  /* #root, #__next {
    isolation: isolate;
  } */

/* ********************************************************** */

  /* general styling */

/* ********************************************************** */


  body {
    font-family: var(--ff-base);
    font-weight: var(--fw-regular);
    color:var(--neutral-900);
    font-size: 0.875rem;
    background: white;
  }

  .hero-container{
    background: #00ff40;
    width:100%;
    display: grid;
    height: 100svh;
    /* align-content: center; */

    position: relative;


    /* justify-content: start; */
  }
  .visual-content{
    background: var(--curuba-atara);
    display:grid;
    align-content: center;
    justify-content:center;

  }

  .data-content{
    background: white;
    display:grid;
    align-content: center;
    justify-content:center;
    text-align: center;
    /* padding: 2rem; */

  }

  
  .hero-ima{
    max-height:250px;
  }

  .data-wraper{
    /* background: white; */
    min-height: 350px;
    width: min(90vw, 600px);
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 2rem 2rem;
    border-radius: 3em;
    
    /* filter: drop-shadow(4px 4px 30px rgba(92, 80, 121, 0.212)); */
    
  }

  .copy-wraper{
    align-self: center;
  }

  .copy-title{
    font-family: var(--ff-base);
    font-size:clamp(1.5rem, 0.5rem + 5vw, 5rem);
    font-weight: 900;
    color: var(--pink-atara);
  }

  .copy-wraper > p{
    font-family: var(--ff-base);
    font-size: clamp(1.2rem, 1vw + 0.65rem, 1.5rem);
    font-weight: 700;
    color: var(--pink-atara);
    line-height: 1.4;
  }

  .insta-wraper{
    position:absolute;
    top: 25px;
    right: 25px;
  }

  .contact-wraper{
    background:var(--pink-atara);
    padding: 0.5rem;
    /* POSITION FIXED EN VEZ DE ABOSOLUTE PARA EVITAR PROBLEMA DE ROTACIÓN DEL MOBILE */
    position:fixed;
    bottom: 25px;
    right: 25px;  
    
    display:grid;
    grid-auto-flow: column;
    /* gap: 1rem; */
    align-items: center;

    border-radius: 3rem;
    filter: drop-shadow(4px 4px 2px rgba(95, 95, 95, 0.342));

    text-decoration: None;
  }

  .wps-paragraph{
    padding-inline: 2rem;
    font-family: var(--ff-base);
    font-size: clamp(1.2rem, 1vw + 0.65rem, 1.5rem);
    font-weight: 700;
    color: white;

    
  }
  .wps-icon{
    width: 2.5rem;

  }

   @media(width >= 650px){

    .contact-wraper{
      padding: 1rem;
      bottom: 40px;
    }
    .wps-footer{
      width: 2rem;
    }
   }

  @media(width >= 1000px){
    .hero-container{
      grid-template-columns: 1fr 1fr;
      grid-auto-flow: column;
    }
    .hero-ima{
    max-height:650px;
  }
    
  }



.icons-wraper{
  /* padding: 1rem; */
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 1rem;

  align-self: end;

  }

.icon-st{
  width: 2rem;
}
