/* 
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/

/*  Styles Globales */

:root{

    --color-primary: #4f46e5;
    --color-secondary: #6366f1;
    --color-dark: #111;
    --color-light: #f5f5f5;
    --color-text: #222;
    --radius: 12px;
    --transition: 0.25s ease;
    --max-width: 1200px;
    --section-padding: 80px 20px;

}


/* Reset */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a{
    color: inherit;
    text-decoration: none;
    transition:  var(--transition);

}

body{
     font-family:  "Inter", sans-serif;
     color: var(--color-text);
     background-color: #fff;
     line-height: 1.6;
}


.hero-custom{

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    background: var(--color-dark);
    color: #fff;


    h1{

        font-size: clamp(2,5remm 6vw, 4rem);
        font-weight: 700;
    }
}