:root {
    --primary-beige: #f8f0e6;
    --secondary-beige: #e8d9cc;
    --accent-terracota: #b76e5a;
    --text-dark: #3a3a3a;
    --text-soft: #5a5a5a;
    --white-soft: #fffaf5;
    --border-light: rgba(183, 110, 90, 0.1);
    --bg-light-alt: #f5ebe1;
    --terracota-acentuado: #401205;
    --verde-oliva: #264734;
    --verde-pinheiro: #1a3a2f;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white-soft);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: var(--white-soft) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0 0 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* Top row with brand and icons */
.nav-top-row {
    width: 100%;
    padding: 0 0 8px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.navbar-brand span {
    color: var(--accent-terracota);
    font-style: italic;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icon {
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-icon:hover {
    color: var(--accent-terracota);
}

/* Line and navigation container */
.nav-bottom-container {
    border-top: 1px solid var(--border-light);
    padding: 6px 0;
    margin-top: 2px;
}

/* Main navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 2px 0;
}

.main-nav .nav-link {
    color: var(--terracota-acentuado) !important;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-terracota);
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after {
    width: 100%;
}

/* Header container */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: #f9f5ec;
    background-image: url('img/15.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

.hero .row {
    justify-content: flex-end;
}

.hero .container,
.hero .container-fluid {
    position: relative;
    z-index: 2;
    padding-right: 0;
}

.hero .col-lg-8 {
    max-width: none;
    width: auto;
    margin-left: auto;
    text-align: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 2.5rem;
    border-radius: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(249, 245, 236, 0) 0%,
        rgba(249, 245, 236, 0.03) 35%,
        rgba(249, 245, 236, 0.10) 50%,
        rgba(249, 245, 236, 0.9) 62%,
        rgb(249, 245, 236) 70%,
        rgb(249, 245, 236) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-terracota), transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-buttons {
    transform: translateX(10px);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #264734;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 300;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-left: -10rem;
    color: #264734;
    max-width: 800px;
}

.hero-title span {
    color: #264734;
    font-style: italic;
}

.hero-text {
    font-size: 1.2rem;
    color: #401205;
    margin-bottom: 3rem;
    margin-left: -5rem;
    max-width: 600px;
}

.hero .hero-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgb(38, 71, 52);
    padding: 2rem;
    background: rgba(183, 110, 90, 0.07);
    border-radius: 10px;
    margin-top: 2rem;
    margin-left: -8rem;
    border-left: 4px solid #B76E5A;
    backdrop-filter: blur(4px);
}

.quote-box {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgb(38, 71, 52);
    padding: 2rem;
    background: rgba(183, 110, 90, 0.07);
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #B76E5A;
    backdrop-filter: blur(4px);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-terracota);
    border: none;
    padding: 14px 35px;
    font-weight: 500;
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #9e5b48;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 110, 90, 0.3);
}

.btn-outline-primary {
    border: 1px solid #B76E5A;
    color: #B76E5A;
    padding: 14px 35px;
    font-weight: 500;
    border-radius: 5px;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-outline-primary:hover {
    background: #B76E5A;
    color: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-terracota);
}

.section-title p {
    color: var(--text-soft);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards */
.card {
    border: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-terracota), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    border-radius: 0;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    padding: 0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.service-card:hover .service-icon {
    background: var(--accent-terracota);
    color: white;
    transform: scale(1.05);
}

/* =========================================
   SECÇÃO: PARA QUEM É ESTA JORNADA
   ========================================= */

/* Fundo da secção com imagem */
.jornada-section {
    background-image: 
        linear-gradient(
            135deg, 
            rgba(255, 250, 245, 0.92) 0%, 
            rgba(232, 217, 204, 0.88) 100%
        ),
        url('img/litem.png');
    background-position: center 25%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

/* Títulos e descrições da secção */
.section-title .jornada-main-title {
    color: var(--verde-pinheiro);
}


.jornada-subtitle {
    color: var(--accent-terracota);
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: -10px;
}

.jornada-description {
    max-width: 800px;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
}

/* Estrutura dos Cards */
.jornada-card {
    border: 1px solid var(--border-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.jornada-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.jornada-card-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Ícone circular no topo */
.jornada-icon-wrapper {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--primary-beige);
    color: var(--verde-pinheiro);
    border-radius: 50%;
    display: inline-block;
    font-size: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.jornada-card:hover .jornada-icon-wrapper {
    background: var(--accent-terracota);
    color: var(--primary-beige);
    transform: scale(1.05);
}

/* Título de cada card */
.jornada-card-title {
    font-family: 'Playfair Display', serif;
    color: var(--terracota-acentuado);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Lista de características */
.jornada-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    color: var(--text-soft);
    font-size: 0.95rem;
    flex-grow: 1;
}

.jornada-list-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.jornada-check-icon {
    color: var(--accent-terracota);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Rodapé do card com objetivo */
.jornada-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.jornada-objetivo {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.jornada-objetivo-label {
    color: var(--accent-terracota);
}


/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg,#D8C3A5  0%,  #4B3729  100%);
    padding: 100px 0;
    position: relative;
}


.benefits-section::before {
    content: '✦';
    position: absolute;
    left: 5%;
    top: 10%;
    font-size: 12rem;
    opacity: 0.03;
    color: var(--accent-terracota);
    transform: rotate(15deg);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    border-color: var(--accent-terracota);
    box-shadow: 0 10px 25px rgba(183, 110, 90, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--verde-pinheiro);
    min-width: 50px;
}

.benefit-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-text p {
    color: var(--text-soft);
    margin-bottom: 0;
}

.benefits-image-overlay-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.benefits-image-overlay {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.benefits-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(36, 63, 49, 0.85) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.benefits-overlay-quote {
    color: #f2efe6;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    border-left: 4px solid var(--accent-terracota);
    padding-left: 1.2rem;
}

.benefits-overlay-quote p {
    margin: 0;
}





/* About Section */
.about-section {
    background: #f9f5ec;
    padding: 3rem 2rem;
}

.aboutjornada-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: #f2efe6 !important;
}

.about-card {
    max-width: 1700px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch; /* ← Força ambas as colunas a ter a mesma altura */
    border-radius: 22px;
    overflow: hidden;
}


.about-content {
    background: #243f31;
    color: #fff;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;        /* ← Centra horizontalmente */
    text-align: center;         /* ← Centra o texto */
    justify-content: center;    /* ← Centra verticalmente */
}


.about-label {
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.about-content > h2 {
    display: block;
    width: 100%;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.about-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #f3d6c8;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #c97761;
    border-radius: 8px;
    font-size: 1.15rem;
    line-height: 1.6;
}

.about-signature {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    font-size: 1.15rem;
}

.about-signature p {
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.85);
}

.about-signature strong {
    color: #f3d6c8;
}

.about-btn {
    width: fit-content;
    background: #c97761;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #c97761;
}

.about-btn:hover {
    background: transparent;
    color: #c97761;
}

.about-image {
    height: 100%; /* ← Ocupa toda a altura disponível */
    min-height: 400px; /* ← Altura mínima como segurança */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* ← Ajusta o enquadramento do rosto */
    display: block;
}


/* Pain Section */
.pain-section {
    background: 
        linear-gradient(
            135deg, 
            rgba(255, 250, 245, 0.92) 0%, 
            rgba(232, 217, 204, 0.88) 100%
        ),
        url('img/2.jpeg') center center / cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.pain-section::before,
.pain-section::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-terracota);
    opacity: 0.02;
    border-radius: 50%;
}

.pain-section::before {
    top: 20px;
    left: 20px;
}

.pain-section::after {
    bottom: 20px;
    right: 20px;
}

.pain-question {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-terracota);
    margin-bottom: 2rem;
}

.pain-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(rgba(28, 60, 48, 0.9), rgba(45, 62, 51, 0.9));
    padding: 80px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-beige);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.quote-author {
    font-size: 1.1rem;
    color: var(--accent-terracota);
    margin-top: 1.5rem;
    font-style: normal;
}

/* =========================================
   SECÇÃO: AS NOSSAS PRÁTICAS
   ========================================= */

/* Fundo da secção */
.praticas-section {
    background: linear-gradient(180deg, var(--terracota-acentuado) 0%, var(--accent-terracota) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo sutil */
.praticas-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* Títulos da secção */
.praticas-title {
    position: relative;
    z-index: 2;
}

.praticas-main-title {
    color: #f2efe6 !important;
}

.praticas-main-title::after {
    background: rgba(242, 239, 230, 0.4) !important;
}

.praticas-subtitle {
    color: rgba(242, 239, 230, 0.85) !important;
}

/* Estrutura principal do card */
.pratica-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    position: relative;
}

.pratica-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.pratica-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--primary-beige);
    flex-shrink: 0;
}


.pratica-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

/* =========================================
   ENQUADRAMENTO INDIVIDUAL DAS IMAGENS
   ========================================= */

/* Yoga Sistêmico - Mostrar mais o topo para não cortar a cabeça */
.img-yoga {
    object-position: center 45%;
}

/* LITEM - Focar na parte média-superior */
.img-litem {
    object-position: center;
}

/* Grupos Terapêuticos - Manter vista geral do grupo */
.img-grupos {
    object-position: 10% 10%;
}

/* Aromaterapia - Mostrar o rosto da terapeuta sem cortar */
.img-aroma {
    object-position: center 75%;
}


.pratica-card:hover .pratica-image {
    transform: scale(1.08);
}

/* Overlay suave sobre a imagem */
.pratica-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(64, 18, 5, 0.1) 100%
    );
    transition: opacity 0.4s ease;
}

.pratica-card:hover .pratica-image-overlay {
    opacity: 0.7;
}

/* Conteúdo do card */
.pratica-content {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

/* Título de cada prática */
.pratica-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--terracota-acentuado);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Descrição da prática */
.pratica-description {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Botão de ação elegante */
.pratica-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: 25px;
    border: 2px solid var(--verde-pinheiro);
    background: transparent;
    color: var(--verde-pinheiro);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.pratica-btn:hover {
    background: var(--verde-pinheiro);
    color: white;
    gap: 0.8rem;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 110, 90, 0.3);
}

.pratica-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.pratica-btn:hover i {
    transform: translateX(3px);
}



/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--accent-terracota);
    box-shadow: 0 15px 35px rgba(183, 110, 90, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 3px solid var(--accent-terracota);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--accent-terracota);
    font-size: 1.1rem;
}

/* FAQ */
.section-faq {
    background:#4B3729;
    padding: 3rem 2rem;
}
.section-faq .section-title h2 {
    color: #f2efe6;
}
.section-faq .section-title p {
    color:  var(--accent-terracota);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    background: white;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(183, 110, 90, 0.02);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-soft);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
    border-top: 1px solid var(--border-light);
}

/* CTA Final */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-terracota) 0%, var(--terracota-acentuado) 100%);
    color: #f2efe6;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '☯';
    position: absolute;
    left: 10%;
    top: 20%;
    font-size: 10rem;
    opacity: 0.08;
    color: rgba(242, 239, 230, 0.12);
    transform: rotate(20deg);
}

.final-cta::after {
    content: '✦';
    position: absolute;
    right: 10%;
    bottom: 20%;
    font-size: 8rem;
    opacity: 0.06;
    color: rgba(242, 239, 230, 0.12);
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: #f2efe6;
}

.final-cta p {
    position: relative;
    z-index: 2;
    color: #f2efe6;
}

.final-cta .btn {
    position: relative;
    z-index: 2;
}

.final-cta .btn.btn-primary {
    background-color: #f2efe6;
    color: #244434;
    border-color: transparent;
}

.final-cta .btn.btn-primary:hover {
    background-color: #e6decf;
    color: #244434;
}

/* Footer */
footer {
    background: #2D3E33;
    color: white;
    padding: 60px 0 20px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-beige);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-terracota);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-terracota);
    transform: translateY(-3px);
}

