/* ============================================================
   ORGANIZE-SE | Personal Organizer Eliete Teixeira
   Main Stylesheet — Rose & Gold Elegant Theme
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --rose:         #c9748f;
    --rose-dark:    #a85670;
    --rose-light:   #f2d0da;
    --rose-pale:    #fdf5f7;
    --gold:         #c9a96e;
    --gold-light:   #f0e0c0;
    --cream:        #faf7f4;
    --white:        #ffffff;
    --dark:         #2c2a35;
    --gray-dark:    #4a4555;
    --gray-mid:     #8a8098;
    --gray-light:   #e8e2ee;
    --text:         #3d3848;
    --text-light:   #6e6880;

    --font-main:    'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    --shadow-sm:    0 2px 12px rgba(201,116,143,0.10);
    --shadow-md:    0 6px 30px rgba(201,116,143,0.18);
    --shadow-lg:    0 16px 60px rgba(201,116,143,0.22);
    --radius:       12px;
    --radius-sm:    8px;
    --radius-lg:    20px;
    --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rose-dark); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(44,42,53,0.97);
    backdrop-filter: blur(8px);
    z-index: 9999;
    padding: 18px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 2px solid var(--rose);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-content p {
    color: #e8dde8;
    margin: 0;
    font-size: 0.88rem;
    flex: 1;
}
.cookie-content p i { color: var(--gold); margin-right: 6px; }
.cookie-content a { color: var(--rose-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
    background: var(--rose);
    color: white;
    border: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--rose-dark); }
.btn-cookie-policy {
    color: var(--gray-light) !important;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    transition: var(--transition);
}
.btn-cookie-policy:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   HEADER / TOPBAR
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; }

.header-topbar {
    background: var(--dark);
    padding: 7px 0;
    font-size: 0.78rem;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar-contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar-contacts a,
.topbar-contacts span {
    color: #c8bcd8;
    font-size: 0.78rem;
    transition: var(--transition);
}
.topbar-contacts a:hover { color: var(--rose-light); }
.topbar-contacts i,
.topbar-social i { margin-right: 5px; }
.topbar-contacts .fa-whatsapp { color: #25d366; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
    color: #c8bcd8;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    font-size: 0.8rem;
    transition: var(--transition);
}
.topbar-social a:hover { background: var(--rose); color: white; transform: translateY(-2px); }

/* ---- NAVBAR ---- */
.main-navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(201,116,143,0.12);
    padding: 0;
    transition: var(--transition);
}
.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(201,116,143,0.2);
}
.main-navbar .container { min-height: 72px; }

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.3px;
}
.logo-accent { color: var(--rose); }
.logo-sub {
    font-size: 0.68rem;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Nav links */
.main-navbar .navbar-nav { gap: 4px; }
.main-navbar .nav-link {
    color: var(--gray-dark) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--rose);
    transform: scaleX(0);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.main-navbar .nav-item:hover .nav-link,
.main-navbar .nav-item.active .nav-link {
    color: var(--rose) !important;
}
.main-navbar .nav-item.active .nav-link::after,
.main-navbar .nav-item:hover .nav-link::after {
    transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu-custom {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 10px;
    min-width: 260px;
    background: white;
    border-top: 3px solid var(--rose);
    margin-top: 0;
}
.dropdown-menu-custom .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.855rem;
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-menu-custom .dropdown-item i {
    width: 28px; height: 28px;
    background: var(--rose-pale);
    color: var(--rose);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
}
.dropdown-menu-custom .dropdown-item:hover {
    background: var(--rose-pale);
    color: var(--rose);
    transform: translateX(4px);
}
.dropdown-toggle::after { display: none; }
.dropdown-toggle .fa-chevron-down {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: transform 0.3s;
}
.show .dropdown-toggle .fa-chevron-down { transform: rotate(180deg); }

/* CTA Btn */
.btn-orcamento {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(201,116,143,0.35);
    transition: var(--transition);
}
.btn-orcamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,116,143,0.45);
    color: white !important;
}
.btn-orcamento i { font-size: 0.9rem; }

/* Hamburger */
.navbar-toggler {
    border: none;
    background: none;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger-line {
    display: block;
    width: 26px; height: 2px;
    background: var(--rose);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   PWA BANNER
   ============================================================ */
.pwa-banner {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.85rem;
    z-index: 999;
    position: sticky;
    top: 72px;
}
.btn-pwa-install {
    background: white;
    color: var(--rose-dark);
    border: none;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-pwa-install:hover { transform: scale(1.05); }
.btn-pwa-dismiss {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 26px; height: 26px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
}
.hero-slider .carousel-item {
    height: 88vh;
    min-height: 560px;
    max-height: 800px;
}
.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(44,42,53,0.72) 0%, rgba(168,86,112,0.55) 60%, rgba(44,42,53,0.3) 100%);
}
/* Fallback gradients for placeholder slides */
.hero-slide-1 { background: linear-gradient(135deg, #c9748f 0%, #a85670 35%, #2c2a35 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #2c2a35 0%, #a85670 50%, #c9a96e 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #f2d0da 0%, #c9748f 40%, #a85670 100%); }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 640px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,116,143,0.25);
    border: 1px solid rgba(201,116,143,0.5);
    backdrop-filter: blur(8px);
    color: var(--rose-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.hero-eyebrow i { color: var(--gold); }
.hero-title {
    font-family: var(--font-display);
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.18;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--rose-light); font-style: italic; }
.hero-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-rose {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(201,116,143,0.45);
    transition: var(--transition);
    border: none;
}
.btn-primary-rose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201,116,143,0.55);
    color: white;
}
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Carousel controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    bottom: auto;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    margin: 0 20px;
}
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--rose);
    border-color: var(--rose);
}
.carousel-control-prev-icon,
.carousel-control-next-icon { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)); }

.hero-slider .carousel-indicators {
    bottom: 24px;
}
.hero-slider .carousel-indicators li {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
    transition: var(--transition);
}
.hero-slider .carousel-indicators li.active {
    background: var(--rose-light);
    transform: scale(1.4);
}

/* ============================================================
   SECTION GLOBALS
   ============================================================ */
.section { padding: 90px 0; }
.section-alt { background: var(--cream); }
.section-rose { background: var(--rose-pale); }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid var(--rose-light);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    line-height: 1.22;
    margin-bottom: 14px;
}
.section-title em { color: var(--rose); font-style: italic; }
.section-subtitle {
    color: var(--text-light);
    font-size: 1.02rem;
    max-width: 560px;
    line-height: 1.75;
}
.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 40px;
}
.section-divider span {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--rose-light));
    border-radius: 2px;
}
.section-divider i { color: var(--rose); font-size: 0.9rem; }

/* ============================================================
   ABOUT / INSTITUTIONAL SECTION
   ============================================================ */
.about-section { background: var(--white); overflow: hidden; }
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-badge {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: white;
    border-radius: var(--radius);
    padding: 16px 22px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 180px;
}
.badge-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
}
.badge-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
}
.about-image-badge2 {
    position: absolute;
    top: 28px;
    right: -20px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    border-radius: var(--radius);
    padding: 14px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}
.about-image-badge2 i { font-size: 1.3rem; }
.about-text { padding-left: 24px; }
.about-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 0.97rem;
    line-height: 1.8;
}
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--rose-pale);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--rose);
}
.highlight-item i {
    color: var(--rose);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.highlight-item strong { display: block; font-size: 0.88rem; color: var(--dark); }
.highlight-item span { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-light);
    position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-light);
}
.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.service-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(44,42,53,0.5));
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-icon {
    position: absolute;
    top: 16px; right: 16px;
    width: 44px; height: 44px;
    background: white;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rose);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}
.service-card-body {
    padding: 24px;
}
.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.service-card-link i {
    width: 26px; height: 26px;
    background: var(--rose-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}
.service-card:hover .service-card-link i {
    background: var(--rose);
    color: white;
    transform: translateX(3px);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--rose);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 1;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--gray-mid);
    margin-bottom: 10px;
}
.blog-meta i { color: var(--rose-light); margin-right: 4px; }
.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 10px;
    transition: var(--transition);
}
.blog-card:hover h3 { color: var(--rose); }
.blog-card-body p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rose);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-top: auto;
    align-self: flex-start;
}
.btn-read-more i {
    transition: transform 0.3s;
    font-size: 0.8rem;
}
.btn-read-more:hover { color: var(--rose-dark); }
.btn-read-more:hover i { transform: translateX(4px); }

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, #3d3560 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9748f' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number span { color: var(--rose); }
.stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.stat-icon {
    width: 56px; height: 56px;
    background: rgba(201,116,143,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-light);
    font-size: 1.4rem;
    margin: 0 auto 16px;
    border: 1px solid rgba(201,116,143,0.3);
}

/* ============================================================
   BREADCRUMB SECTION
   ============================================================ */
.breadcrumb-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--dark);
}
.breadcrumb-section::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(44,42,53,0.82), rgba(168,86,112,0.7));
}
.breadcrumb-content { position: relative; z-index: 2; }
.breadcrumb-title {
    font-family: var(--font-display);
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 12px;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0; margin: 0;
    flex-wrap: wrap;
}
.breadcrumb-list li { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.breadcrumb-list li a { color: rgba(255,255,255,0.8); }
.breadcrumb-list li a:hover { color: var(--rose-light); }
.breadcrumb-list li.active { color: var(--rose-light); font-weight: 500; }
.breadcrumb-list li:not(:last-child)::after { content: '›'; margin-left: 10px; color: rgba(255,255,255,0.4); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 0L0 40l40 40 40-40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 {
    font-family: var(--font-display);
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 32px;
    position: relative;
}
.btn-white-rose {
    background: white;
    color: var(--rose-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.btn-white-rose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
    color: var(--rose-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 72px 0 48px; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-logo .logo-main { color: white; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-about {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
    background: var(--rose);
    color: white;
    border-color: var(--rose);
    transform: translateY(-3px);
}
.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 36px; height: 2px;
    background: var(--rose);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.footer-links a i { font-size: 0.6rem; color: var(--rose); }
.footer-links a:hover { color: white; transform: translateX(4px); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.footer-contact > li > i {
    width: 36px; height: 36px;
    background: rgba(201,116,143,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-light);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact strong {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}
.footer-contact a {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
}
.footer-contact a:hover { color: var(--rose-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin: 0;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 999;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.7rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: whatsapp-pulse 2.5s infinite;
}
.whatsapp-float:hover {
    color: white;
    transform: scale(1.12);
    box-shadow: 0 10px 35px rgba(37,211,102,0.55);
    animation: none;
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid white;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes whatsapp-pulse {
    0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================================================
   PAGE: SERVICES ALL
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ============================================================
   PAGE: BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pagination-wrap { margin-top: 50px; display: flex; justify-content: center; }
.pagination .page-item .page-link {
    color: var(--rose);
    border-color: var(--rose-light);
    font-weight: 500;
    border-radius: var(--radius-sm) !important;
    margin: 0 3px;
    transition: var(--transition);
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: white;
}

/* ============================================================
   PAGE: SINGLE POST
   ============================================================ */
.post-header { margin-bottom: 36px; }
.post-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--dark);
    line-height: 1.22;
    margin-bottom: 18px;
}
.post-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
}
.post-featured-img img {
    width: 100%; height: 420px;
    object-fit: cover;
}
.post-content {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
}
.post-content p { margin-bottom: 22px; }
.post-content h2, .post-content h3 {
    font-family: var(--font-display);
    color: var(--dark);
    margin: 32px 0 14px;
}
.post-content img { border-radius: var(--radius); margin: 20px 0; }
.post-content blockquote {
    border-left: 4px solid var(--rose);
    background: var(--rose-pale);
    padding: 18px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-light);
}
.post-sidebar .sidebar-widget {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 28px;
}
.post-sidebar .widget-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rose-light);
}

/* ============================================================
   CONTACT / ORC FORM
   ============================================================ */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
}
.form-control {
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
    height: auto;
    min-height: 48px;
    line-height: 1.5;
}
select.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 48px;
    -webkit-appearance: menulist;
    appearance: menulist;
}
.form-control:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(201,116,143,0.12);
    outline: none;
}
.btn-submit {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,116,143,0.4);
}
.form-success {
    background: #e6f9ef;
    border: 1px solid #a8dfbc;
    color: #1e7a45;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================================
   COURSES
   ============================================================ */
.course-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    height: 100%;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose-light);
}
.course-card-img {
    height: 200px;
    overflow: hidden;
}
.course-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.course-card:hover .course-card-img img { transform: scale(1.06); }
.course-card-body { padding: 24px; }
.course-tag {
    display: inline-block;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid var(--rose-light);
}
.course-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.course-card-body p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.course-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-light);
}
.course-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}
.course-info-item i { color: var(--rose); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .blog-grid { grid-template-columns: repeat(2,1fr); }
    .about-text { padding-left: 0; margin-top: 36px; }
    .about-highlights { grid-template-columns: 1fr; }
    .about-image-badge { left: 10px; }
    .about-image-badge2 { right: 10px; }
    .hero-slider .carousel-item { height: 65vh; }
    .topbar-contacts { display: none; }
    .footer-brand { margin-bottom: 10px; }
}
@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-slider .carousel-item { height: 75vh; }
    .hero-content { max-width: 100%; }
    .stats-section .col-6 { margin-bottom: 30px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.5rem; }
    .contact-form-wrap { padding: 24px; }
    .about-image-badge, .about-image-badge2 { display: none; }
    .navbar-cta { padding: 16px 0; }
    .btn-orcamento { width: 100%; justify-content: center; }
    .cookie-content { flex-direction: column; gap: 12px; }
    .cookie-buttons { width: 100%; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-cta { flex-direction: column; }
    .btn-primary-rose, .btn-outline-white { width: 100%; justify-content: center; }
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo-section {
    background: linear-gradient(135deg, var(--rose-pale) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}
.depo-section::before {
    content: '\201C';
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 22rem;
    color: var(--rose-light);
    opacity: 0.25;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.depo-carousel-wrap { position: relative; max-width: 780px; margin: 0 auto; }
.depo-slide {
    display: none;
    animation: depoFadeIn 0.6s ease;
}
.depo-slide.active { display: block; }
@keyframes depoFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.depo-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    border: 1px solid var(--rose-light);
}
.depo-quote-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin: 0 auto 24px;
}
.depo-stars {
    color: #f5c842;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.depo-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 28px;
}
.depo-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.depo-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light), var(--rose));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.depo-author-info { text-align: left; }
.depo-name {
    font-weight: 700;
    font-size: .92rem;
    color: var(--dark);
    line-height: 1.3;
}
.depo-city {
    font-size: .78rem;
    color: var(--gray-mid);
    display: flex; align-items: center; gap: 4px;
}
.depo-city i { color: var(--rose); font-size: .7rem; }

/* Dots */
.depo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.depo-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rose-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.depo-dot.active {
    background: var(--rose);
    transform: scale(1.4);
}

/* Arrows */
.depo-prev, .depo-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: white;
    border: 1px solid var(--rose-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--rose);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 5;
    font-size: .9rem;
}
.depo-prev { left: -60px; }
.depo-next { right: -60px; }
.depo-prev:hover, .depo-next:hover {
    background: var(--rose);
    color: white;
    border-color: var(--rose);
    transform: translateY(-50%) scale(1.08);
}
@media (max-width: 991px) {
    .depo-prev { left: -10px; }
    .depo-next { right: -10px; }
    .depo-card { padding: 32px 24px; }
}

/* ============================================================
   PWA FAB (botão flutuante de instalação)
   ============================================================ */
.pwa-fab {
    position: fixed;
    bottom: 100px;       /* acima do WhatsApp */
    right: 30px;
    z-index: 998;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(201,116,143,.45);
    transition: var(--transition);
    animation: pwa-bounce 2.8s ease-in-out infinite;
}
.pwa-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 32px rgba(201,116,143,.6);
    animation: none;
}
.pwa-fab i  { font-size: 1rem; }
.pwa-fab-label { white-space: nowrap; }

@keyframes pwa-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@media (max-width: 767px) {
    .pwa-fab { bottom: 86px; right: 16px; padding: 10px 14px; font-size: .78rem; }
}

/* Modal de instruções (iOS / sem prompt) */
.pwa-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(44,42,53,.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.pwa-modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--rose);
}
.pwa-modal-icon {
    width: 64px; height: 64px;
    background: var(--rose-pale);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rose);
    font-size: 1.6rem;
    margin: 0 auto 18px;
}
.pwa-modal h3 {
    font-family: var(--font-display);
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.pwa-modal p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 24px;
}
.pwa-modal-close { margin: 0 auto; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-rose { color: var(--rose); }
.bg-rose { background: var(--rose); }
.text-gold { color: var(--gold); }
.mb-section { margin-bottom: 90px; }
.lazy { opacity: 0; transition: opacity 0.5s; }
.lazy.loaded { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
