@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Jost:ital,wght@0,300..700;1,300..700&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}
body, html {
    background-color: #fff9ea;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
h1, h2, h3, .title {
    font-family: 'Cormorant Garamond', Georgia, serif;
}
.btn-default1 {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #efc899;
    color: #454545;
    border-radius: 2px;
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.btn-default1:hover {
    background-color: #efc899;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(248, 212, 119, 0.6), 0 0 30px rgba(248, 212, 119, 0.3);
}
.btn-default2 {
    position: relative;
    overflow: hidden;
    border: 1px solid #efc899;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: #efc899;
    border-radius: 2px;
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.btn-default2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}
.btn-default2:hover {
    color: #f8d477;
    border-color: #f8d477;
    transform: translateY(-2px);
}
.btn-default2:hover::before {
    left: 140%;
}
.span-estilo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.span-estilo::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 1px;
    border-radius: 2px;
}
.span-estilo.escuro {
    color: #b69771;
}
.span-estilo.escuro::before {
    background-color: #b69771;
}
.span-estilo.claro {
    color: #efc899;
}
.span-estilo.claro::before {
    background-color: #efc899;
}