:root {
    --primary: #dd9803;
    --primary-dark: #b37a02;
    --secondary: #2ecc71;
    --secondary-dark: #27ae60;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-main: #ffffff;
    --bg-light: #f9f9f9;
    --bg-darker: #eaeaea;
    --bg-brand-dark: #0a1f13;
    --border-color: #dddddd;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--primary);
}

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

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-darker {
    background-color: var(--bg-darker);
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(221, 152, 3, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    background-color: var(--bg-main);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links a {
    margin-left: 20px;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo img {
        height: 26px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-links a {
        margin-left: 10px;
        font-size: 0.85rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        justify-content: center;
    }
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* --- Cards --- */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-oro {
    border-top: 5px solid var(--primary);
}

.card-plata {
    border-top: 5px solid var(--text-muted);
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.card-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.card-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.icon {
    font-weight: bold;
}

.icon.check {
    color: var(--secondary);
}

.icon.cross {
    color: #e74c3c;
}


/* --- Mockups Section --- */
.mockups-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.mockup-window {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-window:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.mockup-window.desktop {
    width: 100%;
    max-width: 680px;
}

.mockup-window.mobile {
    width: 290px;
    height: 520px;
    border-radius: 36px;
    border: 12px solid #1a1a1a;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mockup-header {
    background: #f4f4f4;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.url-bar {
    background: #ffffff;
    flex: 1;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid #e2e2e2;
    font-family: monospace;
}

.mockup-body {
    padding: 20px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

/* Showcase/Feature Spaces styling */
.showcase-box {
    background-color: #4b5563;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px dashed #9ca3af;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 10px;
}

.showcase-top-banner {
    height: 60px;
    font-size: 0.85rem;
}

.showcase-grid-banner {
    height: 130px;
    font-size: 0.85rem;
    grid-column: span 1;
}

/* --- Mockup Tabs --- */
.mockups-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f0f0f0;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(221, 152, 3, 0.25);
}

.tab-content {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.tab-content.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Category Mockup layouts */
.category-layout-sim {
    display: flex;
    gap: 15px;
    flex: 1;
}

.sidebar-sim {
    width: 120px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-line {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    width: 100%;
}

.sidebar-line:nth-child(2) {
    width: 80%;
}

.sidebar-line:nth-child(3) {
    width: 60%;
}

.category-grid-sim {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.item-sim-mini {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.img-sim-mini {
    background: #f0f0f0;
    height: 50px;
    border-radius: 4px;
}

.text-sim-mini {
    background: #f0f0f0;
    height: 6px;
    border-radius: 2px;
    width: 60%;
}

/* Email Mockup layouts */
.email-layout-sim {
    display: flex;
    flex: 1;
    background: #fff;
}

.email-sidebar-sim {
    width: 180px;
    border-right: 1px solid #eaeaea;
    background: #f9f9f9;
}

.email-item {
    padding: 12px;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
}

.email-item.active {
    background: #fff;
    border-left: 3px solid var(--primary);
}

.email-item .sender {
    font-weight: 700;
    font-size: 0.75rem;
    color: #333;
}

.email-item .subj {
    font-size: 0.7rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-body-sim {
    flex: 1;
    padding: 20px;
}

.email-header-sim {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.email-header-sim h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.email-header-sim p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0;
}

.email-logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.showcase-email-banner {
    height: 80px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.email-line {
    height: 8px;
    background: #f5f5f5;
    margin-bottom: 8px;
    border-radius: 4px;
}

/* Instagram specific banner */
.showcase-instagram-post {
    height: 230px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
}

/* FB cover banner */
.showcase-fb-group-cover {
    height: 150px;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.showcase-fb-post-image {
    height: 120px;
    font-size: 0.75rem;
}

/* Simulating Site Layout */
.site-header-sim {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

.logo-sim {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon-sim {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 3px;
}

.nav-sim {
    display: flex;
    gap: 8px;
}

.nav-sim span {
    width: 35px;
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    display: inline-block;
}

.search-sim {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    padding: 10px;
}

.search-bar-sim {
    background: #f1f1f1;
    border-radius: 4px;
    height: 28px;
    font-size: 0.75rem;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    padding-left: 10px;
    border: 1px solid #e0e0e0;
}

.grid-sim {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.item-sim {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.img-sim {
    background: #f0f0f0;
    height: 80px;
    border-radius: 4px;
}

.text-sim {
    background: #f0f0f0;
    height: 8px;
    border-radius: 2px;
    width: 75%;
}

.text-sim-sub {
    background: #f5f5f5;
    height: 6px;
    border-radius: 2px;
    width: 50%;
}

/* Mobile Mockup styling */
.mockup-window.mobile .mockup-header {
    background: #1a1a1a;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    padding: 0;
}

.speaker {
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 2.5px;
}

.mockup-window.mobile .mockup-body {
    padding: 12px;
    gap: 12px;
}

.showcase-top-banner-mobile {
    height: 50px;
    font-size: 0.75rem;
}

.showcase-inline-mobile {
    height: 70px;
    font-size: 0.75rem;
}

.content-sim-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-sim-mobile {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    height: 85px;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.img-sim-mobile {
    width: 70px;
    height: 100%;
    background: #f0f0f0;
    border-radius: 4px;
    flex-shrink: 0;
}

.text-sim-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

@media (max-width: 768px) {
    .mockups-container {
        gap: 20px;
    }
}

.card-footer {
    margin-top: auto;
}

/* --- Partnership / Alliances --- */
.alliance-card {
    display: flex;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    gap: 40px;
    align-items: center;
}

.alliance-content {
    flex: 1;
}

.alliance-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.big-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .alliance-card {
        flex-direction: column;
    }
}

/* --- Footer --- */
.footer {
    background: var(--bg-main);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Micro animations on hover */
.card .icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover .icon.check {
    transform: scale(1.2) rotate(5deg);
}

.alliance-image img {
    transition: transform 0.5s ease;
}

.alliance-card:hover .alliance-image img {
    transform: scale(1.02);
}

.card-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
    font-weight: 500;
}

/* --- Instagram Story Mockup --- */
.instagram-story {
    width: 290px;
    height: 520px;
    border-radius: 36px;
    border: 12px solid #1a1a1a;
    position: relative;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.7) 100%),
        url('assets/beneficios.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 15px;
    color: #fff;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.story-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    border: 1.5px solid #fff;
    flex-shrink: 0;
}

.story-user {
    font-size: 0.75rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.story-time {
    font-size: 0.7rem;
    color: #ccc;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.story-showcase-sticker {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 12px 15px;
    border-radius: 12px;
    text-align: center;
    align-self: center;
    width: 85%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: 2.5px solid var(--primary);
    margin-top: auto;
    margin-bottom: auto;
    transform: rotate(-3deg);
}

.story-showcase-sticker h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.story-showcase-sticker p {
    font-size: 0.65rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.3;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    gap: 10px;
}

.story-input-sim {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.75rem;
    flex: 1;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* FB cover placeholder style */
.generic-fb-cover {
    background: linear-gradient(135deg, #e4e6eb, #cbd5e0);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #65676b;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Partner/Alliance Mockups --- */
.alliance-tab-btn {
    background: #e2e2e2;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.alliance-tab-btn.active,
.alliance-tab-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(221, 152, 3, 0.25);
}

.alliance-tab-content {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.alliance-tab-content.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

/* Alliance custom layouts */
.showcase-co-branded-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.co-branded-badge {
    background: #4b5563;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-alliance-bg {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('assets/beneficios.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 30px 20px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 220px;
    width: 100%;
}

/* --- Value Prop / Industry Data --- */
.value-prop {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-prop-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-prop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.value-prop-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-prop-icon.primary {
    background: rgba(221, 152, 3, 0.1);
    color: var(--primary);
}

.value-prop-icon.secondary {
    background: rgba(46, 204, 113, 0.1);
    color: var(--secondary);
}

.value-prop-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.value-prop-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.value-prop-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-main);
}

.value-prop-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 991px) and (min-width: 768px) {
    .value-prop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-prop-card {
        padding: 20px;
    }
}

/* --- Bloque de Cierre (CTA) --- */
.section-cierre {
    background-color: var(--bg-brand-dark); /* Dark solid forest green background */
    color: #ffffff;
    padding: 90px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container-cierre {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.section-cierre h2 {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cierre-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.cierre-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease, border-color 0.3s ease;
}

.cierre-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cierre-card p {
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cierre-card p strong {
    color: #ffffff;
    font-weight: 700;
}

.cierre-action {
    margin-top: 10px;
}

.btn-cta {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 36px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.btn-cta:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: scale(1.05) translateY(-2px);
}

/* Responsive adjustments for Bloque de Cierre */
@media (max-width: 768px) {
    .section-cierre {
        padding: 60px 20px;
    }

    .section-cierre h2 {
        font-size: 1.75rem;
    }

    .cierre-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cierre-card {
        padding: 20px;
    }

    .cierre-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}