/**
 * Aline Pelegrini Personal Trainer - Site CSS
 * Design: Fitness Premium, Feminino, Moderno, Forte e Elegante
 */

/* ========================================
   CSS Variables - Identidade Visual FEMININA VIBRANTE
   ======================================== */
:root {
    /* Cores Principais - Rosa/Magenta Vibrante */
    --primary: #e91e8c;
    --primary-dark: #c4177a;
    --primary-light: #f472b6;
    --primary-rgb: 233, 30, 140;

    /* Cores Secundárias - Coral e Roxo */
    --secondary: #ff6b6b;
    --accent: #a855f7;

    /* Cores de Fundo - Rosa Suave e Vibrante */
    --bg-dark: #fff5f8;
    --bg-darker: #ffe4ec;
    --bg-card: #ffffff;
    --bg-card-hover: #fff0f5;
    --bg-overlay: rgba(255, 245, 248, 0.95);

    /* Tons Rosados */
    --gray-100: #4a1942;
    --gray-200: #6b2157;
    --gray-300: #8b3a6d;
    --gray-400: #a15587;
    --gray-500: #c48aab;
    --gray-600: #f9c6d8;
    --gray-700: #fde2eb;
    --gray-800: #fff0f5;
    --gray-900: #fff5f8;

    /* Texto */
    --text-white: #4a1942;
    --text-light: #6b2157;
    --text-muted: #a15587;
    --text-dark: #2d0a26;

    /* Cores de Estado */
    --success: #e91e8c;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #8b5cf6;

    /* Tipografia */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Oswald', 'Montserrat', sans-serif;

    /* Espaçamentos */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Bordas e Sombras - Femininas */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(233, 30, 140, 0.1);
    --shadow-md: 0 4px 16px rgba(233, 30, 140, 0.15);
    --shadow-lg: 0 8px 30px rgba(233, 30, 140, 0.2);
    --shadow-glow: 0 0 40px rgba(233, 30, 140, 0.35);

    /* Transições */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
    overflow-y: auto;
}

body.menu-open {
    overflow: hidden;
}

/* Main wrapper */
main {
    width: 100%;
}

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

a:hover {
    color: var(--primary-light);
}

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

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

.text-primary { color: var(--primary) !important; }
.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }

/* ========================================
   Container & Layout
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 900px;
}

.container-lg {
    max-width: 1400px;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

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

.section-card {
    background: var(--bg-card);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 8px 20px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: 30px;
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.section-title {
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c4177a 0%, var(--primary) 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    border-color: var(--primary);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #fff;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #c4177a 0%, var(--primary) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Header / Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(233, 30, 140, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 85px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > a svg {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid #fde2eb;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: none;
}

.dropdown-menu a:hover {
    background: rgba(233, 30, 140, 0.12);
    color: var(--primary);
}

.dropdown-menu a::after {
    display: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Login Mobile Button */
.btn-login-mobile {
    display: none;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition);
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.btn-login-mobile:hover {
    background: linear-gradient(135deg, #c4177a 0%, var(--primary) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
}

@media (max-width: 1024px) {
    .btn-login-mobile {
        display: inline-flex;
    }
}

/* Login Desktop Button */
.btn-login-desktop {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition);
    margin-right: 12px;
}

.btn-login-desktop:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

@media (max-width: 1024px) {
    .btn-login-desktop {
        display: none;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 160px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,240,245,0.95);
    z-index: 1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero-tag svg {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #fde2eb;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}

.about-image {
    position: relative;
    overflow: visible;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 3px solid var(--primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.about-badge .number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

.about-content .section-tag {
    margin-bottom: 1rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-light);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #fde2eb;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
}

.service-card:hover .service-icon svg {
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.875rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ========================================
   Plans Section
   ======================================== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    border: 2px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.plan-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #fff0f5 100%);
}

.plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.08) 0%, transparent 100%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.plan-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #fde2eb;
    margin-bottom: 30px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 10px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #fde2eb;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.plan-features li.disabled {
    color: var(--text-muted);
}

.plan-features li.disabled svg {
    color: var(--gray-600);
}

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

.plan-card.featured .btn-primary {
    box-shadow: var(--shadow-glow);
}

/* ========================================
   Group Plans
   ======================================== */
.group-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.group-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.group-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.group-icon {
    width: 100px;
    height: 100px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.group-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.group-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.group-info p {
    font-size: 0.9375rem;
    margin-bottom: 15px;
}

.group-discount {
    display: inline-block;
    background: rgba(233, 30, 140, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(233, 30, 140, 0.3);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* ========================================
   Results Section
   ======================================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.result-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(255,245,248,0.98));
    transform: translateY(100%);
    transition: var(--transition);
}

.result-card:hover img {
    transform: scale(1.1);
}

.result-card:hover .result-overlay {
    transform: translateY(0);
}

.result-overlay h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.result-overlay span {
    font-size: 0.875rem;
    color: var(--primary);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #ffe4ec 0%, #fde2eb 50%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e91e8c' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Blog Section
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta svg {
    width: 14px;
    height: 14px;
}

.blog-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    text-transform: none;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-white);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.contact-list {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #fde2eb;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
}

.contact-item p, .contact-item a {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.social-link svg {
    width: 22px;
    height: 22px;
    color: var(--text-light);
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-color: var(--primary);
}

.social-link:hover svg {
    color: #ffffff;
}

.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-light);
    background: #ffffff;
    border: 1px solid #fde2eb;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.12);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    padding: 0;
}

.map-container {
    position: relative;
    height: 400px;
    background: var(--bg-card);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: hue-rotate(300deg) saturate(1.2);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, #fff5f8 0%, #ffe4ec 100%);
    padding-top: 80px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #fde2eb;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

/* ========================================
   Page Header (Inner Pages)
   ======================================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #ffe4ec 0%, #fff5f8 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e91e8c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--primary);
}

.page-title {
    margin-bottom: 1rem;
}

.page-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Content Styles
   ======================================== */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.content-main h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
}

.content-main h3 {
    font-size: 1.375rem;
    margin: 1.5rem 0 1rem;
}

.content-main p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.content-main ul,
.content-main ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-main li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.content-main ul li {
    list-style: disc;
}

.content-main ol li {
    list-style: decimal;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    text-transform: none;
}

/* ========================================
   Login/Area do Aluno
   ======================================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.auth-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-md);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header img {
    height: 60px;
    margin: 0 auto 20px;
}

.auth-header h1 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-muted);
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #fde2eb;
}

.auth-footer p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ========================================
   Utilities
   ======================================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

.justify-center { justify-content: center !important; }
.align-center { align-items: center !important; }

.w-100 { width: 100% !important; }

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .plans-grid {
        gap: 20px;
    }

    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav-main {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta .btn {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        padding-top: 180px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .group-plans {
        grid-template-columns: 1fr;
    }

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

    .testimonial-card {
        flex: 0 0 100%;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 90px;
    }

    /* Mobile Menu */
    .nav-main {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255,245,248,0.98) 0%, rgba(255,228,236,0.98) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-main.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 15px 0;
    }

    .dropdown-menu a {
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 190px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.875rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 10px;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.875rem;
    }

    /* Reduce btn-lg on mobile to prevent cutoff */
    .btn-lg {
        padding: 16px 24px;
        font-size: 0.875rem;
    }

    .about-badge {
        width: 120px;
        height: 120px;
        right: -10px;
        bottom: -20px;
    }

    .about-badge .number {
        font-size: 2.5rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
}

/* ========================================
   Blog Styles
   ======================================== */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.blog-featured-image {
    min-height: 400px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-content h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-featured-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-featured-content h2 a:hover {
    color: var(--primary);
}

.blog-featured-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-date svg,
.blog-read-time svg {
    color: var(--primary);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.category-tag {
    padding: 10px 20px;
    border: 1px solid #fde2eb;
    border-radius: 25px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.category-tag:hover,
.category-tag.active {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    border-color: var(--primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #fde2eb;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card .blog-meta {
    margin-bottom: 0;
    font-size: 0.8125rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination-current,
.pagination-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-current {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
}

.pagination-link {
    border: 1px solid #fde2eb;
    color: var(--text-light);
}

.pagination-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #fde2eb;
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 16px;
}

.pagination-next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.newsletter-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.newsletter-form {
    max-width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-darker);
    border: 1px solid #fde2eb;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-disclaimer {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 24px;
    }

    .blog-featured-image {
        min-height: 250px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-box {
        padding: 24px;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .cta-section {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    section {
        padding: 30px 0;
    }
}

/* ========================================
   Pricing Plans - New Tabbed Interface
   ======================================== */

/* Plan Type Tabs */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 10px;
}

.plan-tab {
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-card);
    border: 2px solid #fde2eb;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.plan-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.plan-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Plan Content Areas */
.plan-content {
    display: none;
    animation: fadeIn 0.4s ease;
    overflow-x: hidden;
    max-width: 100%;
}

.plan-content.active {
    display: block;
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pricing-table-wrapper::-webkit-scrollbar {
    display: none;
}

/* Period Tabs (Mobile) */
.period-tabs {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.period-tab {
    flex: 1;
    max-width: 120px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 2px solid #fde2eb;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.period-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.period-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-color: var(--primary);
    color: #fff;
}

/* Mobile Pricing Cards */
.pricing-cards-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.pricing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid #fde2eb;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4ec 100%);
}

.pricing-card .popular-tag {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card-freq {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-card-freq .freq-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card-discount {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e91e8c;
    margin-left: 5px;
}

/* Responsive: Show mobile cards, hide table */
@media (max-width: 768px) {
    .period-tabs {
        display: flex;
    }

    .pricing-cards-mobile {
        display: flex;
    }

    .pricing-table-wrapper {
        display: none;
    }
}

.pricing-table {
    width: 100%;
    min-width: 700px;
    background: var(--bg-card);
    border-collapse: collapse;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
}

.pricing-table th {
    padding: 20px 15px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: center;
    white-space: nowrap;
}

.pricing-table th:first-child {
    text-align: left;
    padding-left: 25px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #fde2eb;
    transition: var(--transition);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: rgba(233, 30, 140, 0.05);
}

.pricing-table td {
    padding: 18px 15px;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-table td:first-child {
    text-align: left;
    padding-left: 25px;
    font-weight: 600;
    color: var(--text-white);
}

/* Frequency Badge */
.freq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.freq-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Featured Row (Most Popular) */
.featured-row {
    background: linear-gradient(90deg, rgba(233, 30, 140, 0.08) 0%, rgba(244, 114, 182, 0.08) 100%) !important;
    position: relative;
}

.featured-row td {
    font-weight: 600;
}

.featured-row td:first-child {
    position: relative;
}

/* Popular Tag */
.popular-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(233, 30, 140, 0.3);
}

/* Discount Badge */
.discount {
    display: block;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}

/* Price Cell */
.pricing-table td .price-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Fees Notice */
.fees-notice {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(244, 114, 182, 0.05) 100%);
    border: 1px solid rgba(233, 30, 140, 0.2);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    margin-top: 30px;
}

.fees-notice h4 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fees-notice h4 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.fee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.fee-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.fee-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* PIX Payment Box */
.pix-payment-box {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-top: 40px;
    box-shadow: var(--shadow-md), 0 0 30px rgba(233, 30, 140, 0.1);
}

.pix-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(233, 30, 140, 0.2);
}

.pix-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pix-icon svg {
    color: #ffffff;
}

.pix-title h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    text-transform: none;
}

.pix-title p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9375rem;
}

.pix-key-container {
    text-align: center;
    margin-bottom: 20px;
}

.pix-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pix-key-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 2px dashed rgba(233, 30, 140, 0.3);
    border-radius: var(--border-radius);
    padding: 15px 25px;
    margin-bottom: 10px;
}

.pix-key {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.pix-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pix-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.pix-copy-btn.copied {
    background: var(--success);
}

.pix-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.pix-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(233, 30, 140, 0.1);
}

@media (max-width: 768px) {
    .pix-payment-box {
        padding: 20px;
    }

    .pix-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pix-key-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        width: 100%;
    }

    .pix-key {
        font-size: 1.25rem;
    }

    .pix-copy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Contract Section */
.contract-section {
    background: var(--bg-card);
    border: 1px solid #fde2eb;
    border-radius: var(--border-radius-lg);
    margin-top: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contract-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.contract-header:hover {
    background: rgba(233, 30, 140, 0.05);
}

.contract-icon {
    width: 50px;
    height: 50px;
    background: rgba(233, 30, 140, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contract-icon svg {
    color: var(--primary);
}

.contract-title {
    flex: 1;
}

.contract-title h3 {
    font-size: 1.125rem;
    margin-bottom: 5px;
    text-transform: none;
}

.contract-title p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
}

.contract-toggle {
    color: var(--primary);
    transition: var(--transition);
}

.contract-section.open .contract-toggle {
    transform: rotate(180deg);
}

.contract-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.contract-section.open .contract-content {
    max-height: 5000px;
}

.contract-document {
    padding: 30px;
    border-top: 1px solid #fde2eb;
}

.contract-doc-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary);
}

.contract-doc-header h2 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.contract-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.contract-parties {
    background: rgba(233, 30, 140, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.contract-party {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(233, 30, 140, 0.2);
}

.contract-party:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contract-party h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: none;
}

.contract-party p {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.contract-clauses {
    margin-bottom: 30px;
}

.contract-clause {
    margin-bottom: 25px;
}

.contract-clause h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: none;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.contract-clause p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: justify;
}

.contract-schedule {
    background: rgba(233, 30, 140, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 10px;
}

.contract-schedule p {
    margin: 0;
    text-align: center;
}

.contract-signatures {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #fde2eb;
}

.contract-signature {
    flex: 1;
    text-align: center;
}

.signature-line {
    width: 100%;
    height: 1px;
    background: var(--text-light);
    margin-bottom: 15px;
    margin-top: 80px;
}

.contract-signature p {
    margin-bottom: 5px;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.contract-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.contract-actions {
    padding: 20px 30px;
    background: rgba(233, 30, 140, 0.05);
    border-top: 1px solid #fde2eb;
    text-align: center;
}

.contract-actions .btn {
    gap: 10px;
}

@media (max-width: 768px) {
    .contract-header {
        padding: 20px;
    }

    .contract-document {
        padding: 20px;
    }

    .contract-parties {
        padding: 15px;
    }

    .contract-signatures {
        flex-direction: column;
        gap: 30px;
    }

    .signature-line {
        margin-top: 50px;
    }

    .contract-clause h4 {
        font-size: 0.9375rem;
    }

    .contract-clause p {
        font-size: 0.875rem;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
}

.benefit-card:hover .benefit-icon svg {
    color: #ffffff;
}

.benefit-card h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    text-transform: none;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Plans CTA Section */
.plans-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffe4ec 0%, #fde2eb 50%, #fff5f8 100%);
    position: relative;
}

.plans-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e91e8c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.plans-cta .container {
    position: relative;
    z-index: 1;
}

.plans-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.plans-cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.plans-cta .btn {
    box-shadow: var(--shadow-glow);
}

/* Plan Section Title Centered */
.plans-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Responsive Pricing Tables */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plan-tabs {
        gap: 8px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0 15px;
    }

    .plan-tab {
        padding: 12px 15px;
        font-size: 0.8rem;
        min-width: auto;
        width: 100%;
        text-align: center;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }

    .pricing-table td .price-value {
        font-size: 0.95rem;
    }

    .popular-tag {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .fees-notice {
        padding: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .plans-cta {
        padding: 60px 0;
    }

    .pricing-table-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .plan-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .plan-tab {
        padding: 10px 8px;
        font-size: 0.75rem;
    }

    .pricing-table {
        min-width: 450px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 6px;
        font-size: 0.75rem;
    }

    .pricing-table th:first-child,
    .pricing-table td:first-child {
        padding-left: 10px;
    }
}

/* ========================================
   Personal Maringá - Elite Landing Page
   ======================================== */

/* Hero Section - Maringá */
.maringa-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe4ec 50%, #fde2eb 100%);
    overflow: hidden;
}

.maringa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e91e8c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.maringa-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-white);
}

.maringa-title .highlight {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stats-bar {
    display: flex;
    gap: 40px;
    padding: 30px 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid #fde2eb;
    max-width: fit-content;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #fde2eb;
}

.hero-stat .number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat .label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid #fde2eb;
    border-bottom: 1px solid #fde2eb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.trust-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.trust-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
}

.trust-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* About Maringá Section */
.about-maringa-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-maringa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-maringa-image {
    position: relative;
}

.about-maringa-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-maringa-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 3px solid var(--primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.experience-badge .number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid #fde2eb;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.highlight-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Why Personal Section */
.why-personal-section {
    padding: 100px 0;
    background: var(--bg-card);
}

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

.why-card {
    background: var(--bg-dark);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #f472b6 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-transform: none;
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Services Maringá Section */
.services-maringa-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #ffe4ec 100%);
}

.services-elite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card-elite {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #fde2eb;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card-elite:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-elite-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15) 0%, rgba(244, 114, 182, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-elite-icon svg {
    width: 42px;
    height: 42px;
    color: var(--primary);
}

.service-card-elite:hover .service-elite-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
}

.service-card-elite:hover .service-elite-icon svg {
    color: #ffffff;
}

.service-card-elite h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-transform: none;
}

.service-card-elite p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.service-feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(233, 30, 140, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Areas Section */
.areas-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.area-card {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #fde2eb;
}

.area-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.area-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.area-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.area-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
}

.area-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Testimonials Maringá */
.testimonials-maringa-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffe4ec 0%, #fff5f8 100%);
}

.testimonials-elite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-elite {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    position: relative;
    border: 1px solid #fde2eb;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card-elite:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: #fbbf24;
}

.testimonial-card-elite blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.testimonial-author-elite {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-elite {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.author-info-elite h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    text-transform: none;
}

.author-info-elite span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Pricing Preview Section */
.pricing-preview-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-preview-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #fde2eb;
    transition: var(--transition);
    position: relative;
}

.pricing-preview-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.pricing-preview-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #f472b6 100%);
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.pricing-preview-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.pricing-preview-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.pricing-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: none;
}

.pricing-preview-card .price {
    margin: 20px 0;
}

.pricing-preview-card .price-from {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-preview-card .price-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-preview-card .price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-preview-card .pricing-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* FAQ Maringá Section */
.faq-maringa-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.faq-elite-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-elite-item {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #fde2eb;
    transition: var(--transition);
}

.faq-elite-item:hover,
.faq-elite-item.active {
    border-color: var(--primary);
}

.faq-elite-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition);
}

.faq-elite-question:hover {
    color: var(--primary);
}

.faq-elite-question svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-elite-item.active .faq-elite-question svg {
    transform: rotate(180deg);
}

.faq-elite-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-elite-item.active .faq-elite-answer {
    max-height: 500px;
}

.faq-elite-answer p {
    padding: 0 30px 25px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #c4177a 50%, #a855f7 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.final-cta-section h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 35px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-section .btn-primary {
    background: #ffffff;
    color: var(--primary);
}

.final-cta-section .btn-primary:hover {
    background: #fff5f8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta-section .btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.final-cta-section .btn-outline:hover {
    background: #ffffff;
    color: var(--primary);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-contact-item svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.cta-contact-item span {
    font-size: 1rem;
}

/* Responsive - Personal Maringá */
@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-preview-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .about-maringa-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-elite-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-elite-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .maringa-hero {
        padding-top: 160px;
        padding-bottom: 60px;
        overflow: visible;
    }

    .maringa-hero .container {
        padding: 0 20px;
    }

    .maringa-hero-content {
        padding-bottom: 30px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.875rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.875rem;
    }

    .hero-stats-bar {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-stat:not(:last-child)::after {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        right: -10px;
        bottom: -15px;
    }

    .experience-badge .number {
        font-size: 2.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-elite-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-elite-grid {
        grid-template-columns: 1fr;
    }

    .pricing-preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-elite-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-elite-answer p {
        padding: 0 20px 20px;
    }

    .final-cta-section {
        padding: 80px 0;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .final-cta-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.875rem;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .maringa-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stat .number {
        font-size: 2rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .pricing-preview-card {
        padding: 30px 20px;
    }

    .pricing-preview-card .price-value {
        font-size: 2.5rem;
    }
}
