* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    background-color: #faf8f5;
    line-height: 1.6
}

a {
    color: #e07856;
    text-decoration: none;
    transition: color .3s ease
}

a:hover {
    color: #c9603a
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

p {
    margin-bottom: 1rem
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

@media (min-width:768px) {
    .container {
        padding: 0 1.5rem
    }
}

@media (min-width:1024px) {
    .container {
        padding: 0 2rem
    }
}

/* ── Header simplificado ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.site-branding {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #333;
    text-decoration: none
}

.site-logo {
    width: 40px;
    height: 40px;
    background-color: #e07856;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px
}

.site-logo img {
    width: 75%;
    height: 75%;
    object-fit: contain
}

.header-cta {
    background-color: #e07856;
    color: #fff;
    padding: .5rem 1.5rem;
    border-radius: .5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color .3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    display: inline-block;
    text-decoration: none
}

.header-cta:hover {
    background-color: #c9603a;
    color: #fff
}

.page-hero {
    background: linear-gradient(135deg, #fef3e6 0%, #fff8f2 100%);
    border-bottom: 1px solid #f0e0d0;
    padding: 2.5rem 0 2rem;
}

.page-hero h1 {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: .4rem;
}

@media (min-width:768px) {
    .page-hero h1 {
        font-size: 2.25rem
    }
}

.page-hero .breadcrumb {
    font-size: .85rem;
    color: #888;
    display: flex;
    gap: .4rem;
    align-items: center;
    flex-wrap: wrap;
}

.page-hero .breadcrumb a {
    color: #e07856
}

.page-hero .breadcrumb span {
    color: #bbb
}

.page-content {
    padding: 3rem 0 4rem;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width:900px) {
    .content-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
    }
}

.article-body {
    max-width: 720px
}

.article-body h2 {
    font-size: 1.35rem;
    color: #222;
    margin-top: 2rem;
    margin-bottom: .6rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid #f0d8cc;
}

.article-body h2:first-child {
    margin-top: 0
}

.article-body h3 {
    font-size: 1.1rem;
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: .4rem;
}

.article-body p {
    color: #555;
    line-height: 1.8
}

.article-body ul,
.article-body ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.article-body li+li {
    margin-top: .35rem
}

.article-body blockquote {
    border-left: 4px solid #e07856;
    background: #fff8f5;
    padding: 1rem 1.25rem;
    border-radius: 0 .5rem .5rem 0;
    margin: 1.5rem 0;
    color: #555;
    font-style: italic;
}

.article-body .highlight-box {
    background: linear-gradient(135deg, #fff3ec, #fff8f5);
    border: 1px solid #f0d5c5;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.article-body .highlight-box p {
    margin: 0;
    color: #555
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.sidebar-card {
    background: #fff;
    border: 1px solid #eeddd4;
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
}

.sidebar-card h4 {
    font-size: .95rem;
    color: #e07856;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.sidebar-card ul li {
    padding: .3rem 0;
    border-bottom: 1px solid #f5ece7;
    font-size: .9rem
}

.sidebar-card ul li:last-child {
    border-bottom: none
}

.sidebar-card ul li a {
    color: #555
}

.sidebar-card ul li a:hover {
    color: #e07856
}

.sidebar-cta {
    background: linear-gradient(135deg, #e07856, #c9603a);
    color: #fff;
    border-radius: .75rem;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, .9);
    font-size: .9rem;
    margin-bottom: 1rem
}

.sidebar-cta h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: .5rem
}

.sidebar-cta a {
    display: inline-block;
    background: #fff;
    color: #e07856;
    font-weight: 700;
    font-size: .9rem;
    padding: .6rem 1.4rem;
    border-radius: .5rem;
    transition: opacity .2s;
}

.sidebar-cta a:hover {
    opacity: .9;
    color: #e07856
}

.fab-container {
    position: fixed;
    bottom: 1.75rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .85rem;
    z-index: 9999;
}

.fab-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09060 0%, #e07856 60%, #c9603a 100%);
    box-shadow: 0 4px 18px rgba(224, 120, 86, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.fab-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(224, 120, 86, .75);
    color: #fff
}

.fab-btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0
}

.fab-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(50, 30, 20, .88);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    white-space: nowrap;
    padding: .35rem .7rem;
    border-radius: .4rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
}

.fab-btn:hover::before {
    opacity: 1
}

.fab-btn.fab-whatsapp::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(224, 120, 86, .5);
    animation: fab-pulse 2.2s ease-out infinite;
}

@keyframes fab-pulse {
    0% {
        transform: scale(1);
        opacity: .7
    }

    70% {
        transform: scale(1.35);
        opacity: 0
    }

    100% {
        transform: scale(1.35);
        opacity: 0
    }
}

/* ── Footer ── */
.site-footer {
    background: linear-gradient(135deg, #2c1810, #3d2419);
    color: rgba(255, 255, 255, .7);
    text-align: center;
    padding: 2.5rem 1rem;
    font-size: .85rem;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #e07856;
}

.footer-links {
    margin-top: .75rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .9);
    text-decoration: underline;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}