/*
 * pages/services.css
 * ==================
 * Estilos compartilhados pelas páginas de serviço / terapias.
 * Migrado de <style> inline em 2026-02-10.
 *
 * Versão: 1.1.0
 */

/* =========================================================
   Source: ozonioterapia.php
   Migrated: 2026-02-10
   Notes: url() adjusted: sim — url('assets/images/hero_bg.webp')
          → url('/assets/images/banner-home-oficial.webp')
   ========================================================= */

:root {
    --ozone-primary: #0077b6;
    --ozone-secondary: #023e8a;
    --ozone-accent: #48cae4;
    --ozone-light: #f4f9fc;
    --ozone-white: #ffffff;
    --ozone-gradient: linear-gradient(135deg, #023e8a 0%, #0077b6 100%);
}

.oz-hero {
    background: var(--ozone-gradient);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/banner-home-oficial.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.oz-hero .container {
    position: relative;
    z-index: 1;
}

.oz-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.oz-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.oz-section {
    padding: 80px 0;
}

.oz-section-light {
    background-color: var(--ozone-light);
}

.oz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .oz-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .oz-hero h1 {
        font-size: 2.5rem;
    }
}

.oz-content h2 {
    font-size: 2.2rem;
    color: var(--ozone-secondary);
    margin-bottom: 25px;
    position: relative;
}

.oz-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--ozone-accent);
    margin-top: 10px;
}

.oz-grid-center h2::after {
    margin: 10px auto 0;
}

.oz-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.oz-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.oz-benefit-card:hover {
    transform: translateY(-5px);
}

.oz-benefit-card i {
    font-size: 1.5rem;
    color: #27ae60;
    background: #eafaf1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.oz-benefit-card h4 {
    margin-bottom: 5px;
    color: var(--ozone-secondary);
}

.oz-list {
    list-style: none;
    padding: 0;
}

.oz-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.oz-list li i {
    color: var(--ozone-primary);
    margin-top: 5px;
}

.oz-cta-box {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.oz-cta-box h3 {
    font-size: 2rem;
    color: var(--ozone-secondary);
}

.oz-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ozone-primary);
    margin: 20px 0;
}

.oz-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.oz-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--ozone-secondary);
}

.oz-faq-question:hover {
    background: #f8fbfe;
}

.oz-faq-answer {
    padding: 0 25px 20px;
    display: none;
    color: var(--text-light);
}

.oz-faq-item.active .oz-faq-answer {
    display: block;
}

.oz-faq-item.active .oz-faq-question i {
    transform: rotate(180deg);
}

.btn-oz-cta {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-oz-cta:hover {
    background: #1eb954;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    color: white;
}



/* =========================================================
   Source: laserterapia.php
   Migrated: 2026-02-10
   Notes: url() adjusted: sim — url('assets/images/hero_bg.webp')
          → url('/assets/images/banner-home-oficial.webp')
   ========================================================= */

:root {
    --laser-primary: #d63031;
    /* Ruby/Laser Red */
    --laser-secondary: #023e8a;
    --laser-accent: #ff7675;
    --laser-light: #fff5f5;
    --laser-white: #ffffff;
    --laser-gradient: linear-gradient(135deg, #023e8a 0%, #d63031 100%);
}

.ls-hero {
    background: var(--laser-gradient);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ls-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/banner-home-oficial.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.ls-hero .container {
    position: relative;
    z-index: 1;
}

.ls-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ls-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.ls-section {
    padding: 80px 0;
}

.ls-section-light {
    background-color: var(--laser-light);
}

.ls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .ls-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ls-hero h1 {
        font-size: 2.5rem;
    }
}

.ls-content h2 {
    font-size: 2.2rem;
    color: var(--laser-secondary);
    margin-bottom: 25px;
    position: relative;
}

.ls-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--laser-primary);
    margin-top: 10px;
}

.ls-grid-center h2::after {
    margin: 10px auto 0;
}

.ls-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ls-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ls-benefit-card:hover {
    transform: translateY(-5px);
}

.ls-benefit-card i {
    font-size: 1.5rem;
    color: var(--laser-primary);
    background: #fff0f0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.ls-benefit-card h4 {
    margin-bottom: 5px;
    color: var(--laser-secondary);
}

.ls-list {
    list-style: none;
    padding: 0;
}

.ls-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.ls-list li i {
    color: var(--laser-primary);
    margin-top: 5px;
}

.ls-cta-box {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ls-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ls-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--laser-secondary);
}

.ls-faq-question:hover {
    background: #fff8f8;
}

.ls-faq-answer {
    padding: 0 25px 20px;
    display: none;
    color: var(--text-light);
}

.ls-faq-item.active .ls-faq-answer {
    display: block;
}

.btn-ls-cta {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-ls-cta:hover {
    background: #1eb954;
    transform: translateY(-3px);
    color: white;
}

/* =========================================================
   Source: terapia-neural.php
   Migrated: 2026-02-10
   Notes: url() adjusted: sim — url('assets/images/hero_bg.webp')
          → url('/assets/images/banner-home-oficial.webp')
   ========================================================= */

:root {
    --neural-primary: #00b4d8;
    --neural-secondary: #0077b6;
    --neural-accent: #90e0ef;
    --neural-light: #f0f9ff;
    --neural-white: #ffffff;
    --neural-gradient: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
}

.nt-hero {
    background: var(--neural-gradient);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/banner-home-oficial.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.nt-hero .container {
    position: relative;
    z-index: 1;
}

.nt-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nt-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.nt-section {
    padding: 80px 0;
}

.nt-section-light {
    background-color: var(--neural-light);
}

.nt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .nt-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nt-hero h1 {
        font-size: 2.5rem;
    }
}

.nt-content h2 {
    font-size: 2.2rem;
    color: var(--neural-secondary);
    margin-bottom: 25px;
    position: relative;
}

.nt-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--neural-primary);
    margin-top: 10px;
}

.nt-grid-center h2::after {
    margin: 10px auto 0;
}

.nt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.nt-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.nt-benefit-card:hover {
    transform: translateY(-5px);
}

.nt-benefit-card i {
    font-size: 1.5rem;
    color: var(--neural-secondary);
    background: #eefbff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.nt-benefit-card h4 {
    margin-bottom: 5px;
    color: var(--neural-secondary);
}

.nt-list {
    list-style: none;
    padding: 0;
}

.nt-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.nt-list li i {
    color: var(--neural-primary);
    margin-top: 5px;
}

.nt-cta-box {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nt-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nt-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--neural-secondary);
}

.nt-faq-question:hover {
    background: #f8fdff;
}

.nt-faq-answer {
    padding: 0 25px 20px;
    display: none;
    color: var(--text-light);
}

.nt-faq-item.active .nt-faq-answer {
    display: block;
}

.btn-nt-cta {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-nt-cta:hover {
    background: #1eb954;
    transform: translateY(-3px);
    color: white;
}



/* =========================================================
   Source: ressonancia-magnetica-quantica.php
   Migrated: 2026-02-10
   Notes: url() adjusted: sim — url('assets/images/hero_bg.webp')
          → url('/assets/images/banner-home-oficial.webp')
   ========================================================= */

:root {
    --bio-primary: #6c5ce7;
    /* Indigo/Purple */
    --bio-secondary: #2d3436;
    --bio-accent: #00cec9;
    /* Teal */
    --bio-light: #f9f8ff;
    --bio-white: #ffffff;
    --bio-gradient: linear-gradient(135deg, #4834d4 0%, #6c5ce7 100%);
}

.bio-hero {
    background: var(--bio-gradient);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/banner-home-oficial.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.bio-hero .container {
    position: relative;
    z-index: 1;
}

.bio-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bio-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.bio-section {
    padding: 80px 0;
}

.bio-section-light {
    background-color: var(--bio-light);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .bio-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bio-hero h1 {
        font-size: 2.5rem;
    }
}

.bio-content h2 {
    font-size: 2.2rem;
    color: var(--bio-secondary);
    margin-bottom: 25px;
    position: relative;
}

.bio-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--bio-accent);
    margin-top: 10px;
}

.bio-grid-center h2::after {
    margin: 10px auto 0;
}

/* Items Grid */
.bio-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.bio-item-tag {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.bio-item-tag:hover {
    border-color: var(--bio-primary);
    transform: translateY(-3px);
}

.bio-item-tag i {
    color: var(--bio-primary);
    font-size: 1.2rem;
}

/* Features */
.bio-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bio-feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bio-feature-card i {
    font-size: 2.5rem;
    color: var(--bio-primary);
    margin-bottom: 20px;
    display: block;
}

/* FAQ */
.bio-faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bio-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--bio-primary);
    font-size: 1.1rem;
}

.bio-faq-question:hover {
    background: #fcfbff;
}

.bio-faq-answer {
    padding: 0 30px 30px;
    display: none;
    color: #444;
    line-height: 1.8;
}

.bio-faq-answer p {
    margin-bottom: 15px;
}

.bio-faq-item.active .bio-faq-answer {
    display: block;
}

.btn-bio-cta {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    text-decoration: none;
}

.btn-bio-cta:hover {
    background: #1eb954;
    transform: translateY(-3px);
    color: white;
}

/* =========================================================
   Source: agulhamento-distal.php
   Migrated: 2026-02-10
   Notes: url() adjusted: sim — url('assets/images/hero_bg.webp')
          → url('/assets/images/banner-home-oficial.webp')
   ========================================================= */

:root {
    --distal-primary: #2a9d8f;
    --distal-secondary: #264653;
    --distal-accent: #8ecae6;
    --distal-light: #f4faf9;
    --distal-white: #ffffff;
    --distal-gradient: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
}

.ad-hero {
    background: var(--distal-gradient);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ad-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/banner-home-oficial.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.ad-hero .container {
    position: relative;
    z-index: 1;
}

.ad-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ad-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.ad-section {
    padding: 80px 0;
}

.ad-section-light {
    background-color: var(--distal-light);
}

.ad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .ad-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ad-hero h1 {
        font-size: 2.5rem;
    }
}

.ad-content h2 {
    font-size: 2.2rem;
    color: var(--distal-secondary);
    margin-bottom: 25px;
    position: relative;
}

.ad-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--distal-primary);
    margin-top: 10px;
}

.ad-grid-center h2::after {
    margin: 10px auto 0;
}

.ad-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ad-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ad-benefit-card:hover {
    transform: translateY(-5px);
}

.ad-benefit-card i {
    font-size: 1.5rem;
    color: var(--distal-primary);
    background: #f0f9f8;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.ad-benefit-card h4 {
    margin-bottom: 5px;
    color: var(--distal-secondary);
}

.ad-list {
    list-style: none;
    padding: 0;
}

.ad-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.ad-list li i {
    color: var(--distal-primary);
    margin-top: 5px;
}

.ad-cta-box {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ad-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ad-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--distal-secondary);
}

.ad-faq-question:hover {
    background: #f8fdfc;
}

.ad-faq-answer {
    padding: 0 25px 20px;
    display: none;
    color: var(--text-light);
}

.ad-faq-item.active .ad-faq-answer {
    display: block;
}

.btn-ad-cta {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-ad-cta:hover {
    background: #1eb954;
    transform: translateY(-3px);
    color: white;
}




/* =========================================================
   Source: terapia-por-frequencias-rife.php
   Migrated: 2026-02-10
   Notes: url() adjusted: sim — url('assets/images/hero_bg.webp')
          → url('/assets/images/banner-home-oficial.webp')
   ========================================================= */

:root {
    --rife-primary: #6c5ce7;
    --rife-secondary: #4834d4;
    --rife-accent: #a29bfe;
    --rife-light: #f9f8ff;
    --rife-white: #ffffff;
    --rife-gradient: linear-gradient(135deg, #4834d4 0%, #6c5ce7 100%);
}

.rf-hero {
    background: var(--rife-gradient);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/banner-home-oficial.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.rf-hero .container {
    position: relative;
    z-index: 1;
}

.rf-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.rf-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.rf-section {
    padding: 80px 0;
}

.rf-section-light {
    background-color: var(--rife-light);
}

.rf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .rf-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rf-hero h1 {
        font-size: 2.5rem;
    }
}

.rf-content h2 {
    font-size: 2.2rem;
    color: var(--rife-secondary);
    margin-bottom: 25px;
    position: relative;
}

.rf-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--rife-primary);
    margin-top: 10px;
}

.rf-grid-center h2::after {
    margin: 10px auto 0;
}

.rf-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rf-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.rf-benefit-card:hover {
    transform: translateY(-5px);
}

.rf-benefit-card i {
    font-size: 1.5rem;
    color: var(--rife-primary);
    background: #f1efff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.rf-benefit-card h4 {
    margin-bottom: 5px;
    color: var(--rife-secondary);
}

.rf-list {
    list-style: none;
    padding: 0;
}

.rf-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.rf-list li i {
    color: var(--rife-primary);
    margin-top: 5px;
}

.rf-cta-box {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rf-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rf-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--rife-secondary);
}

.rf-faq-question:hover {
    background: #fbfaff;
}

.rf-faq-answer {
    padding: 0 25px 20px;
    display: none;
    color: var(--text-light);
}

.rf-faq-item.active .rf-faq-answer {
    display: block;
}

.btn-rf-cta {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-rf-cta:hover {
    background: #1eb954;
    transform: translateY(-3px);
    color: white;
}
/* Rife Page Clean Up (Inline Styles Migration) */
.rf-hero .btn-primary {
    background: white;
    color: var(--rife-secondary);
    border: none;
}
.rf-hero .btn-primary:hover {
    background: #f0f0f0;
    color: var(--rife-primary);
}

.rf-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    max-width: 100%;
}
.rf-intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Benefits Card Updates to match new design (Coral/Green) */
.rf-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.rf-benefit-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px;
}
.rf-benefit-card h4 {
    font-size: 1.15rem;
    color: #264653; 
    margin-bottom: 15px;
}
.rf-benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
.rf-benefit-card i, 
.rf-benefit-card svg.lucide {
    width: 45px;
    height: 45px;
    color: #ff7f50;
    margin-bottom: 25px;
    background: transparent;
    display: block;
    margin-top: 0;
}


.rf-image-inverse img {
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.1);
    max-width: 100%;
}


.rf-cta-box p {
    max-width: 700px;
    margin: 20px auto;
}

