:root {
    /* Colors */
    --color-primary: rgb(206, 31, 202); /* Pink */
    --color-primary-hover: rgb(180, 25, 175);
    --color-secondary: rgb(67, 23, 66); /* Dark Purple */
    --color-text-dark: rgb(52, 52, 52);
    --color-text-light: #ffffff;
    --color-text-muted: rgb(192, 165, 192);
    --color-bg-light: rgb(252, 249, 252);
    --color-bg-white: #ffffff;
    --color-bg-purple: rgb(66, 21, 66);
    --color-bg-gray: rgb(245, 245, 245);
    
    --color-whatsapp: rgb(37, 211, 102);
    --color-telegram: rgb(0, 136, 204);
    --color-facebook: rgb(24, 119, 242);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Marck Script', cursive;
    
    /* Layout */
    --container-width: 1520px;
    --container-padding: 0 20px;
}

@keyframes float-card {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -20px);
    }
}

@keyframes float-card-reverse {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 20px);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.2;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-weight: 800;
    border-radius: 57px;
    padding: 28px 57px;
    height: 85px;
    font-size: 20px;
    text-transform: uppercase;
    box-shadow: 0px 0px 8px 0px #6d2c6c;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.2;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0px 5px 20px 0px #6d2c6c;
}

.btn .btn-icon {
    animation: heartbeat 2.5s infinite ease-in-out;
}

/* .btn:hover .btn-icon {
    animation-duration: 0.8s;
} */

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.2);
    }
    30% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.15);
    }
    60% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.btn--hero {
    padding: 34px 67px;
    font-size: 24px;
    gap: 13px;
    height: auto;
    border-radius: 67px;
    box-shadow: 0px 0px 10px 0px #6d2c6c;
    max-width: fit-content;
}

.btn--outline {
    background-color: transparent;
    border: 1px solid var(--color-text-light);
    border-radius: 35px;
    padding: 17px 35px;
    font-size: 13px;
    font-weight: 700;
    height: auto;
    box-shadow: none;
    gap: 7px;
}

.btn--outline:hover {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0px 0px 15px rgba(206, 31, 202, 0.4);
    transform: translateY(-1px);
}

.btn--outline:hover .btn-icon {
    filter: brightness(0) saturate(100%) invert(31%) sepia(94%) saturate(4114%) hue-rotate(289deg) brightness(91%) contrast(96%);
}

.btn-icon {
    width: 33px;
    height: 28px;
    flex-shrink: 0;
}

.btn--hero .btn-icon {
    width: 39px;
    height: 33px;
}

.btn--outline .btn-icon {
    width: 21px;
    height: 18px;
}

/* Responsive Buttons */
@media (max-width: 991px) {
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 540px;
    }
    
    .btn {
        width: 100%;
        height: 72px;
        padding: 24px 30px;
        font-size: 17px;
        font-weight: 800;
        border-radius: 48px;
        gap: 10px;
        box-shadow: 0px 0px 7px 0px #6d2c6c;
    }

    .btn-icon {
        width: 28px;
        height: 24px;
    }

    /* Reset variants to match base btn on mobile */
    .btn--hero {
        width: 100%;
        max-width: 100%;
        height: 72px;
        padding: 24px 30px;
        font-size: 17px;
        font-weight: 800;
        border-radius: 48px;
        background-color: var(--color-primary);
        border: none;
        color: var(--color-text-light);
        box-shadow: 0px 0px 7px 0px #6d2c6c;
        gap: 10px;
    }

    .btn--hero .btn-icon {
        width: 28px;
        height: 24px;
    }

    .btn--outline {
        padding: 10px 20px;
        font-size: 10px;
        height: auto;
        border-radius: 27px;
        gap: 7px;
    }

    .btn--outline .btn-icon {
        width: 16px;
        height: 13px;
    }
}

/* Section Title */
.section-title {
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 900;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 60px;
    color: rgba(52, 52, 52, 0.8);
    line-height: 1.4;
}
