/* ===================================
   CSS FOUNDATION - CAROLINE ZORZETTI
   Terapeuta Energética e Thetahealer
   =================================== */

/* CSS Custom Properties - Color Palette */
:root {
    /* Brand Colors */
    --color-primary: #D90D6C;
    /* Rosa vibrante */
    --color-dark-blue: #010326;
    /* Azul quase preto */
    --color-deep-blue: #020F59;
    /* Azul profundo */
    --color-earth-gold: #A66F2D;
    /* Dourado terroso */
    --color-purple: #8e44ad;
    /* Roxo para elementos interativos */

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-light-gray: #F8F9FA;
    --color-medium-gray: #6C757D;
    --color-dark-gray: #343A40;
    --color-text-secondary: #6C757D;

    /* Metallic Gold */
    --color-gold-metallic: #FFD700;
    --color-gold-light: #FFED4E;
    --color-gold-dark: #B8860B;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-deep-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-dark-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-earth-gold) 0%, var(--color-primary) 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-metallic) 50%, var(--color-gold-dark) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;

    /* Font Sizes - Responsive Scale */
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --fs-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --fs-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --fs-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --fs-3xl: clamp(2rem, 1.7rem + 1.5vw, 2.75rem);
    --fs-4xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);

    /* Spacing System - Base 8px */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-2xl: 4rem;
    /* 64px */
    --space-3xl: 6rem;
    /* 96px */

    /* Breakpoints */
    --bp-mobile: 320px;
    --bp-tablet: 768px;
    --bp-desktop: 1024px;
    --bp-large: 1200px;

    /* Container */
    --container-max-width: 1200px;
    --container-padding: var(--space-sm);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.3s ease-out;
    --transition-slow: 0.6s ease-out;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
}

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-dark-blue);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Base Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--color-dark-blue);
}

h1 {
    font-size: var(--fs-4xl);
}

h2 {
    font-size: var(--fs-3xl);
}

h3 {
    font-size: var(--fs-2xl);
}

h4 {
    font-size: var(--fs-xl);
}

h5 {
    font-size: var(--fs-lg);
}

h6 {
    font-size: var(--fs-base);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-medium-gray);
}

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

a:hover {
    color: var(--color-deep-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
}

li {
    margin-bottom: var(--space-xs);
}

/* Container System */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--container-padding);
}

@media (min-width: 768px) {
    .container {
        --container-padding: var(--space-md);
    }
}

@media (min-width: 1024px) {
    .container {
        --container-padding: var(--space-lg);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.font-primary {
    font-family: var(--font-primary);
}

.font-secondary {
    font-family: var(--font-secondary);
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-deep-blue);
}

.text-accent {
    color: var(--color-earth-gold);
}

.text-muted {
    color: var(--color-medium-gray);
}

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

.bg-secondary {
    background-color: var(--color-deep-blue);
}

.bg-accent {
    background-color: var(--color-earth-gold);
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.mt-0 {
    margin-top: 0;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

/* Responsive Breakpoints Utilities */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ===================================
   THERAPY SECTIONS - CENTERED LAYOUT
   =================================== */

/* Centered therapy content without images */
.therapy-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: var(--space-xl) 0;
}

.therapy-text-centered {
    max-width: 800px;
    text-align: center;
    padding: var(--space-lg);
}

.therapy-text-centered .therapy-title {
    font-family: var(--font-secondary);
    font-size: var(--fs-3xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.therapy-text-centered .therapy-subtitle {
    font-size: var(--fs-xl);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.therapy-text-centered .therapy-description {
    font-size: var(--fs-lg);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.therapy-text-centered .therapy-benefits {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-sm);
}

.therapy-text-centered .therapy-benefits li {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--color-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.therapy-text-centered .therapy-benefits li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.therapy-text-centered .cta-secondary {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--fs-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.therapy-text-centered .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for therapy sections */
@media (max-width: 768px) {
    .therapy-content-centered {
        min-height: auto;
        padding: var(--space-lg) 0;
    }
    
    .therapy-text-centered {
        padding: var(--space-md);
    }
    
    .therapy-text-centered .therapy-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .show-mobile {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .show-tablet {
        display: block !important;
    }
}

@media (min-width: 1024px) {
    .show-desktop {
        display: block !important;
    }
}

/* Focus and Accessibility */
*:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================
   HEADER COMPONENT
   =================================== */

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.header-fixed .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    gap: 1rem;
    margin: 0 auto;
    max-width: var(--container-max-width);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-sm);
    flex-direction: row;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Responsive font size for very small screens */
    font-size: clamp(0.7rem, 4vw, 1.25rem);
}

/* Responsive Header */
@media (max-width: 767px) {
    .header-fixed .container {
        min-height: 60px;
        justify-content: space-between;
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
        gap: var(--space-sm);
    }

    .logo {
        font-size: var(--fs-base);
        line-height: 1.3;
        padding: 0;
        flex-direction: row !important;
        gap: var(--space-xs);
        align-items: center;
        min-width: 0;
        flex: 1;
        max-width: calc(100% - 50px);
        overflow: hidden;
    }
    
    .logo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: none;
        width: 100%;
        margin: 0;
        font-size: var(--fs-sm);
        flex: 1;
        min-width: 0;
    }
    
    .logo-image {
        flex-shrink: 0;
    }
    
    .navbar-toggler {
        margin-left: auto;
        border: none;
        padding: 0.25rem 0.5rem;
        flex-shrink: 0;
        width: auto;
        height: auto;
        margin-right: 0;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(1, 3, 38, 0.95);
        margin-top: 0;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
}

@media (min-width: 768px) {
    .logo {
        font-size: var(--fs-xl);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-fixed .container {
        gap: 1.5rem;
    }
    
    /* Allow some flex-wrap for tablet devices */
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .header-fixed .container {
        min-height: 90px; /* Increased height to accommodate two-line navbar */
        gap: 2rem;
    }

    .logo {
        font-size: var(--fs-2xl);
    }
}

/* Header scroll effect */
.header-fixed.scrolled {
    background: rgba(1, 3, 38, 0.95);
    box-shadow: var(--shadow-lg);
}

/* Ensure main content doesn't hide behind fixed header.
   O header fixo pode ocupar ~123px no desktop (menu em duas linhas) e a
   navbar quebra em várias linhas entre 768-1023px, por isso o padding-top do
   body precisa acompanhar a altura real do header em cada faixa. */
body {
    padding-top: 110px;
}

@media (max-width: 767px) {
    body {
        padding-top: 64px;
    }
}

@media (min-width: 1024px) {
    body {
        padding-top: 135px;
    }
}

/* Fix for mobile header alignment */
@media (max-width: 767px) {
    .header-fixed {
        height: 60px;
    }
    
    .header-fixed .container {
        height: 100%;
    }
}

/* Additional fix for very small screens */
@media (max-width: 480px) {
    .header-fixed .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        gap: 0.2rem;
    }
    
    .logo {
        gap: 0.25rem;
        max-width: calc(100% - 38px);
    }
    
    .logo-text {
        font-size: 0.8rem;
        max-width: 180px;
        letter-spacing: 0;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .navbar-toggler {
        margin-left: 0.2rem;
        padding: 0.15rem 0.3rem;
        width: auto;
        height: auto;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .header-fixed .container {
        gap: 0.15rem;
    }
    
    .logo {
        max-width: calc(100% - 35px);
    }
    
    .logo-text {
        font-size: 0.75rem;
        max-width: 150px;
    }
    
    .logo-image {
        height: 25px;
    }
    
    .navbar-toggler {
        margin-left: 0.15rem;
        padding: 0.1rem 0.25rem;
    }
}

/* Very small screens (older phones) */
@media (max-width: 320px) {
    .header-fixed .container {
        padding-left: 0.25rem;
        padding-right: 0.4rem;
        gap: 0.1rem;
    }
    
    .logo {
        gap: 0.15rem;
        max-width: calc(100% - 32px);
    }
    
    .logo-text {
        font-size: 0.7rem;
        max-width: 130px;
        line-height: 1.2;
    }
    
    .logo-image {
        height: 22px;
    }
    
    .navbar-toggler {
        margin-left: 0.1rem;
        padding: 0.1rem 0.2rem;
        width: auto;
        height: auto;
    }
}

/* ===================================
   WHATSAPP FIXED BUTTON
   =================================== */

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    background: #128C7E;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: white;
    fill: currentColor;
}

@media (max-width: 767px) {
    .whatsapp-fixed {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Pulse animation for WhatsApp button */
.whatsapp-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-full);
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(166, 111, 45, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(217, 13, 108, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-md) 0;
}

.hero-title {
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--fs-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.cta-primary {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-dark-blue);
    font-size: var(--fs-lg);
    font-weight: 700;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6), 0 6px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.cta-primary:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .hero {
        min-height: 90vh;
        padding: var(--space-sm) 0;
    }

    .hero-title {
        font-size: var(--fs-3xl);
        margin-bottom: var(--space-xs);
    }

    .hero-subtitle {
        font-size: var(--fs-lg);
        margin-bottom: var(--space-md);
    }

    .cta-primary {
        font-size: var(--fs-base);
        padding: var(--space-sm) var(--space-xl);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: var(--fs-3xl);
    }

    .hero-subtitle {
        font-size: var(--fs-lg);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--fs-4xl);
    }
}

/* ===================================
   THERAPY SECTIONS
   =================================== */

.therapy-section {
    padding: calc(var(--space-3xl) * 1.5) 0;
    position: relative;
    overflow: hidden;
}

.taro-section {
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-dark-blue) 100%);
    color: var(--color-white);
}

.reiki-section {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    color: var(--color-dark-blue);
}

.thetahealing-section {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.therapy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--space-3xl) * 1.5);
    align-items: center;
    min-height: 60vh;
}

.therapy-content.reverse {
    direction: rtl;
}

.therapy-content.reverse>* {
    direction: ltr;
}

.therapy-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.therapy-icon {
    font-size: 8rem;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.therapy-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.therapy-title {
    font-size: var(--fs-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.therapy-subtitle {
    font-size: var(--fs-xl);
    font-weight: 300;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.therapy-description {
    font-size: var(--fs-lg);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
}

.therapy-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-2xl);
}

.therapy-benefits li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
    font-size: var(--fs-base);
    opacity: 0.9;
    line-height: 1.6;
}

.therapy-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold-metallic);
    font-weight: bold;
    font-size: var(--fs-lg);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-gold-metallic);
    border: 2px solid var(--color-gold-metallic);
    font-size: var(--fs-base);
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xl);
}

.cta-secondary:hover {
    background: var(--gradient-gold);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive Therapy Sections */
@media (max-width: 1023px) {
    .therapy-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .therapy-content.reverse {
        direction: ltr;
    }

    .therapy-visual {
        min-height: 300px;
        order: -1;
    }

    .therapy-icon {
        font-size: 6rem;
    }

    .therapy-decoration {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767px) {
    .therapy-section {
        padding: var(--space-2xl) 0;
    }

    .therapy-visual {
        min-height: 200px;
    }

    .therapy-icon {
        font-size: 4rem;
    }

    .therapy-decoration {
        width: 200px;
        height: 200px;
    }

    .therapy-title {
        font-size: var(--fs-2xl);
    }

    .therapy-subtitle {
        font-size: var(--fs-lg);
    }

    .therapy-description {
        font-size: var(--fs-base);
    }
}

/* ===================================
   ABOUT ME SECTION
   =================================== */

.about {
    padding: calc(var(--space-3xl) * 1.5) 0;
    background: var(--color-light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: calc(var(--space-3xl) * 1.5);
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-base);
}

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

.about-text h2 {
    font-size: var(--fs-3xl);
    color: var(--color-dark-blue);
    margin-bottom: var(--space-lg);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-bio {
    font-size: var(--fs-lg);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    color: var(--color-medium-gray);
}

.about-mission {
    font-size: var(--fs-lg);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    color: var(--color-medium-gray);
}

.about-mission strong {
    color: var(--color-primary);
    font-weight: 600;
}

.about-credentials {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-credentials h3 {
    font-size: var(--fs-xl);
    color: var(--color-deep-blue);
    margin-bottom: var(--space-lg);
}

.about-credentials ul {
    list-style: none;
    padding: 0;
}

.about-credentials li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--color-medium-gray);
    line-height: 1.6;
}

.about-credentials li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: var(--fs-base);
}

/* Footer */
.footer {
    background: var(--color-dark-blue);
    color: var(--color-white);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.footer-content p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: var(--color-gold-metallic);
}

/* Responsive About Section */
@media (max-width: 1023px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .about {
        padding: var(--space-2xl) 0;
    }

    .about-credentials {
        padding: var(--space-lg);
    }

    .about-text h2 {
        font-size: var(--fs-2xl);
    }

    .about-bio,
    .about-mission {
        font-size: var(--fs-base);
    }
}

/* Responsive Header with Logo */
@media (max-width: 767px) {
    .logo-image {
        height: 35px;
        width: auto;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: var(--fs-sm);
        line-height: 1.3;
        text-align: left;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
        flex: 1;
    }
}

@media (min-width: 768px) {
    .logo-image {
        height: 45px;
    }

    .logo-text {
        font-size: var(--fs-xl);
    }
}

@media (min-width: 1024px) {
    .logo-image {
        height: 55px;
    }

    .logo-text {
        font-size: var(--fs-2xl);
    }
}

/* Improved spacing for text content */
.therapy-text {
    padding-top: var(--space-lg);
}

.hero-content {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.about-text {
    padding-top: var(--space-lg);
}

/* Additional spacing for mobile */
@media (max-width: 767px) {
    .therapy-text {
        padding-top: var(--space-xl);
        margin-top: var(--space-lg);
    }

    .hero-content {
        padding-top: var(--space-md);
        padding-bottom: var(--space-md);
    }

    .about-text {
        padding-top: var(--space-xl);
        margin-top: var(--space-lg);
    }
}

/* ===================================
   HERO ANIMATED CARDS
   =================================== */

.hero-cards {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
    perspective: 1000px;
}

.card-link {
    text-decoration: none;
    display: block;
}

.flip-card {
    width: 200px;
    height: 320px;
    position: relative;
    cursor: pointer;
}

.flip-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    animation: initialFlip 1s ease-in-out forwards;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid transparent;
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
        var(--gradient-gold) border-box;
}

.flip-card-front {
    transform: rotateY(0deg);
}

.flip-card-back {
    transform: rotateY(180deg);
    position: relative;
}

.flip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Initial flip animation with delays */
@keyframes initialFlip {

    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotateY(180deg);
    }
}

/* Apply different delays to each card */
.flip-card[data-delay="0"] .flip-card-inner {
    animation-delay: 1s;
}

.flip-card[data-delay="0.3"] .flip-card-inner {
    animation-delay: 1.3s;
}

.flip-card[data-delay="0.6"] .flip-card-inner {
    animation-delay: 1.6s;
}

/* Hover effect to flip back */
.flip-card:hover .flip-card-inner {
    transform: rotateY(0deg);
}

/* Responsive cards */
@media (max-width: 767px) {
    .hero-cards {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        margin: var(--space-lg) 0;
    }

    .flip-card {
        width: 160px;
        height: 240px;
    }

    .card-overlay h3 {
        font-size: var(--fs-base);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .flip-card {
        width: 180px;
        height: 280px;
    }
}

/* Animated golden border */
@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
        filter: blur(0px);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
        filter: blur(1px);
    }
}

/* Enhanced hover effect with border animation */
.flip-card:hover::before {
    animation: borderGlowHover 0.5s ease-in-out forwards;
}

@keyframes borderGlowHover {

    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
        filter: blur(2px);
    }
}

/* Additional glow effect */
.flip-card::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(circle, var(--color-gold-metallic) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    z-index: -2;
    opacity: 0;
    animation: outerGlow 4s ease-in-out infinite;
}

@keyframes outerGlow {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.1);
}

.back-to-top-icon {
    width: 24px;
    height: 24px;
    color: var(--color-dark-blue);
    fill: currentColor;
}

@media (max-width: 767px) {
    .back-to-top {
        width: 56px;
        height: 56px;
        bottom: 88px;
        right: 16px;
    }

    .back-to-top-icon {
        width: 28px;
        height: 28px;
    }
}

/* ===================================
   CUSTOM NAVBAR STYLES
   =================================== */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.navbar-brand.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.auth-nav {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0; /* Allow shrinking below content size */
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.auth-btn {
    padding: 0.5rem 1rem;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.auth-btn-login {
    color: #8e44ad !important;
    border: 1px solid #8e44ad;
    background: transparent;
}

.auth-btn-login:hover {
    background: #8e44ad;
    color: white !important;
}

.auth-btn-signup {
    background: linear-gradient(135deg, #8e44ad, #9b59b6) !important;
    color: white !important;
    border: 1px solid transparent;
}

.auth-btn-signup:hover {
    background: linear-gradient(135deg, #7d3c98, #8e44ad) !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(142, 68, 173, 0.3);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-greeting {
    color: white !important;
    font-weight: 500;
    font-size: 0.9rem;
}

.user-dropdown-btn {
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    color: #8e44ad !important;
    transition: all 0.3s ease;
}

.user-dropdown-btn:hover {
    background: rgba(142, 68, 173, 0.1) !important;
}

.user-dropdown-btn::after {
    display: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #8e44ad;
}

/* Custom hamburger menu styles */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile navbar alignment */
@media (max-width: 991px) {
    .navbar {
        width: 100%;
        justify-content: space-between;
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        background: rgba(1, 3, 38, 0.95);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .user-greeting {
        display: block !important;
        margin-bottom: 0.5rem;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .auth-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    .user-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        width: 100% !important;
        margin-top: 0.5rem;
    }

    .dropdown-item {
        color: white !important;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-item:hover {
        background: rgba(142, 68, 173, 0.2) !important;
        color: #8e44ad !important;
    }
}

/* ===================================
   MAIN NAVIGATION STYLES
   =================================== */

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    align-items: center;
    padding: 0.25rem 0;
}

.main-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: var(--fs-sm);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.main-nav .nav-link:hover {
    color: var(--color-primary);
    background: rgba(217, 13, 108, 0.1);
    transform: translateY(-1px);
}

.main-nav .nav-link.active {
    color: var(--color-primary);
    background: rgba(217, 13, 108, 0.15);
}

.main-nav .nav-link i {
    font-size: 0.875rem;
}

.main-nav .nav-link .badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
}

.dropdown-item .badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.35rem;
}

/* Desktop navigation adjustments - allow more flexible layout */
@media (min-width: 992px) {
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        max-width: 100%;
    }
    
    .main-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

/* Mobile navigation adjustments */
@media (max-width: 991px) {
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }
    
    .main-nav .nav-link:hover {
        background: rgba(217, 13, 108, 0.2);
    }
}

/* ===================================
   CARD OVERLAY MODIFICATIONS
   =================================== */

/* CSS para modificar os cards - mover títulos para o topo */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3), transparent);
    color: white;
    padding: var(--space-md) var(--space-sm);
    text-align: center;
    z-index: 2;
}

.card-overlay h3 {
    margin: 0;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: white !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===================================
   CTA SECONDARY BUTTON STYLES
   =================================== */

/* Aplicar o mesmo estilo do cta-primary aos botões cta-secondary */
.cta-secondary {
    display: inline-block !important;
    background: var(--gradient-gold) !important;
    color: var(--color-dark-blue) !important;
    font-size: var(--fs-lg) !important;
    font-weight: 700 !important;
    padding: var(--space-md) var(--space-2xl) !important;
    border-radius: var(--radius-full) !important;
    text-decoration: none !important;
    transition: all var(--transition-base) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid transparent !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s;
}

.cta-secondary:hover::before {
    left: 100%;
}

.cta-secondary:hover {
    background: var(--gradient-gold) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6), 0 6px 15px rgba(0, 0, 0, 0.3) !important;
    filter: brightness(1.1) !important;
}

.cta-secondary:active {
    transform: translateY(0) !important;
}

/* ===================================
   HERO SECTION ADJUSTMENTS
   =================================== */

/* Diminuir o tamanho do texto do hero */
.hero-title {
    font-size: var(--fs-3xl) !important;
}

.hero-subtitle {
    font-size: var(--fs-lg) !important;
}

/* ===================================
   TEXT JUSTIFICATION
   =================================== */

/* Justificar texto das descrições das terapias */
.therapy-description {
    text-align: justify !important;
    text-justify: inter-word !important;
}

/* Justificar texto da seção sobre */
.about-text p {
    text-align: justify !important;
    text-justify: inter-word !important;
}

/* ===================================
   CERTIFICATIONS SECTION STYLES
   =================================== */

/* Certifications Section Styles */
.certifications {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.certifications-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.certifications-header h2 {
    font-size: var(--fs-3xl);
    color: var(--color-dark-blue);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.certifications-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.certifications-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
    /* Espaço para os controles */
}

.certifications-carousel .carousel {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.carousel-inner {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.certification-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-xl);
    min-height: 400px;
    background: rgba(255, 255, 255, 0.95);
}

.certification-image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.certification-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(142, 68, 173, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    opacity: 1;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {



    background: rgba(142, 68, 173, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    background: rgba(142, 68, 173, 1);
}

/* Custom Indicators */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: var(--space-xl);
    padding: var(--space-md) 0;
}

.carousel-indicators-custom button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(142, 68, 173, 0.4);
    border: 2px solid rgba(142, 68, 173, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-indicators-custom button.active {
    background-color: var(--color-purple);
    border-color: var(--color-purple);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(142, 68, 173, 0.5);
}

.carousel-indicators-custom button:hover {
    background-color: rgba(142, 68, 173, 0.7);
    border-color: var(--color-purple);
    transform: scale(1.2);
}

/* ===================================
   MODAL STYLES
   =================================== */

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    background: white;
}

.modal-header {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 0;
}

/* Modal Image Container */
.modal-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    min-height: 60vh;
}

.modal-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Modal Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(142, 68, 173, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-nav-btn:hover {
    background: rgba(142, 68, 173, 1);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev-btn {
    left: 20px;
}

.modal-next-btn {
    right: 20px;
}

.modal-nav-btn i {
    font-size: 1.2rem;
}

/* Certificate Details */
.certificate-details {
    background: #f8f9fa;
    padding: var(--space-lg);
    margin: var(--space-md);
    border-radius: var(--radius-md);
    text-align: left;
}

.certificate-details p {
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
}

.certificate-details strong {
    color: var(--color-dark-blue);
}

/* Modal Indicators */
.modal-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: var(--space-md);
    background: #f8f9fa;
}

.modal-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(142, 68, 173, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-indicator.active,
.modal-indicator:hover {
    background-color: var(--color-purple);
    transform: scale(1.3);
}

.no-certifications {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--color-text-secondary);
    font-size: var(--fs-lg);
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

/* Mobile Responsive */
@media (max-width: 768px) {
    .certifications-carousel {
        padding: 0 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 5px;
    }

    .carousel-control-next {
        right: 5px;
    }

    .certifications-header h2 {
        font-size: var(--fs-2xl);
    }

    .certification-image-container {
        padding: var(--space-lg);
        min-height: 300px;
    }

    .certification-image {
        max-height: 350px;
    }

    .carousel-indicators-custom {
        margin-top: var(--space-lg);
    }

    .carousel-indicators-custom button {
        width: 12px;
        height: 12px;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }

    .modal-prev-btn {
        left: 10px;
    }

    .modal-next-btn {
        right: 10px;
    }

    .modal-image {
        max-height: 50vh;
    }

    .certificate-details {
        margin: var(--space-sm);
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    .certifications-carousel {
        padding: 0 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .certification-image-container {
        padding: var(--space-md);
        min-height: 250px;
    }

    .certification-image {
        max-height: 300px;
    }

    .certifications-header h2 {
        font-size: var(--fs-xl);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: var(--fs-2xl) !important;
    }

    .hero-subtitle {
        font-size: var(--fs-base) !important;
    }
}
/*
 Social Media Icons */
.footer-social {
    margin: var(--space-lg) 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    text-decoration: none;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-icon.tiktok:hover {
    background: #000000;
}

@media (max-width: 768px) {
    .social-icons {
        gap: var(--space-md);
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}