/* -------------------------------------------------
   VARIABLES DE MARCA
-------------------------------------------------- */
:root {
    --bt-red: #C6302C;
    --bt-pink: #FFB7E9;
    --bt-fuchsia: #E80B74;
    --bt-black: #000000;
    --bt-white: #FFFFFF;
    --bt-cream: #FFE9DB;

    --bt-font-title: "Amatic SC", cursive;
    --bt-font-display: "Special Elite", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --bt-font-body: "Calibri", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --bt-radius-sm: 6px;
    --bt-radius-md: 12px;
    --bt-radius-lg: 20px;

    --bt-shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.12);
    --bt-shadow-card: 0 8px 20px rgba(0, 0, 0, 0.15);

    --bt-header-height: 80px;
    --bt-max-width: 1100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    font-family: var(--bt-font-body);
    color: var(--bt-black);
    background-color: var(--bt-white);
    line-height: 1.6;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* -------------------------------------------------
   SECCIONES GENERALES
-------------------------------------------------- */
.bt-section {
    padding: 80px 16px;
}

.bt-section--cream {
    background-color: var(--bt-cream);
}

.bt-section__inner {
    max-width: var(--bt-max-width);
    margin: 0 auto;
}

.bt-section__inner--narrow {
    max-width: 720px;
    margin: 0 auto;
}

.bt-section__header {
    margin-bottom: 40px;
}

.bt-section__header--center {
    text-align: center;
}

.bt-section__title {
    font-family: var(--bt-font-title);
    font-size: 3rem;
    color: var(--bt-red);
    margin: 0 0 8px;
    letter-spacing: 0.05em;
}

.bt-section__subtitle {
    font-family: var(--bt-font-display);
    font-size: 1rem;
    color: #333;
    max-width: 480px;
}

.bt-section__header--center .bt-section__subtitle {
    margin: 0 auto;
}

/* -------------------------------------------------
   HEADER
-------------------------------------------------- */
.bt-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bt-header__inner {
    max-width: var(--bt-max-width);
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bt-logo img {
    height: 56px;
    width: auto;
}

.bt-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bt-nav__list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bt-nav__link {
    font-family: var(--bt-font-title);
    font-size: 1.4rem;
    color: var(--bt-black);
    position: relative;
    padding-bottom: 3px;
}

.bt-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--bt-red);
    transition: width 0.25s ease-out;
}

.bt-nav__link:hover::after,
.bt-nav__link--active::after {
    width: 100%;
}

.bt-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bt-nav__toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--bt-black);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bt-nav__toggle--open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.bt-nav__toggle--open span:nth-child(2) {
    opacity: 0;
}

.bt-nav__toggle--open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Auth buttons in nav */
.btn-login {
    font-family: var(--bt-font-title);
    font-size: 1.2rem;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--bt-red);
    background: transparent;
    color: var(--bt-red);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-login:hover {
    background: var(--bt-red);
    color: var(--bt-white);
}

/* -------------------------------------------------
   HERO
-------------------------------------------------- */
.bt-hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 16px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bt-white);
    background: linear-gradient(180deg, #d38ca5 0%, #d896b0 50%, #ea9ab2 100%);
    overflow: hidden;
}

.bt-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.bt-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(232, 11, 116, 0.35);
    z-index: 1;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

.bt-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 60px;
}

.bt-hero__title {
    font-family: var(--bt-font-title);
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 0 0 10px;
    color: var(--bt-white);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
}

.bt-hero__subtitle {
    margin: 0 auto 30px;
    font-family: var(--bt-font-body);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bt-white);
    max-width: 600px;
}

.bt-hero__actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

/* Services Icons Section */
.bt-hero__services {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px;
    margin-top: 40px;
}

.bt-service-icon {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.bt-service-icon:hover {
    transform: scale(1.05);
}

/* Heart shape (Sobre Mi image) */
.bt-heart-shape {
    width: 100%;
    height: 100%;
    background-color: var(--bt-white);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 85' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 85 C45 80 0 50 0 25 C0 10 10 0 25 0 C35 0 45 10 50 20 C55 10 65 0 75 0 C90 0 100 10 100 25 C100 50 55 80 50 85 Z' fill='black'/%3E%3C/svg%3E") no-repeat center/contain;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 85' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 85 C45 80 0 50 0 25 C0 10 10 0 25 0 C35 0 45 10 50 20 C55 10 65 0 75 0 C90 0 100 10 100 25 C100 50 55 80 50 85 Z' fill='black'/%3E%3C/svg%3E") no-repeat center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: #FFB7E9;
}

.bt-heart-shape img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 85' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 85 C45 80 0 50 0 25 C0 10 10 0 25 0 C35 0 45 10 50 20 C55 10 65 0 75 0 C90 0 100 10 100 25 C100 50 55 80 50 85 Z' fill='black'/%3E%3C/svg%3E") no-repeat center/contain;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 85' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 85 C45 80 0 50 0 25 C0 10 10 0 25 0 C35 0 45 10 50 20 C55 10 65 0 75 0 C90 0 100 10 100 25 C100 50 55 80 50 85 Z' fill='black'/%3E%3C/svg%3E") no-repeat center/contain;
}

@media (max-width: 768px) {
    .bt-hero__title {
        font-size: 3rem;
    }

    .bt-hero__services {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .bt-service-icon {
        width: 150px;
    }
}

/* -------------------------------------------------
   BOTONES
-------------------------------------------------- */
.bt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: 999px;
    font-family: var(--bt-font-title);
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    text-align: center;
}

.bt-btn--primary {
    background-color: #E6007E;
    color: white;
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.4);
    border: 1px solid white;
}

.bt-btn--primary:hover {
    background-color: white;
    color: #E6007E;
    border-color: #E6007E;
    transform: translateY(-3px);
}

.bt-btn--full {
    width: 100%;
}

.bt-btn--secondary {
    background: var(--bt-pink);
    color: var(--bt-black);
}

.bt-btn--secondary:hover {
    background: var(--bt-fuchsia);
    color: var(--bt-white);
}

/* -------------------------------------------------
   SOBRE MI
-------------------------------------------------- */
.bt-about-me {
    background-image: url('../img/BT_PW_Grafica_Fondo1.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.bt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.bt-about-text {
    font-size: 1.1rem;
    color: var(--bt-black);
}

.bt-about-text p {
    margin-bottom: 16px;
}

.bt-about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bt-big-heart-container {
    width: 400px;
    height: 350px;
    position: relative;
}

.bt-heart-shape--large {
    padding: 6px;
}

@media (max-width: 900px) {
    .bt-about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bt-big-heart-container {
        width: 300px;
        height: 260px;
    }
}

/* -------------------------------------------------
   SERVICIOS
-------------------------------------------------- */
.bt-services {
    background-image: url('../img/BT_PW_Grafica_Fondo2.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 80px 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.bt-services .bt-tabs {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 20px;
}

.bt-service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}

.bt-service-image img {
    width: 100%;
    height: auto;
    border-radius: var(--bt-radius-md);
    box-shadow: var(--bt-shadow-card);
    object-fit: cover;
    max-height: 400px;
}

.bt-service-intro {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--bt-red);
    margin-bottom: 24px;
    font-family: var(--bt-font-display);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .bt-service-content-grid {
        grid-template-columns: 1fr;
    }
}

/* Tabs */
.bt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.bt-tab {
    padding: 10px 24px;
    border-radius: 999px;
    font-family: var(--bt-font-title);
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    background-color: #E6007E;
    color: white;
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.4);
    border: 1px solid white;
}

.bt-tab:hover {
    transform: translateY(-3px);
    background-color: white;
    color: #E6007E;
    border-color: #E6007E;
}

.bt-tab--active {
    background-color: white;
    color: #E6007E;
    border-color: #E6007E;
    box-shadow: 0 6px 12px rgba(232, 11, 116, 0.4);
}

.bt-tab-panels {
    position: relative;
}

.bt-tab-panel {
    display: none;
    animation: fadeIn 0.25s ease-out;
}

.bt-tab-panel--active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accordion */
.bt-accordion {
    border-radius: var(--bt-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.bt-accordion__item+.bt-accordion__item {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bt-accordion__header {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.bt-accordion__title {
    font-family: var(--bt-font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin: 0;
    color: var(--bt-red);
}

.bt-accordion__icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--bt-fuchsia);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--bt-fuchsia);
    transition: transform 0.18s;
}

.bt-accordion__item--open .bt-accordion__icon {
    transform: rotate(90deg);
}

.bt-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease-out, padding 0.22s ease-out;
    padding: 0 16px;
}

.bt-accordion__item--open .bt-accordion__body {
    padding: 10px 16px 16px;
}

.bt-accordion__body p {
    font-size: 0.95rem;
    margin: 0 0 10px;
}

/* -------------------------------------------------
   BLOG (Carousel)
-------------------------------------------------- */
.bt-blog {
    background-image: url('../img/BT_PW_Grafica_Fondo1.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 16px;
}

.bt-blog-wrapper {
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 70px;
    width: 100%;
}

.bt-blog-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 20px;
}

.bt-blog-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-out;
}

.bt-post-card {
    flex: 0 0 calc(25% - 15px);
    background: white;
    border-radius: var(--bt-radius-md);
    overflow: hidden;
    box-shadow: var(--bt-shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: auto;
    text-decoration: none;
    color: inherit;
}

.bt-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bt-shadow-soft);
}

.bt-post-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.bt-post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bt-post-title {
    font-family: var(--bt-font-title);
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 0 10px;
    color: var(--bt-red);
}

.bt-post-excerpt {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bt-post-date {
    font-size: 0.85rem;
    color: #666;
    margin-top: auto;
    padding-top: 10px;
    font-family: var(--bt-font-display);
}

/* Navigation Buttons */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bt-white);
    border: 2px solid var(--bt-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bt-red);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-decoration: none;
}

.nav-button:hover {
    background: var(--bt-red);
    color: var(--bt-white);
    box-shadow: 0 6px 15px rgba(198, 48, 44, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-button--prev {
    left: 0;
}

.nav-button--next {
    right: 0;
}

.nav-button:disabled,
.nav-button.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    background: #f0f0f0;
    border-color: #ccc;
    color: #ccc;
    box-shadow: none;
}

/* -------------------------------------------------
   CONTACTO
-------------------------------------------------- */
.bt-form {
    background: #ffffff;
    border-radius: var(--bt-radius-lg);
    padding: 24px 22px 26px;
    box-shadow: var(--bt-shadow-soft);
    border: 1px solid rgba(198, 48, 44, 0.12);
}

.bt-form__row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bt-form__group {
    margin-bottom: 16px;
}

.bt-form__group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--bt-red);
    margin-bottom: 6px;
    font-family: var(--bt-font-display);
}

.bt-form__group input,
.bt-form__group select,
.bt-form__group textarea {
    width: 100%;
    border-radius: var(--bt-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 11px;
    font-family: var(--bt-font-body);
    font-size: 0.95rem;
    background-color: #fafafa;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.bt-form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.bt-form__group input:focus,
.bt-form__group select:focus,
.bt-form__group textarea:focus {
    outline: none;
    border-color: var(--bt-fuchsia);
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(232, 11, 116, 0.15);
}

.bt-form__note {
    margin-top: 10px;
    font-size: 0.78rem;
    color: #555;
}

#contacto {
    background-image: url('../img/BT_PW_Grafica_Fondo2.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: transparent;
}

/* -------------------------------------------------
   FOOTER
-------------------------------------------------- */
.bt-footer {
    background-image: url('../img/BT_PW_Grafica_FondoFooter.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bt-white);
    padding: 60px 20px 30px;
    font-family: var(--bt-font-body);
}

.bt-footer__container {
    max-width: var(--bt-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bt-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .bt-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .bt-footer__top {
        grid-template-columns: 1fr;
    }
}

.bt-footer__links-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bt-footer__title {
    font-family: var(--bt-font-title);
    font-size: 1.8rem;
    margin: 0 0 20px;
    letter-spacing: 0.05em;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--bt-white);
}

.bt-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.bt-footer__nav a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    font-size: 1.1rem;
    color: var(--bt-white);
    transition: color 0.2s;
}

.bt-footer__nav a:hover {
    color: var(--bt-cream);
}

.bt-footer__login {
    background: transparent;
    border: 2px solid var(--bt-white);
    color: var(--bt-white);
    padding: 5px 20px;
    font-family: var(--bt-font-title);
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.bt-footer__login:hover {
    background: var(--bt-white);
    color: var(--bt-fuchsia);
}

.bt-footer__contact-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bt-footer__email {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.bt-footer__email i {
    font-size: 2rem;
}

.bt-footer__email a {
    color: var(--bt-white);
    text-decoration: none;
}

.bt-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.bt-copyright {
    font-size: 0.9rem;
    margin: 0;
}

.bt-footer__socials {
    display: flex;
    gap: 10px;
}

.bt-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bt-white);
    font-size: 1.2rem;
    transition: background 0.3s;
    text-decoration: none;
}

.bt-footer__socials a:hover {
    background: var(--bt-white);
    color: var(--bt-fuchsia);
}

/* -------------------------------------------------
   MODAL
-------------------------------------------------- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: var(--bt-radius-lg);
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: var(--bt-red);
}

#loginModal .modal-content {
    max-width: 400px;
}

/* -------------------------------------------------
   TOAST
-------------------------------------------------- */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bt-black);
    color: var(--bt-white);
    padding: 12px 20px;
    border-radius: var(--bt-radius-md);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.toast.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* -------------------------------------------------
   ADMIN
-------------------------------------------------- */
.bt-admin {
    background-color: var(--bt-white);
}

/* -------------------------------------------------
   UTILITIES
-------------------------------------------------- */
.selectable-text {
    user-select: text;
    cursor: text;
}

/* -------------------------------------------------
   WHATSAPP FLOATING BUTTON
-------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--bt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 998;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--bt-red);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--bt-red);
}

/* -------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 768px) {
    .bt-header__inner {
        padding-inline: 16px;
    }

    .bt-nav__toggle {
        display: flex;
    }

    .bt-nav__list {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        padding: 12px 18px 16px;
        min-width: 180px;
        transform-origin: top right;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.16s ease-out, opacity 0.16s ease-out;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .bt-nav__list--open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .bt-section {
        padding: 64px 16px;
    }

    .bt-form__row {
        grid-template-columns: 1fr;
    }

    .bt-hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .bt-hero__title {
        font-size: 2.6rem;
    }

    .bt-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bt-section__title {
        font-size: 2.4rem;
    }
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .bt-post-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .bt-post-card {
        flex: 0 0 100%;
    }

    .bt-blog-wrapper {
        padding: 0 50px;
    }

    .nav-button {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .nav-button--prev {
        left: 0px;
    }

    .nav-button--next {
        right: 0px;
    }
}

/* -------------------------------------------------
   FADE-IN ANIMATION (Blog Cards)
-------------------------------------------------- */
.bt-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bt-fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}