/* ========================================
   PHOTOSHOP LANDING PAGE - STYLES
   Go Up Treinamentos Profissionais
   ======================================== */

:root {
    /* Photoshop Blue Theme */
    --ps-blue: #31a8ff;
    --ps-blue-dark: #0088cc;
    --ps-blue-light: #69c0ff;
    --ps-cyan: #00ccff;
    
    /* Background Colors */
    --dark-bg: #0a0e13;
    --darker-bg: #050810;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a9b8;
    --text-muted: #6b7280;
    
    /* Gradients */
    --gradient-ps: linear-gradient(135deg, #31a8ff, #00ccff);
    --gradient-ps-dark: linear-gradient(135deg, #0088cc, #31a8ff);
    --gradient-ead: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--ps-blue);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--ps-cyan);
    top: 50%;
    right: -10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: var(--ps-blue-dark);
    bottom: -20%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 19, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--text-primary);
}

.nav-menu a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-ps);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-ps);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(49, 168, 255, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--darker-bg);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    padding: 2rem;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--ps-blue);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(49, 168, 255, 0.3), transparent 70%);
    top: 10%;
    left: -10%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.2), transparent 70%);
    bottom: 10%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: var(--card-bg);
    border: 1px solid rgba(49, 168, 255, 0.3);
    border-radius: 50px;
    color: var(--ps-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(49, 168, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(49, 168, 255, 0.4);
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-ps);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--ps-blue);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-feature i {
    color: var(--ps-blue);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-ps);
    color: white;
    box-shadow: 0 10px 30px rgba(49, 168, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(49, 168, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--card-hover);
    border-color: var(--ps-blue);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.photoshop-icon {
    width: 250px;
    height: 250px;
    background: var(--gradient-ps);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(49, 168, 255, 0.4);
    animation: iconFloat 6s ease-in-out infinite;
}

.ps-text {
    font-size: 8rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 1px solid rgba(49, 168, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ps-blue);
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    animation: floatElement 4s ease-in-out infinite;
}

.float-element.layer {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.float-element.brush {
    top: 20%;
    right: -20px;
    animation-delay: 1s;
}

.float-element.magic {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.float-element.crop {
    bottom: 0;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(49, 168, 255, 0.1);
    border: 1px solid rgba(49, 168, 255, 0.3);
    border-radius: 50px;
    color: var(--ps-blue);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 6rem 2rem;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-primary);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ps-blue);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-sidebar {
    position: sticky;
    top: 120px;
}

.features-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.features-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--ps-blue);
    font-size: 1.2rem;
    min-width: 24px;
}

/* ========================================
   CONTENT SECTION
   ======================================== */
.content-section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.curriculum-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.curriculum-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    border-color: rgba(49, 168, 255, 0.3);
    background: var(--card-hover);
}

.curriculum-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.curriculum-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-ps);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.curriculum-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.curriculum-list {
    list-style: none;
}

.curriculum-list li {
    padding: 0.6rem 0;
    padding-left: 1rem;
    border-left: 2px solid var(--ps-blue);
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.curriculum-list li:hover {
    background: rgba(49, 168, 255, 0.05);
    padding-left: 1.5rem;
    color: var(--text-primary);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 6rem 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-ps);
}

.pricing-card.ead::before {
    background: var(--gradient-ead);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(49, 168, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(49, 168, 255, 0.1);
    border: 1px solid rgba(49, 168, 255, 0.3);
    border-radius: 50px;
    color: var(--ps-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-badge.ead-badge {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-location i {
    margin-right: 0.3rem;
}

.pricing-old {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    margin-left: 0.3rem;
}

.pricing-value {
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ps-blue);
    vertical-align: top;
}

.pricing-card.ead .pricing-currency {
    color: #a78bfa;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--ps-blue);
    line-height: 1;
}

.pricing-card.ead .pricing-amount {
    color: #a78bfa;
}

.pricing-cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ps-blue);
    vertical-align: top;
}

.pricing-card.ead .pricing-cents {
    color: #a78bfa;
}

.pricing-installments {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-pix {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50px;
    color: #00c853;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--ps-blue);
}

.pricing-card.ead .pricing-features i {
    color: #a78bfa;
}

.btn-cta {
    width: 100%;
    justify-content: center;
    background: var(--gradient-ps);
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(49, 168, 255, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(49, 168, 255, 0.5);
}

.btn-cta-ead {
    width: 100%;
    justify-content: center;
    background: var(--gradient-ead);
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-cta-ead:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(49, 168, 255, 0.1), rgba(0, 204, 255, 0.05));
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    background: rgba(49, 168, 255, 0.15);
    border-color: rgba(49, 168, 255, 0.4);
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.3rem 3rem;
    background: var(--gradient-ps);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(49, 168, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(49, 168, 255, 0.5);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-bg);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-item i {
    color: var(--ps-blue);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--ps-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--ps-blue);
}

.footer-location h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-location p {
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 50px rgba(37, 211, 102, 0.8);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-sidebar {
        position: static;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .photoshop-icon {
        width: 180px;
        height: 180px;
    }
    
    .ps-text {
        font-size: 5rem;
    }
    
    .float-element {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-amount {
        font-size: 3rem;
    }
}
