/* ============================================
   BASE CSS 
*/
:root {
    --purple: #5144A6;
    --yellow: #F2BE22;
    --blue: #6CA6D9;
    --green: #6CD34D;
    --orange: #FF8A3D;
    --pink: #C05C80;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --bg-light: #F5F7FB;
    --white: #FFFFFF;
    --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-md: 0 20px 40px rgba(0,0,0,0.1);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 30px;
}

/* Reset - GARANTE QUE NÃO HAJA MARGENS/PADDINGS QUE CAUSEM FRESTAS BRANCAS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE - Poppins para textos */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #5144A6;
    background-color: var(--white);
    line-height: 1.6;
    letter-spacing: 0.2px;
    overflow-x: hidden;  /* ← LINHA ADICIONADA para evitar scroll lateral */
    margin: 0;
    padding: 0;
    width: 100%;
}

/* TÍTULOS - Fredoka */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 .highlight {
    color: var(--yellow);
}

h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* PARÁGRAFOS - Poppins 400 */
p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* LINKS */
a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* LISTAS */
ul, ol {
    list-style: none;
}

ul li, ol li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

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

/* CONTAINER - CENTRALIZADOR COM LARGURA MÁXIMA */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* SECTION SPACING */
section {
    padding: 25px 0;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* TAGS ESPECIAIS */
.offer-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--purple);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    font-family: 'Fredoka', sans-serif;
}

.urgency-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--purple);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Fredoka', sans-serif;
}

/* Botão light */
.btn-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-light:hover {
    background: var(--white);
    color: var(--purple);
}

/* ANIMAÇÕES PREMIUM  */
[data-aos] {
    transition-property: opacity, transform, filter !important;
    transition-duration: 0.45s !important;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: opacity, transform, filter;
}


[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    filter: blur(3px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}


[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-20px) scale(0.97);
    filter: blur(3px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}


[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(20px) scale(0.97);
    filter: blur(3px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}


[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.92);
    filter: blur(2px);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}


[data-aos="scale-up"] {
    opacity: 0;
    transform: scale(0.85);
}

[data-aos="scale-up"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

.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;
}