/* ============================================
   Base Styles - Beleza Marcada Admin Hotsite
   ============================================ */

/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables */
:root {
    /* Primary Pink Palette */
    --pink-primary: #FE3D6A;
    --pink-dark: #DF194D;
    --pink-light: #FE3869;

    /* Teal Palette */
    --teal-primary: #19B8B0;
    --teal-light: #31E4CD;
    --teal-accent: #2BE8D0;

    /* Orange Palette */
    --orange-primary: #FEA229;
    --orange-accent: #FE4E27;

    /* Blue Palette */
    --blue-primary: #0542AE;
    --blue-light: #21A9FA;

    /* Navy/Dark Palette */
    --navy-primary: #051021;
    --navy-dark: #030B16;
    --navy-accent: #001A63;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #FAFBFF;
    --gray-100: #F5F7FA;
    --gray-200: #EEF1F7;
    --gray-300: #E4E8F6;
    --gray-600: #7A8599;
    --gray-800: #2F384C;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
    --gradient-pink-teal: linear-gradient(90deg, var(--pink-primary), var(--teal-accent));
    --gradient-sunset: linear-gradient(135deg, var(--pink-light) 0%, var(--orange-primary) 100%);
    --gradient-ocean: linear-gradient(135deg, var(--teal-primary) 0%, var(--blue-primary) 100%);
    --gradient-text: linear-gradient(90deg, var(--pink-primary) 0%, var(--teal-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-accent) 100%);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    /* Animation Timings */
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(5, 16, 33, 0.08);
    --shadow-md: 0 8px 24px rgba(5, 16, 33, 0.12);
    --shadow-lg: 0 16px 48px rgba(5, 16, 33, 0.16);
    --shadow-xl: 0 24px 64px rgba(5, 16, 33, 0.2);
    --shadow-pink: 0 8px 32px rgba(254, 61, 106, 0.3);
    --shadow-teal: 0 8px 32px rgba(25, 184, 176, 0.3);
    --shadow-glow: 0 0 60px rgba(254, 61, 106, 0.2);
}

/* Base Typography */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--gray-600);
}

/* Links */
a {
    color: var(--pink-primary);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

a:hover {
    color: var(--pink-dark);
}

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

/* Utility Classes */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Section Padding */
section {
    padding: var(--space-2xl) 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
