/*
   SeuExamify TSL - Direct Response Theme
   Deep forest green base with highly persuasive contrasting elements.
*/

:root {
    /* TSL Core Palette */
    --clr-bg-main: #102C21;      /* Deep Forest Green (Hero / Body ) */
    --clr-bg-light: #F4F6F3;     /* Off-white for reading sections */
    --clr-bg-surface: #173B2E;   /* Dark Green Surface for cards */
    --clr-bg-highlight: #E1ECE5; /* Pale Mint bg */
    
    --clr-cta: #7ADCA6;          /* High converting Mint Green button */
    --clr-cta-hover: #5DB585;    
    
    --clr-text-white: #FFFFFF;
    --clr-text-main: #2A3C34;    /* Text on white background */
    --clr-text-muted: #A6C8B5;   /* Muted text on dark background */
    
    --clr-danger: #EF4444;       
    --clr-warning: #FBBF24;
    --clr-info: #38BDF8;
    --clr-success: #10B981;

    --font-serif: 'Lora', serif;
    --font-sans: 'Inter', sans-serif;
    
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0,0,0,0.5);
    
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.theme-dark-green {
    background-color: var(--clr-bg-main);
    color: var(--clr-text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* UTIL CLASSES */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-medium { max-width: 900px; margin: 0 auto; }
.container-narrow { max-width: 750px; margin: 0 auto; }

.section { padding: 5rem 0; }
.pt-0 { padding-top: 0; }
.pt-3 { padding-top: 3rem; }
.pt-6 { padding-top: 6rem; }
.pb-0 { padding-bottom: 0; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-cta { color: var(--clr-cta); }
.text-white { color: var(--clr-text-white); }
.text-muted { color: var(--clr-text-muted); }
.text-green-dark { color: var(--clr-bg-main); }
.text-danger { color: var(--clr-danger); }
.text-warning { color: var(--clr-warning); }
.text-info { color: var(--clr-info); }
.text-success { color: var(--clr-success); }
.bg-light { background-color: var(--clr-bg-light); color: var(--clr-text-main); }
.bg-highlight { background-color: var(--clr-bg-highlight); }
.shadow-heavy { box-shadow: var(--shadow-heavy); }

/* HEADINGS TSL STYLE */
.headline {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
@media (max-width: 768px) { .headline { font-size: 2.8rem; } }

.sub-headline {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

/* TOPBAR */
.topbar-promo {
    background-color: rgba(255,255,255,0.05);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-promo i { color: var(--clr-cta); margin-right: 5px; }

/* HEADER (Minimalist for TSL) */
.header {
    padding: 1.5rem 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-link h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.btn-outline-sm {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.875rem;
    color: var(--clr-text-white);
}
.btn-outline-sm:hover {
    border-color: var(--clr-cta);
    color: var(--clr-cta);
}

/* CARTOON BADGE */
.badge-subtle {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    background: rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}
.badge-subtle i { color: var(--clr-info); margin-right: 4px; }

/* CTAS */
.btn-cta {
    display: inline-block;
    background-color: var(--clr-cta);
    color: var(--clr-bg-main);
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 15px rgba(122, 220, 166, 0.4);
    cursor: pointer;
}
.btn-cta:hover { background-color: var(--clr-cta-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(122, 220, 166, 0.6); }

.pulse-grow { animation: pulseGlowBtn 2.5s infinite; }
@keyframes pulseGlowBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(122, 220, 166, 0.6); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(122, 220, 166, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(122, 220, 166, 0); }
}

.guarantee-text {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 1rem;
}
.dot { margin: 0 0.5rem; opacity: 0.5; }

/* BANNER TRACK (Marquee Effect) */
.features-banner {
    background: var(--clr-bg-surface);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.banner-track {
    display: inline-block;
    animation: scrollBanner 30s linear infinite;
}
.banner-track span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--clr-cta);
    margin-right: 3rem;
}
@keyframes scrollBanner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* requires dupes naturally in prod, but css demo covers it */
}

/* DEMO CHAT APP WEB-STYLE */
.bg-clean-light {
    background-color: #FAFAFA; /* Off-white, very clean */
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
}
@media(min-width: 768px){ .demo-header-custom { text-align: left; margin-bottom: 2rem; } }
.badge-text-cyan { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; color: #5B9D79; margin-bottom: 0.75rem; text-transform: uppercase; }
.italic-light-green { font-style: italic; color: #7ADCA6; font-weight: 500;}

.chat-app-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
    display: flex; flex-direction: column;
    height: 600px;
    border: 1px solid rgba(0,0,0,0.05);
    transform: translateY(30px); opacity:0;
    animation: fadeUpChat 0.8s forwards 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes fadeUpChat { to { transform:translateY(0); opacity:1; } }

.ca-header {
    background: #306B49;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ca-avatar {
    width: 48px; height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem;
}
.ca-info strong { color: #fff; display: block; font-size: 1.1rem; }
.online-status { font-size: 0.8rem; color: #D1E5DA; display: flex; align-items: center; gap: 6px; margin-top: 2px;}
.dot-online { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; display:inline-block; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%, 100% { opacity:1; transform:scale(1);} 50% { opacity:0.5; transform:scale(0.8);} }

.ca-body {
    flex: 1;
    background: #FCFCFA;
    padding: 2rem;
    overflow-y: auto;
    display: flex; flex-direction: column; gap: 1rem;
}
.ca-msg-row { display: flex; width: 100%; opacity: 0; transform: translateY(10px); animation: msgPopIn 0.4s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.ca-msg-row.received { justify-content: flex-start; }
.ca-msg-row.sent { justify-content: flex-end; }

.ca-bubble {
    max-width: 80%;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.received .ca-bubble {
    background: #FFFFFF;
    color: #333;
    border: 1px solid #EBECE8;
    border-top-left-radius: 4px;
}
.sent .ca-bubble {
    background: #1A3E2C;
    color: #fff;
    border-bottom-right-radius: 4px;
}
@keyframes msgPopIn { to { opacity: 1; transform: translateY(0); } }

.typing { display: flex; gap: 4px; padding: 0.5rem 0.25rem; }
.typing .dot { width: 6px; height: 6px; background: #999; border-radius: 50%; animation: bounce 1.4s infinite ease-in-out; }
.typing .dot:nth-child(1) { animation-delay: -0.32s; } .typing .dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce { 0%,80%,100% {transform:scale(0);} 40% {transform:scale(1);} }

.ca-footer {
    background: #F1F0EC;
    padding: 1.5rem 2rem;
    border-top: 1px solid #E5E5E0;
}
.ca-options-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}
.ca-options-scroll::-webkit-scrollbar { display: none; }
.ca-pill {
    white-space: nowrap;
    background: #FFFFFF;
    border: 1px solid #D1E5DA;
    color: #4A5D54;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.ca-pill:hover { background: #1A3E2C; color: #fff; border-color: #1A3E2C; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1);}

.ca-input-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}
#ca-input {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}
#ca-input:focus { border-color: #306B49; }
.ca-send-btn {
    background: #1A3E2C;
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.25rem;
    transition: var(--transition);
}
.ca-send-btn:hover { background: #7ADCA6; color: #1A3E2C; transform: scale(1.05); }

.demo-disclaimer { font-size: 0.8rem; color: #648A77; }

/* DORES ANIMATED LIST */
.dores-list-animated {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 750px;
    margin: 0 auto;
}
.dor-item-anim {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateX(-40px);
}
.dor-item-anim.animate-in {
    opacity: 1;
    transform: translateX(0);
}
.dor-item-anim:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.05);
    transform: translateX(10px) scale(1.02);
}
.dor-icon-wrapper {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    margin-top: 4px;
}
.bg-icon-red { background: #EF4444; }
.bg-icon-yellow { background: #FBBF24; color: #000; }
.bg-icon-blue { background: #38BDF8; color: #000; }

.dor-title-anim { font-size: 1.25rem; font-weight: 700; font-family: var(--font-serif); margin-bottom: 0.5rem; color: #fff; }
.dor-text-anim { font-size: 0.95rem; color: #a1b0a8; line-height: 1.6; font-family: var(--font-sans); }

.font-sm { font-size: 0.9rem !important; }
.text-black-bold { color: #111 !important; }
.uppercase { text-transform: uppercase; letter-spacing: 0.5px; font-weight: 800;}
.mb-6 { margin-bottom: 4rem; }
.shadow-strong { box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important; }

/* BENEFITS SECTION (NOVO) */
.benefits-header-custom { margin-bottom: 4rem; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.b-card {
    background: #FFFFFF;
    border: 1px solid #EBECE8;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}
.b-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.b-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #D1E5DA;
    background: #FAFCFB;
}
.b-icon-wrap {
    width: 64px; height: 64px;
    background: #EEF8F3;
    border-radius: 16px;
    display: flex; justify-content: center; align-items: center;
    font-size: 2rem; flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.b-card:hover .b-icon-wrap {
    transform: rotate(-10deg) scale(1.15);
}
.b-text-wrap h3 { font-size: 1.3rem; font-weight: 700; color: #111; margin-bottom: 0.75rem; font-family: var(--font-sans); }
.b-text-wrap p { font-size: 1.05rem; color: #555; line-height: 1.5; margin: 0; }

.testimonials-header { margin-bottom: 3rem; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.t-card {
    background: #FAFAEA; /* Very light cream/yellow as in image */
    border: 1px solid #EBECE8;
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    opacity: 0; 
    transform: translateY(40px);
}
.t-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}
/* Creative Hover Animation */
.t-card:hover {
    transform: translateY(-8px) scale(1.02) rotate(-1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: #D1E5DA;
    cursor: default;
}
.t-stars {
    color: #D97706;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: flex; gap: 2px;
}
.t-stars i { animation: pulseStar 3s infinite ease-in-out; }
.t-stars i:nth-child(2) { animation-delay: 0.2s; }
.t-stars i:nth-child(3) { animation-delay: 0.4s; }
.t-stars i:nth-child(4) { animation-delay: 0.6s; }
.t-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes pulseStar {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; color: #F59E0B; }
}

.t-quote {
    font-size: 0.95rem;
    color: #4B5563;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.bg-avatar-green { background: #DCFCE7; color: #166534; }
.bg-avatar-yellow { background: #FEF3C7; color: #92400E; }
.bg-avatar-pink { background: #FCE7F3; color: #9D174D; }

.t-author-info { display: flex; flex-direction: column; }
.t-author-info strong { font-size: 0.9rem; color: #111; }
.t-author-info span { font-size: 0.75rem; color: #888; }

/* PRICING LIGHT THEME */
.bg-pricing { background-color: #F4F5F1; color: var(--clr-text-main); }
.badge-text-green { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; color: #437158; margin-bottom: 0.75rem; text-transform: uppercase; }
.pricing-header-light {  }
.section-title-light { font-size: 2.8rem; line-height: 1.1; font-family: var(--font-serif); font-weight: 600; color: #1B1B1B; }
.italic-green { font-style: italic; color: #437158; font-weight: 500;}
.section-subtitle-light { font-size: 1rem; color: #666; font-family: var(--font-sans); }

.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 3rem;
}
.p-card-light {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.p-card-light.featured-light {
    border: 2px solid #234735;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 2;
}
.p-ribbon-dark {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #234735;
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex; gap:0.4rem; align-items:center;
}
.p-ribbon-gold {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #A97A21;
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex; gap:0.4rem; align-items:center;
}
.p-header-light h4 { color: #888; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 0.5rem; text-transform: uppercase; }
.p-price-strong { 
    font-family: var(--font-serif); 
    font-size: 3.25rem; 
    font-weight: 700; 
    color: #111; 
    display: flex; 
    align-items: baseline; 
    margin-bottom: 0; 
    line-height:1; 
}
.p-price-strong .currency { font-size: 1.8rem; font-weight: 600; margin-right: 2px; }
.p-price-strong .period { font-size: 1rem; color: #888; font-family: var(--font-sans); font-weight: 500; margin-left:2px;}
.p-total-light { font-size: 0.85rem; color: #888; font-weight: 500; margin-top:0.4rem; margin-bottom: 1.25rem; }

.badge-discount-light {
    display: inline-block;
    background: #EDF7F1;
    color: #3F7556;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}
.p-features-light { list-style: none; margin-bottom: 2rem; flex: 1; }
.p-features-light li { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1rem; font-size: 0.9rem; color: #4A4A4A; }
.p-features-light i { color: #234735; font-size:1.1rem; margin-top:2px; font-weight:bold;}

.button-wrapper { width: 100%; margin-top: auto; }
.btn-purchase-outline {
    display: block; width: 100%; text-align: center;
    border: 1px solid #D1E5DA;
    background: #fff;
    color: #234735;
    padding: 0.9rem; border-radius: 30px; font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-purchase-outline:hover { background: #EDF7F1; border-color: #234735; }
.btn-purchase-solid {
    display: block; width: 100%; text-align: center;
    background: #234735;
    color: #fff;
    padding: 0.9rem; border-radius: 30px; font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid #234735;
}
.btn-purchase-solid:hover { background: #183325; }

/* PRICING BUTTON GLOW */
.btn-pulse-glow {
    animation: glowPulseBtn 2s infinite;
}
@keyframes glowPulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(35, 71, 53, 0.5); transform: scale(1); }
    70% { box-shadow: 0 0 0 20px rgba(35, 71, 53, 0); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(35, 71, 53, 0); transform: scale(1); }
}

/* MASCOT HERO ANIMATION */
.mascot-wrapper {
    display: flex; justify-content: center; align-items: center;
}
.mascot-img {
    width: 250px; height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}
.floating-anim { animation: walkSide 2.8s linear infinite; transform-origin: center bottom; }
@keyframes walkSide {
    0%   { transform: translate(0, 0px) rotate(0deg); }
    12%  { transform: translate(-15px, -10px) rotate(-3deg); } /* Apex do passo esquerdo */
    25%  { transform: translate(-30px, 0px) rotate(0deg); }    /* Pé no chão */
    37%  { transform: translate(-15px, -10px) rotate(3deg); }  /* Apex voltando ao centro */
    50%  { transform: translate(0, 0px) rotate(0deg); }        /* Centro plano */
    62%  { transform: translate(15px, -10px) rotate(3deg); }   /* Apex do passo direito */
    75%  { transform: translate(30px, 0px) rotate(0deg); }     /* Pé no chão */
    87%  { transform: translate(15px, -10px) rotate(-3deg); }  /* Apex voltando ao centro */
    100% { transform: translate(0, 0px) rotate(0deg); }        /* Centro plano */
}

/* HOW IT WORKS STEPS */
.steps-container {
    display: flex; justify-content: center; align-items: center;
    gap: 1.5rem; margin-bottom: 2rem; margin-top: 2rem;
}
.step-card {
    text-align: center; flex: 1;
    background: #fff; padding: 2.5rem 1.5rem 2rem;
    border-radius: 20px; border: 1px solid #EBECE8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative; transition: transform 0.3s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.step-number {
    position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
    width: 44px; height: 44px; background: #306B49; color: #fff;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 1.25rem; font-weight: 700; box-shadow: 0 4px 10px rgba(48,107,73,0.3);
}
.step-card h4 { font-size: 1.25em; font-weight: 700; color: #111; margin-bottom: 0.5rem; font-family:var(--font-serif); }
.step-card p { font-size: 0.95rem; color: #555; line-height: 1.5; margin:0; }
.step-arrow { font-size: 1.8rem; color: #C5D8CD; }
.border-divider-top { border-top: 1px solid #EBECE8; }

/* URGENCY / TIMER */
.headline-urgency {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}
.timer-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.time-block {
    background: #254035;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.time-block span {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.time-block small {
    font-size: 0.65rem;
    color: #8c9c94;
    margin-top: 8px;
    letter-spacing: 2px;
}
.time-colon {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #557064;
    font-weight: 700;
    margin-bottom: 25px; /* Optically center it */
}

/* FAQ SECTION */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #EBEBEB;
}
.faq-item {
    border-bottom: 1px solid #EBEBEB;
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    font-family: var(--font-sans);
}
.faq-question:hover {
    color: #234735;
}
.faq-icon {
    font-size: 1.25rem;
    color: #234735;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary large value suitable for animation */
    padding-bottom: 1.5rem;
}
.faq-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background-color: #1EBA59;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* FOOTER */
.footer-tsl {
    background: #1C382A; /* dark green background matching reference */
    padding: 4rem 0 3rem;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.8rem; }
.footer-links-clean { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 0.5rem; 
    flex-wrap: wrap; 
}
.footer-links-clean a { 
    color: #8c9c94; 
    font-size: 0.85rem; 
    transition: var(--transition);
}
.footer-links-clean a:hover { 
    color: #fff; 
}
.footer-links-clean .dot {
    color: #557064;
    font-size: 0.85rem;
}
.copyright { font-size: 0.8rem; color: #5c6c64; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .layout-demo { grid-template-columns: 1fr; gap: 2rem; }
    .whatsapp-wrapper { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .pt-3 { padding-top: 1.5rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid-3 { grid-template-columns: 1fr; gap: 2.5rem; }
    .p-card-light.featured-light { transform: scale(1); }
    .dor-card { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
    .hidden-mobile { display: none; }
    .section-title-light { font-size: 2.2rem; }
    .steps-container { flex-direction: column; gap: 3.5rem; padding-top: 2rem;}
    .step-arrow { transform: rotate(90deg); margin: -1.5rem 0;}