@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #0067ff;
    --hover-blue: #0170b9;
    --text-dark: #0f172a;
    --text-muted: #364151;
    --bg-light-blue: #e7f6ff;
    --bg-slate: #f8fafc;
    --white: #ffffff;
    --font-main: 'Libre Franklin', sans-serif;
    --transition-standard: 0.2s linear;
    --container-width: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-muted);
    line-height: 1.42;
    font-size: 18px;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 600;
}

h1 {
    font-size: 54px;
    line-height: 1.12;
}

h2 {
    font-size: 40px;
    line-height: 1.16;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    /* Light overlay for visibility */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Nichos Grid (Cards with Zoom) */
.nichos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.nicho-card {
    background: var(--bg-slate);
    border-radius: 0px;
    /* Matching the WordPress clean look */
    overflow: hidden;
    transition: var(--transition-standard);
}

.nicho-img {
    height: 350px;
    overflow: hidden;
}

.nicho-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nicho-card:hover .nicho-img img {
    transform: scale(1.05);
    /* Zoom Effect */
}

.nicho-info {
    padding: 24px;
    text-align: center;
}

/* Info Section (Light Blue Background) */
.info-section {
    background: var(--bg-light-blue);
}

.info-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.info-text,
.info-image {
    flex: 1;
}

.info-image img {
    border-radius: 12px;
}

/* Benefits (Checked List) */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

.benefit-item i {
    color: var(--primary-blue);
}

/* CTA Section (Parallax) */
.cta {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax */
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition-standard);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--hover-blue);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: var(--white);
    border-top: 1px solid #eef2f6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .info-flex {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}