/* Variables */
:root {
    --primary-color: #CA1D53;
    --primary-hover: #a61242;
    --text-dark: #1E293B;
    --text-medium: #64748B;
    --text-light: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-footer: #0F172A;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px 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);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    /* More rounded for modern SaaS feel */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(202, 29, 83, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(202, 29, 83, 0.05);
}

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

.btn-white:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* Header */
.header {
    height: var(--header-height);
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
}

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

.logo img {
    height: 40px;
    /* Adjust based on actual logo ratio */
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-medium);
}

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

.header-actions {
    display: flex;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Sections General */
.section {
    padding: 6rem 0;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.center {
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
    padding: 4rem 0 6rem;
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    /* Large headline */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stat {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.hero-stat span {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.hero-stat strong {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper img {
    /* Simple fade in without movement */
    animation: heroEntrance 1.2s ease-out forwards;
    transform-origin: center center;
    opacity: 0;
}

.hero-image-wrapper .device-mockup {
    /* Simple entrance without float */
    animation: heroMockupEntrance 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes heroMockupEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GO Intelligence Section */
.go-intelligence {
    position: relative;
    background-image: url('../assets/ARTE-CAPAS.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.go-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(202, 29, 83, 0.9));
    backdrop-filter: blur(3px);
}

.go-intel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.go-intel-content .section-tag {
    color: white;
}

.go-intel-content .section-title {
    color: white;
    font-size: 2.5rem;
}

.go-intel-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.go-intel-description strong {
    color: white;
}

/* Search Bar Mock */
.go-intel-search-demo {
    margin-bottom: 2.5rem;
}

.search-bar-mock {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-bar-mock:hover {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.search-typing {
    color: white;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
}

.search-cursor {
    color: white;
    animation: blink 1s step-end infinite;
    font-weight: 300;
    margin-left: 1px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.search-icon-mock {
    margin-left: auto;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Features Column */
.go-intel-features-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.go-intel-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.go-intel-feature {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    transition: all 0.3s ease;
}

.go-intel-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateX(10px);
}

.go-intel-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.go-intel-feature-text {
    flex: 1;
}

.go-intel-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.go-intel-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

.go-intel-cta {
    margin-top: 2.5rem;
}

.go-intel-cta .btn {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    font-weight: 600;
}

.go-intel-cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* GO Intelligence Responsive */
@media (max-width: 991px) {
    .go-intel-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .go-intel-feature:hover {
        transform: translateY(-5px);
    }
    
    .go-intel-content .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .go-intel-content .section-title {
        font-size: 1.75rem;
    }
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(202, 29, 83, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.about-visual img {
    /* Removed border and shadow as requested */

    /* Zoom and positioning */
    transform: scale(1.4);
    transform-origin: center center;

    /* Zoom entrance animation */
    animation: zoomIn 1.2s ease-out forwards;
    opacity: 0;
    /* Start hidden for entrance */
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

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

/* Contents Cards */
.contents {
    background-color: var(--bg-light);
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.card-image {
    position: relative;
    aspect-ratio: 4/5; /* Taller vertical ratio to show more of the image (80%+) */
    background-color: #eee;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focus on the top part of the image (faces) */
    transition: transform 1s ease;
}

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

.card-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.card-type {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-body p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.card-link:hover {
    text-decoration: underline;
}

.center-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Audience Section */
.audience {
    background-color: var(--bg-white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audience-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.audience-card.featured {
    background-color: #FFF0F5;
    /* Very subtle pink tint */
    border-color: rgba(202, 29, 83, 0.2);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
}

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

.audience-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.audience-image {
    height: 180px;
    overflow: hidden;
}

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

.audience-content {
    padding: 2rem;
}

.audience-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.audience-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Authority Section */
.authority {
    padding: 4rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.trust-badge {
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background-color: rgba(202, 29, 83, 0.05);
    border-radius: 50%;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
    opacity: 0.6;
}

.partner-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Experience */
.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.exp-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.exp-item:hover {
    border-left-color: var(--primary-color);
}

.exp-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.exp-item p {
    color: var(--text-medium);
}

.device-mockup {
    border: 12px solid #333;
    border-radius: 30px;
    padding: 0;
    /* No inner padding for sleek look */
    background: #000;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Notebook in experience section */
.experience-notebook {
    width: 100%;
    animation: notebookFloat 6s ease-in-out infinite;
}

@keyframes notebookFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* CTA Final */
.cta-section {
    position: relative;
    background-image: url('../assets/ARTE-CAPAS.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    /* Ensure content stays above overlay */
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(202, 29, 83, 0.9), rgba(30, 41, 59, 0.9));
    /* Magenta to Dark Blue gradient overlay */
    backdrop-filter: blur(3px);
    /* Blur effect as requested */
    z-index: 1;
}

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

.cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--bg-footer);
    color: #94A3B8;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.brand-col p {
    margin-top: 1rem;
    line-height: 1.5;
}

.footer-logo {
    max-height: 40px;
    filter: brightness(0) invert(1);
    /* Make logo white for footer */
    opacity: 0.8;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .header-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-container,
    .about-container,
    .experience-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        overflow: hidden;
    } 

    .hero-image-wrapper img {
        animation: heroEntranceMobile 1.2s ease-out forwards;
    }

    .hero-image-wrapper .device-mockup {
        animation: heroEntranceMobile 1.2s ease-out forwards;
    }

    @keyframes heroEntranceMobile {
        0%   { opacity: 0; transform: translateY(20px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    .hero-actions,
    .hero-stat {
        justify-content: center;
    }

    .feature-item {
        justify-content: center;
        /* Center align feature items in mobile */
        text-align: left;
        /* Keep text aligned properly */
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .experience-info {
        order: 2;
    }

    .experience-visual {
        order: 1;
    }

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

    .audience-card.featured {
        transform: none;
        order: -1;
        /* Show promoted card first on mobile */
    }

    .audience-card.featured:hover {
        transform: translateY(-5px);
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        margin-bottom: 2rem;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-stat {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image-wrapper img {
        animation: heroEntranceMobile 1.2s ease-out forwards, floatMobile 6s ease-in-out infinite 1.2s;
    }

    @keyframes heroEntranceMobile {
        0%  { opacity: 0; transform: scale(1) translateX(0); }
        100%{ opacity: 1; transform: scale(1) translateX(0); }
    }

    @keyframes floatMobile {
        0%   { transform: scale(1) translateY(0); }
        50%  { transform: scale(1) translateY(-10px); }
        100% { transform: scale(1) translateY(0); }
    }

    /* 3. Garante que a imagem do about também não extrapole */
    .about-visual img {
        transform: scale(1) !important;
        animation: zoomInMobile 1.2s ease-out forwards;
    }

    @keyframes zoomInMobile {
        0%  { opacity: 0; transform: scale(0.8); }
        100%{ opacity: 1; transform: scale(1); }
    }
}

/* Utility Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Experience Image Transition */
.experience-img {
    transition: opacity 1s ease-in-out;
}
/* Partner Logo Random Highlight Animation */
.partner-logo {
    transition: transform 0.5s ease, color 0.5s ease;
    cursor: default;
}

.partner-logo.highlight {
    animation: nameHighlight 2s ease-in-out;
}

@keyframes nameHighlight {
    0% {
        transform: scale(1);
        color: #94A3B8;
    }
    50% {
        transform: scale(1.15);
        color: #475569; /* Darker gray */
    }
    100% {
        transform: scale(1);
        color: #94A3B8;
    }
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-medium);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-medium);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-features li strong {
    color: var(--primary-color);
}

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

/* Pricing Responsive */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* Magazines Section */
.magazines {
    background-color: var(--bg-white);
}

.magazines-carousel {
    position: relative;
    margin: 3rem 0;
    padding: 0 60px;
}

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

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 1s ease;
}

.magazine-item {
    flex: 0 0 calc(25% - 1.125rem);
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.magazine-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.magazine-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-btn:hover svg {
    stroke: white;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn svg {
    stroke: var(--text-dark);
    transition: stroke 0.3s ease;
}

/* Magazines Responsive */
@media (max-width: 991px) {
    .magazine-item {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .magazines-carousel {
        padding: 0 50px;
    }
    
    .magazine-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .magazine-item {
        flex: 0 0 100%;
    }
}

