/**
 * Landing Page Newborn - NR Fotografia
 * Estilos principais com fonte Quicksand e paleta de cores atualizada
 * 
 * @author Manus AI
 * @version 2.0
 * @date 2025-08-11
 */

/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
    width: 100%;
}

/* ===== VARIÁVEIS CSS ===== */
:root {
    /* Paleta de cores da identidade visual */
    --primary-color: #00B6AC;
    /* Turquesa principal */
    --secondary-color: #80C8B0;
    /* Verde suave */
    --accent-color: #DBD9A7;
    /* Bege/dourado */
    --soft-pink: #F69C9D;
    /* Rosa suave */

    /* Cores neutras */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;

    /* Tipografia */
    --font-family: 'Quicksand', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;

    /* Espaçamentos */
    --container-max-width: 1200px;
    --section-padding: 30px 0;
    --header-height: 80px;

    /* Bordas e sombras */
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);

    /* Transições */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== UTILITÁRIOS ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto !important;
    padding: 0 20px;
    width: 100%;
}

.section__title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-normal);
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.2rem;
    font-weight: var(--font-weight-light);
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.btn--primary:hover {
    background-color: #f69c9e;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn--secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.btn--secondary:hover {
    background-color: #f69c9e;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== HEADER ===== */
.header {
    position: absolute;
    /* Alterado para absolute para sobrepor o slider */
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
    /* Transparência com blur para sobrepor o slider */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo responsiva */
.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav__logo-desktop {
    height: 40px;
    width: auto;
    display: block;
}

.nav__logo-mobile {
    height: 40px;
    /* Increased to match desktop horizontal logo size */
    width: auto;
    display: none;
}

/* Menu de navegação */
.nav__menu {
    display: flex;
    align-items: center;
}

/* Hide Mobile-Only Elements on Desktop */
.nav__close,
.nav__menu-logo {
    display: none;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    color: var(--white);
    /* Voltando para branco para funcionar com header transparente */
    text-decoration: none;
    font-weight: var(--font-weight-normal);
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

/* CTA do header */
.nav__cta {
    margin-left: 2rem;
}

/* Toggle mobile */
.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    /* Voltando para branco */
    transition: var(--transition);
    border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 1;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HEADER RESPONSIVO ===== */
/* ===== HEADER RESPONSIVO ===== */
@media (max-width: 768px) {

    /* Full Screen Blur Menu */
    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #00b6ac;
        /* User requested color */
        /* Blur Removed */
        z-index: 2000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        /* Animation State */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    /* Logo Styling inside Menu */
    .nav__menu-logo {
        display: block;
        /* Override desktop hidden state */
        margin-bottom: 1.5rem;
        /* Reduced margin */
        width: 150px;
        /* Slightly larger */
        position: relative;
        text-align: center;
    }

    .nav__menu-logo img {
        width: 100%;
        height: auto;
        /* Force Logo to be White (Robust for all logo types) */
        filter: brightness(0) invert(1);
        display: block;
        margin: 0 auto;
    }

    /* Separator Line under Logo */
    .nav__menu-logo::after {
        content: '';
        display: block;
        width: 60px;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        margin: 15px auto 0;
    }

    .nav__menu.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Remove old overlay styles as menu handles it */
    .nav__overlay {
        display: none;
    }

    /* Close Button */
    .nav__close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        cursor: pointer;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .nav__close:hover {
        background: rgba(255, 255, 255, 0.3);
        color: var(--white);
        transform: rotate(90deg);
    }

    /* List & Items */
    .nav__list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0.5rem;
        /* Reduced gap further for tighter stacking */
    }

    .nav__item {
        position: relative;
        width: 100%;
        padding: 0.5rem 0;
        /* Add padding to item instead of gap */
    }

    /* Divider between items (User's preferred style) */
    .nav__item:not(:last-child)::after {
        content: '';
        display: block;
        width: 60%;
        height: 1px;
        background: rgba(255, 255, 255, 0.6);
        margin: 10px auto 0;
    }

    .nav__link {
        color: var(--white);
        font-size: 1.35rem;
        /* Reduced font size */
        font-weight: 500;
        letter-spacing: 0.5px;
        display: block;
        padding: 0.2rem;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease, color 0.3s;
        border: none;
    }

    /* Staggered Animation for Links */
    .nav__menu.show .nav__link {
        transform: translateY(0);
        opacity: 1;
    }

    .nav__menu.show .nav__item:nth-child(1) .nav__link {
        transition-delay: 0.1s;
    }

    .nav__menu.show .nav__item:nth-child(2) .nav__link {
        transition-delay: 0.15s;
    }

    .nav__menu.show .nav__item:nth-child(3) .nav__link {
        transition-delay: 0.2s;
    }

    .nav__menu.show .nav__item:nth-child(4) .nav__link {
        transition-delay: 0.25s;
    }

    .nav__menu.show .nav__item:nth-child(5) .nav__link {
        transition-delay: 0.3s;
    }

    .nav__link:hover {
        color: var(--primary-color);
    }

    /* Toggle Button */
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .nav__cta {
        display: none;
    }

    .nav__logo-desktop {
        display: none;
    }

    .nav__logo-mobile {
        display: block;
    }
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    width: 100%;
}

.hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    overflow: hidden;
}

/* Background com Zoom (Ken Burns) */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 6s ease-out;
}

.hero__slide--active {
    opacity: 1;
    z-index: 2;
}

.hero__slide--active .hero__bg {
    animation: kenBurns 20s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Overlay escuro */
.hero__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto !important;
    /* Força centralização contra conflitos */
    padding: 0 20px;
    display: flex;
    pointer-events: none;
}

/* Posicionamento do Conteúdo */
.hero__content {
    pointer-events: auto;
    color: var(--white);
    max-width: 800px;
    padding: 1rem;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Tipografia Base (Desktop) */
.hero__title {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
}

.hero__subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
}

.hero__cta {
    font-size: 1rem;
    padding: 14px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: var(--border-radius);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 182, 172, 0.4);
}

/* Variações de Posição (Desktop) */
@media (min-width: 769px) {
    .hero__content--center_center {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero__content--bottom_left {
        align-self: flex-end;
        margin-left: 0;
        margin-right: auto;
        text-align: left;
        margin-bottom: 50px;
    }

    .hero__content--bottom_center {
        align-self: flex-end;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 50px;
    }

    .hero__content--bottom_right {
        align-self: flex-end;
        margin-left: auto;
        margin-right: 0;
        text-align: right;
        margin-bottom: 50px;
    }
}

/* Mobile Overrides - CORREÇÃO DE FONTE E LAYOUT */
@media (max-width: 768px) {
    .hero {
        height: 85vh;
        min-height: 600px;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
        align-self: flex-end;
        padding: 1.5rem;
        margin-bottom: 60px;
        text-align: center !important;
    }

    .hero__title {
        font-size: 1.5rem !important;
        /* Tamanho 1.5rem garantido */
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero__cta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Animations */
.hero__slide--active .hero__title {
    animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.hero__slide--active .hero__subtitle {
    animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.hero__slide--active .hero__cta {
    animation: fadeUp 0.8s ease-out 0.9s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicadores */
.hero__indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero__indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero__indicator--active,
.hero__indicator:hover {
    background: var(--white);
    width: 50px;
}

/* Setas */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero__arrow--prev {
    left: 30px;
}

.hero__arrow--next {
    right: 30px;
}

/* ===== SEÇÃO WHY ===== */
.why {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.why__item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.why__item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.why__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.why__title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-normal);
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.why__description {
    color: var(--gray);
    font-weight: var(--font-weight-light);
}

.why__cta {
    text-align: center;
}

/* ===== SEÇÃO PACKAGES (NOVO LAYOUT HORIZONTAL) ===== */
.packages {
    padding: var(--section-padding);
    background: #f9fafb;
}

.packages__header {
    text-align: center;
    margin-bottom: 3rem;
}

.packages__empty {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}

/* --- Navigation (Tabs) --- */
.packages__nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.packages__nav-wrapper {
    display: inline-flex;
    background: var(--white);
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.packages__nav-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.packages__nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--pkg-color, var(--primary-color));
}

.packages__nav-btn.active {
    background-color: var(--pkg-color, var(--primary-color)) !important;
    color: #FFFFFF !important;
}

/* --- Wrapper & Animations --- */
.packages__wrapper {
    position: relative;
    /*max-width: 1100px;*/
    margin: 0 auto;
    /* Grid stack para sobreposicao */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

/* --- Card Active Logic --- */
.package-card {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;

    /* Dynamic Border Configuration */
    border-style: solid;
    border-color: var(--border-color, #E5E7EB);
    border-width: 0;
    /* Default, overridden by classes below */
}

/* Border Width Utilities */
.package-card.border {
    border-width: 1px;
}

.package-card.border-0 {
    border-width: 0;
}

.package-card.border-2 {
    border-width: 2px;
}

.package-card.border-4 {
    border-width: 4px;
}

.package-card.border-8 {
    border-width: 8px;
}

.package-card.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.package-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* --- Desktop Layout (> 900px) --- */
@media (min-width: 900px) {
    .package-card__inner {
        flex-direction: row;
        align-items: stretch;
        min-height: 500px;
        /* Altura mínima base */
    }

    .package-card__slider {
        /* flex: 1.5;
        60% approx */
        width: 62%;
        position: relative;
        min-height: 100%;
    }

    .package-card__content {
        /* flex: 1;
        40% approx */
        width: 38%;
        padding: 3rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* --- Slider Styling --- */
.package-card__slider {
    background-color: var(--primary-color);
    overflow: hidden;
    position: relative;
}

/* No mobile, slider tem altura fixa */
@media (max-width: 899px) {
    .package-card__slider {
        height: 300px;
        width: 100%;
    }

    .package-card__content {
        padding: 2rem;
    }
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.slide-item.active {
    opacity: 1;
    z-index: 2;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: #FFF;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-prev {
    left: 1.5rem;
}

.slider-next {
    right: 1.5rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #FFF;
    transform: scale(1.2);
}

/* --- Right Content Styling --- */
.package-card__content {
    position: relative;
}

/* Title & Subtitle */
.package-card__header {
    margin-bottom: 2rem;
}

.package-card__title {
    color: var(--title-color, var(--primary-color));
    /* Updated to use Admin Variable */
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

/* Font Variants */
.font-script {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: 3.5rem;
}

.font-sans {
    font-family: var(--font-family);
    font-size: 2.5rem;
    font-weight: 700;
}

.package-card__subtitle {
    font-size: 1rem;
    color: var(--subtitle-color, #888);
    /* Optional update for consistency */
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Features List */
.package-card__features {
    list-style: none;
    margin-bottom: 1.0rem;
    flex-grow: 1;
}

.package-card__features li {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.feature-icon {
    color: var(--accent-color, var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Price & CTA */
.package-card__footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

.package-card__price-box {
    margin-bottom: 1rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--price-color, var(--primary-color));
    margin-bottom: -5px;
    display: block;
}

.price-value {
    font-size: 3.0rem;
    font-weight: 700;
    color: var(--price-color, var(--primary-color));
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 500;
}

.package-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--cta-bg, var(--primary-color));
    /* Updated to use Admin Variable */
    color: var(--cta-text, #FFF);
    text-decoration: none;
    border-radius: 8px;
    transition: filter 0.2s;
    font-weight: 600;
    padding: 1rem 1.5rem;
    /* Default padding */
}

.package-card__cta:hover {
    filter: brightness(110%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Padding classes from PHP */
.package-card__cta.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.package-card__cta.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.package-card__cta.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* Weight classes from PHP */
.package-card__cta.font-semibold {
    font-weight: 600;
}

.package-card__cta.font-bold {
    font-size: 1.2rem;
    font-weight: 700;
}

.package-card__cta.font-extrabold {
    font-weight: 800;
}

/* Link Footer */
.packages__footer-link {
    text-align: center;
    margin-top: 3rem;
}

.packages__footer-link a {
    color: var(--gray);
    text-decoration: underline;
    font-size: 0.9rem;
}

.packages__footer-link a:hover {
    color: var(--primary-color);
}

/* ===== FORM TRADICIONAL ===== */
.form {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form__header {
    text-align: center;
    margin-bottom: 3rem;
}

.form__container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form__input,
.form__select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 168, 154, 0.1);
}

.form__input::placeholder {
    color: #9ca3af;
}

/* Checkboxes estilizados */
.form__checkbox-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.form__checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
}

.form__checkbox {
    display: none;
}

.form__checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.form__checkbox:checked+.form__checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form__checkbox:checked+.form__checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form__checkbox-custom:hover {
    border-color: var(--primary-color);
}

.form__submit {
    width: 100%;
    margin-top: 1rem;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Modal de sucesso */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal__close:hover {
    background: #f3f4f6;
    color: var(--text-color);
}

.modal__icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.modal__body p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.modal__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal__whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 768px) {
    .form__container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .form__checkbox-group {
        flex-direction: column;
        gap: 1rem;
    }

    .modal__content {
        padding: 2rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .form__container {
        padding: 1.5rem;
    }

    .modal__content {
        padding: 1.5rem;
    }

    .modal__title {
        font-size: 1.3rem;
    }
}


/* ===== GALERIA COM THUMBNAILS (MASONRY) ===== */
.gallery__grid {
    column-count: 4;
    column-gap: 0.5rem;
    margin: 40px 0;
}

.gallery__thumbnail {
    position: relative;
    /* Aspect Ratio Removed for Masonry Flow */
    width: 100%;
    margin-bottom: 0.5rem;
    break-inside: avoid;
    border-radius: 0;
    /* Squared */
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    cursor: pointer;
    line-height: 0;
    /* Kill text node ghost space */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery__thumb-image {
    display: block;
    /* Removes bottom whitespace */
    width: 100%;
    height: auto;
    /* Let it flow naturally */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__thumbnail:hover .gallery__thumb-image {
    transform: scale(1.1);
}

.gallery__thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Semi-dark overlay restored */
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__thumbnail:hover .gallery__thumb-overlay {
    opacity: 1;
}

.gallery__zoom-icon {
    color: var(--white);
    width: 32px;
    /* Smaller as requested */
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    /* Visibility without background */
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery__thumbnail:hover .gallery__zoom-icon {
    transform: scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox__container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 10000;
}

.lightbox__content {
    position: relative;
}

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox__close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox__prev {
    left: -70px;
}

.lightbox__next {
    right: -70px;
}

/* ===== RESPONSIVO GALERIA ===== */
@media (max-width: 1024px) {
    .gallery__grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery__grid {
        column-count: 2;
        /* Equalize with margin-bottom: 0.5rem (~8px) */
        column-gap: 0.5rem;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .lightbox__prev {
        left: -50px;
    }

    .lightbox__next {
        right: -50px;
    }

    .lightbox__close {
        top: -40px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {

    /* Keep 2 columns on small screens as requested */
    .gallery__grid {
        column-count: 2;
        gap: 8px;
    }

    .lightbox__nav {
        position: fixed;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .lightbox__prev {
        left: 20px;
    }

    .lightbox__next {
        right: 20px;
    }

    .lightbox__close {
        position: fixed;
        top: 20px;
        right: 20px;
    }
}





/* ===== SEÇÃO SOBRE - ESTILOS COMPLETOS ===== */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about__header {
    text-align: center;
    margin-bottom: 80px;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.about__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about__photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about__image:hover .about__photo {
    transform: scale(1.05);
}

.about__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: var(--white);
}

.about__quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about__text {
    padding-left: 20px;
}

.about__title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.about__story {
    margin-bottom: 40px;
}

.about__story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about__story strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about__features {
    margin-bottom: 40px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about__feature-content h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.about__feature-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.about__cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: var(--white);
}

.about__cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about__cta .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.about__cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Responsivo para seção sobre */
@media (max-width: 1024px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about__text {
        padding-left: 0;
    }

    .about__image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

    .about__header {
        margin-bottom: 60px;
    }

    .about__content {
        gap: 40px;
    }

    .about__title {
        font-size: 2rem;
    }

    .about__story p {
        font-size: 1rem;
    }

    .about__feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .about__cta {
        padding: 25px 20px;
    }

    .about__cta-text {
        font-size: 1.1rem;
    }
}


/* ===== MODAL ATUALIZADO CONFORME LAYOUT ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal__content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: var(--dark-gray);
}

.modal__icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.modal__title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.modal__text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.modal__whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.modal__whatsapp svg {
    fill: currentColor;
}

/* Responsivo para modal */
@media (max-width: 768px) {
    .modal__content {
        padding: 30px 25px;
        max-width: 350px;
    }

    .modal__title {
        font-size: 1.6rem;
    }

    .modal__icon {
        font-size: 40px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make logo white if needed */
}

.footer__description {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
    text-align: left;
    /* Override global section title */
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #adb5bd;
}

.footer__contact-item a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__contact-item a:hover {
    color: var(--primary-color);
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__link {
    color: #adb5bd !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.footer__credits {
    margin-top: 5px;
}

/* Responsivo Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer__brand {
        margin: 0 auto;
    }

    .footer__title {
        text-align: center;
    }

    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__contact-item {
        justify-content: center;
    }
}

/* ===== GLOBAL TYPOGRAPHY RESPONSIVE ===== */
@media (max-width: 768px) {
    .section__title {
        font-size: 1.8rem;
    }
}

/* ===== COMO FUNCIONA (HOW IT WORKS) ===== */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--white);
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Linha Conectora (Desktop) */
.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step__number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 182, 172, 0.3);
    transition: transform 0.3s ease;
}

.step:hover .step__number {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

.step__title {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step__description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 3rem;
    }

    .steps::before {
        display: none;
    }

    .step__number {
        margin-bottom: 1rem;
    }
}

/* ===== TESTIMONIALS REFINED ===== */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials__header {
    margin-bottom: 4rem;
    text-align: center;
}

/* Slider Container */
.testimonials__slider-container {
    max-width: 1240px;
    /* Slight increase */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Mask slides */
    padding: 40px 20px;
    /* Increased padding for shadow breathing room */
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smoother easing */
    gap: 30px;
    padding-bottom: 10px;
}

/* Card Styling */
.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Reduced shadow intensity */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    /* Slider Sizing (show 3 per view on desktop) */
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
}

/* Responsive Slider Sizing */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        min-height: 450px;
    }
}

.testimonial-card--has-cover {
    background-color: #222;
    color: var(--white);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Softer hover shadow */
}

/* Background Image & Blur Effect */
.testimonial-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease, filter 0.4s ease;
    z-index: 0;
}

.testimonial-card:hover .testimonial-card__bg {
    transform: scale(1.1);
    filter: blur(3px);
    /* Blur effect on hover */
}

.testimonial-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.testimonial-card:hover .testimonial-card__overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.7) 100%);
}

/* Content Wrapper */
.testimonial-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Avatar Top Left */
.testimonial-card__avatar-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    align-self: flex-start;
    position: relative;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 3px;
}

.testimonial-card__avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Evidence Button refined */
.testimonial-card__evidence-btn {
    position: absolute;
    top: 10px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;

    /* Default Hidden on Desktop */
    opacity: 0;
    transform: translateY(-5px);
}

/* Show on Hover */
.testimonial-card:hover .testimonial-card__evidence-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Visibility Strategy */
@media (max-width: 1024px) {
    .testimonial-card__evidence-btn {
        /* On mobile/tablet, show discreetly without hover needed */
        opacity: 0.6;
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.3);
        /* Darker bg for visibility against light images */
    }
}

.testimonial-card__evidence-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.testimonial-card__evidence-btn i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Text Body */
.testimonial-card__body {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.testimonial-card__text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--dark-gray);
    text-align: left;
    position: relative;
}

.testimonial-card--has-cover .testimonial-card__text {
    color: #f1f1f1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Author Section */
.testimonial-card__author {
    width: 100%;
    text-align: left;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
}

.testimonial-card--has-cover .testimonial-card__author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Typography Unified */
.testimonial-card__name {
    font-family: 'Mrs Saint Delafield', cursive;
    /* Single Font */
    font-size: 2.8rem;
    font-weight: 400;
    /* Set Weight */
    color: var(--dark-gray);
    margin-bottom: -0.2rem;
    /* Adjusted Margin */
    display: inline-block;
    line-height: 1;
}

.testimonial-card--has-cover .testimonial-card__name {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-card__subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    font-weight: 400;
    /* Set Weight */
    margin-top: 5px;
}

.testimonial-card--has-cover .testimonial-card__subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* Slider Controls */
.testimonials__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
}

.testimonials__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--dark-gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials__btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.testimonials__btn:disabled {
    opacity: 0.5;
    cursor: allowed;
    transform: none;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding-bottom: 40px;
    /* Generous bottom padding */
    text-align: center;
    background-color: var(--white);
}

.final-cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta__title {
    font-size: 1.6rem;
    font-weight: 400;
    /* Lighter weight */
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .final-cta__title {
        font-size: 1.35rem;
        padding: 0 1rem;
    }
}