:root {
    --color-1: #F6F6F3;
    --color-2: #B7C88A;
    --color-3: #7FB24A;
    --color-4: #E9A6A0;
    --color-5: #6E8F5A;
    --color-6: #D88A83;

    --neutral-color-0: #ffffff;
    --neutral-color-1: #434343;
    --neutral-color-2: rgba(67, 67, 67, 0.68);
    --neutral-color-3: #6F6F6F;
    --shadow-color: rgba(0, 0, 0, 0.1);

    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Allura', cursive;
    --font-quote: var(--font-heading);
}

:root[data-theme="dark"] {
    --color-1: #1e1e1e;
    --color-2: #a8b88d;
    --color-3: #99b075;
    --color-4: #e0a39d;
    --color-5: #a8b88d;
    --color-6: #e0a39d;

    --neutral-color-0: #2a2a2a;
    --neutral-color-1: #e8e8e8;
    --neutral-color-2: rgba(232, 232, 232, 0.65);
    --neutral-color-3: rgba(232, 232, 232, 0.75);
    --shadow-color: rgba(0, 0, 0, 0.25);
}

* {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
.db9_title,
.db9_section-title,
.db9_section-subtitle {
    font-family: var(--font-heading);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-1);
    color: var(--neutral-color-1);
    overflow-x: hidden;
    cursor: none;
}

/* Remover cursor padrão de elementos clicáveis */
a,
button,
label,
input[type="submit"],
input[type="button"] {
    cursor: none !important;
}

/* Cursor Customizado */
.db9_custom-cursor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-4);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 8px rgba(233, 166, 160, 0.6),
        0 0 15px rgba(233, 166, 160, 0.4),
        0 0 25px rgba(216, 138, 131, 0.3);
    animation: db9_cursor-pulse 3s ease-in-out infinite;
}

.db9_custom-cursor-glow {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(233, 166, 160, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.4;
    box-shadow: 0 0 12px rgba(233, 166, 160, 0.3),
        inset 0 0 12px rgba(233, 166, 160, 0.15);
}

@keyframes db9_cursor-pulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(233, 166, 160, 0.6),
            0 0 15px rgba(233, 166, 160, 0.4),
            0 0 25px rgba(216, 138, 131, 0.3);
    }

    50% {
        box-shadow: 0 0 12px rgba(233, 166, 160, 0.7),
            0 0 22px rgba(233, 166, 160, 0.5),
            0 0 35px rgba(216, 138, 131, 0.4);
    }
}

/* Efeito hover em elementos clicáveis */
a:hover~.db9_custom-cursor,
button:hover~.db9_custom-cursor,
label:hover~.db9_custom-cursor,
input:hover~.db9_custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--color-6);
}

a:hover~.db9_custom-cursor-glow,
button:hover~.db9_custom-cursor-glow,
label:hover~.db9_custom-cursor-glow,
input:hover~.db9_custom-cursor-glow {
    width: 60px;
    height: 60px;
    opacity: 0.7;
}

/* Esconder cursor customizado em dispositivos móveis */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    a,
    button,
    label,
    input,
    textarea,
    iframe {
        cursor: auto !important;
    }

    .db9_custom-cursor,
    .db9_custom-cursor-glow {
        display: none;
    }
}

section {
    padding: 70px 8%;
}

.db9_btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-5) 0%, var(--color-3) 100%);
    border-radius: 14px;
    padding: 14px 24px;
    font-weight: 600;
    box-shadow: 0px 6px 25px rgba(110, 143, 90, 0.25);
    cursor: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    color: var(--neutral-color-0);
    border: 2px solid transparent;
}

.db9_btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.db9_btn-default:hover::before {
    width: 300px;
    height: 300px;
}

.db9_btn-default:hover {
    background: linear-gradient(135deg, var(--color-6) 0%, var(--color-4) 100%);
    transform: translateY(-3px);
    box-shadow: 0px 12px 40px rgba(216, 138, 131, 0.35);
    border-color: var(--neutral-color-0);
}

.db9_btn-default:active {
    transform: translateY(-1px);
}

.db9_social-media-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .db9_social-media-buttons {
        justify-content: center;
        width: 100%;
    }
}

.db9_social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 45px;
    background: linear-gradient(135deg, var(--neutral-color-0) 0%, rgba(246, 246, 243, 0.9) 100%);
    font-size: 1.3rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--neutral-color-1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

:root[data-theme="dark"] .db9_social-media-buttons a {
    background: linear-gradient(135deg, var(--neutral-color-0) 0%, rgba(42, 42, 42, 0.9) 100%);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

.db9_social-media-buttons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 138, 131, 0.2), transparent);
    transition: left 0.5s;
}

.db9_social-media-buttons a:hover::before {
    left: 100%;
}

.db9_social-media-buttons a:hover {
    box-shadow: 0px 8px 30px rgba(233, 166, 160, 0.25);
    border-color: var(--color-4);
    color: var(--color-6);
    transform: translateY(-3px) rotate(5deg);
}

.db9_section-title {
    color: var(--color-6);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.db9_section-subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: var(--neutral-color-1);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.db9_section-subtitle::before {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-4) 0%, var(--color-6) 100%);
    margin: 0 auto 16px auto;
    border-radius: 3px;
}