/* ============================================
   DENTAL OLYMPUS - PROCEDIMIENTO PAGES
   ============================================ */

:root {
    --primary-color: #D4AF37;
    --secondary-color: #1a1a1a;
    --dark-text: #1a1a1a;
    --gray-text: #666666;
    --header-bg: rgba(255, 255, 255, 0.98);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.proc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR
   ============================================ */

.proc-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid #ececec;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.proc-navbar.scrolled {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.proc-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proc-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
    color: var(--dark-text);
    text-decoration: none;
}

.proc-logo i {
    color: var(--primary-color);
    font-size: 24px;
}

.proc-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.proc-nav-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.proc-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.25s ease;
}

.proc-nav-link:hover {
    color: var(--primary-color);
}

.proc-nav-link:hover::before {
    width: 100%;
}

.proc-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: var(--primary-color);
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.proc-nav-cta:hover {
    background: #c99d29;
    transform: translateY(-2px);
}

.proc-hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.proc-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-text);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */

.proc-hero {
    margin-top: 70px;
    min-height: 52vh;
    display: flex;
    align-items: center;
    background-image: var(--proc-hero-image, radial-gradient(circle at 20% 30%, #f5f5f5 0%, #ececec 45%, #e3e3e3 100%));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.proc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26, 26, 26, 0.55) 0%, rgba(26, 26, 26, 0.25) 45%, rgba(26, 26, 26, 0.15) 100%);
}

.proc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    color: #ffffff;
}

.proc-badge {
    display: inline-flex;
    padding: 6px 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.proc-hero-content h1 {
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.15;
    margin-bottom: 14px;
}

.proc-hero-content p {
    max-width: 760px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.proc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 22px;
    transition: var(--transition);
}

.proc-cta-btn:hover {
    background: #c99d29;
    transform: translateY(-2px);
}

/* ============================================
   CONTENT
   ============================================ */

.proc-content {
    padding: 80px 0;
}

.proc-content .proc-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 34px;
    align-items: start;
}

.proc-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.proc-info-block,
.proc-technical,
.proc-details-card,
.proc-cta-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.proc-info-block,
.proc-technical {
    padding: 28px;
}

.proc-info-block h2,
.proc-technical h2,
.proc-steps-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.proc-info-block h2 i,
.proc-technical h2 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.proc-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.proc-info-item {
    background: #fafafa;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 18px;
}

.proc-info-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
}

.proc-info-item p,
.proc-tech-content p,
.proc-info-item li {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
}

.proc-info-item ul {
    margin-left: 18px;
}

.proc-info-item li + li {
    margin-top: 5px;
}

.proc-tech-content p + p {
    margin-top: 12px;
}

.proc-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proc-details-card,
.proc-cta-card {
    padding: 24px;
}

.proc-details-card h3,
.proc-cta-card h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.proc-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proc-details-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.proc-details-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 14px;
    color: #555;
}

.detail-value {
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 600;
    text-align: right;
}

.proc-cta-card {
    background: #1f1f1f;
    color: #ffffff;
}

.proc-cta-card p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.proc-cta-card .proc-cta-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   STEPS
   ============================================ */

.proc-steps {
    padding: 0 0 90px;
}

.proc-steps-title {
    text-align: center;
    margin-bottom: 30px;
}

.proc-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.proc-step {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 22px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    background: var(--primary-color);
    margin-bottom: 12px;
}

.proc-step h3 {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 9px;
}

.proc-step p {
    font-size: 14px;
    color: var(--gray-text);
}

/* ============================================
   FOOTER
   ============================================ */

.proc-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 42px 0 26px;
}

.proc-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.proc-footer-brand h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    margin-bottom: 4px;
}

.proc-footer-brand i {
    color: var(--primary-color);
}

.proc-footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.proc-footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.proc-footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.proc-footer-links a:hover {
    color: var(--primary-color);
}

.proc-footer-copy {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.proc-whatsapp-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.34);
    z-index: 1000;
    transition: transform 0.25s ease;
}

.proc-whatsapp-btn:hover {
    transform: scale(1.08);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .proc-content .proc-container {
        grid-template-columns: 1fr;
    }

    .proc-sidebar {
        position: static;
    }

    .proc-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .proc-hamburger {
        display: inline-block;
    }

    .proc-nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #ececec;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
        padding: 16px 20px 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .proc-nav-links.active {
        display: flex;
    }

    .proc-nav-cta {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .proc-hero {
        min-height: 44vh;
    }

    .proc-hero-content {
        padding: 58px 20px 48px;
    }

    .proc-hero-content p {
        font-size: 15px;
    }

    .proc-info-grid {
        grid-template-columns: 1fr;
    }

    .proc-info-block h2,
    .proc-technical h2,
    .proc-steps-title {
        font-size: 25px;
    }

    .proc-step h3 {
        font-size: 17px;
    }

    .proc-steps-grid {
        grid-template-columns: 1fr;
    }

    .proc-footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
