* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFC107;
    --primary-purple: #8B5FBF;
    --primary-pink: #FF6B9D;
    --secondary-blue: #4ECDC4;
    --secondary-green: #7CB342;
    --secondary-orange: #FF9051;
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #95A5A6;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-xl: 0 30px 90px rgba(0,0,0,0.20);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Header Premium */
.header {
    background-color: #95FFA7;
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 580px;
    height: auto;
    background: var(--bg-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.header-nav {
    display: flex;
    gap: 45px;
    align-items: center;
}

.header-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.header-nav a:hover {
    color: var(--primary-purple);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 10px;
}

.header-phone:hover {
    background: rgba(255,255,255,0.3);
}

.header-phone i {
    font-size: 20px;
    color: var(--primary-purple);
}

.header-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.menu-toggle:active {
    transform: scale(0.95);
}

/* Hero Premium */
.hero {
    background-image: url('assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin: 0;
    line-height: 1.2;
}



/* Service Images */
.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Mission Section Premium */
.mission-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 120px 50px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(139, 95, 191, 0.1), rgba(255, 107, 157, 0.1));
    color: var(--primary-purple);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(139, 95, 191, 0.2);
}

.section-badge i {
    font-size: 18px;
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.9;
    font-weight: 400;
}

.mission-intro {
    max-width: 1100px;
    margin: 0 auto 80px;
    background: white;
    padding: 50px 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-left: 5px solid var(--primary-yellow);
}

.mission-intro p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    font-weight: 400;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 95, 191, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.feature-card:nth-child(1) {
    border-top-color: var(--primary-pink);
}

.feature-card:nth-child(2) {
    border-top-color: var(--primary-yellow);
}

.feature-card:nth-child(3) {
    border-top-color: var(--secondary-green);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 42px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-orange));
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--primary-yellow), #FFD54F);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--secondary-green), #AED581);
}

.feature-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* About Section Premium */
.about-section {
    background: white;
    padding: 120px 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-text-wrapper {
    position: relative;
}

.about-text h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(139, 95, 191, 0.1), rgba(255, 107, 157, 0.1));
    padding: 30px 35px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-purple);
    margin-top: 35px;
}

.about-highlight p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-visual-wrapper {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 35px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-visual-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.brain-visual {
    font-size: 200px;
    color: white;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    position: relative;
    z-index: 1;
}

.about-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-icon-item {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
}

.about-icon-item i {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.about-icon-item p {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Services Section Ultra Premium */
.services-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #E8EAF6 100%);
    padding: 120px 50px;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 45px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-header {
    padding: 50px 45px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.service-card:nth-child(2) .service-header {
    background: linear-gradient(135deg, #7CB342, #AED581);
}

.service-card:nth-child(3) .service-header {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.service-card:nth-child(4) .service-header {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.service-card:nth-child(5) .service-header {
    background: linear-gradient(135deg, #FF9051, #FFD54F);
}

.service-icon-large {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.service-header h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.3;
}

.service-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.service-body {
    padding: 45px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-benefits {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

.service-benefits h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits h4 i {
    color: var(--primary-purple);
    font-size: 20px;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    color: var(--text-medium);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.service-benefits li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-size: 14px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 16px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    margin-top: auto;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.service-cta i {
    font-size: 22px;
}

/* Gallery Section Premium */
.gallery-section {
    background: white;
    padding: 120px 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    padding-top: 75%;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-light);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
}

.gallery-placeholder i {
    font-size: 72px;
    opacity: 0.9;
}

.gallery-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Contact Section Ultra Premium */
.contact-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    color: white;
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.contact-section .section-badge {
    background: rgba(255,255,255,0.25);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.2);
}

.info-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(10px);
    border-color: rgba(255,255,255,0.4);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin: 8px 0;
    font-weight: 400;
}

.info-card a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.info-card a:hover {
    text-decoration: underline;
    gap: 12px;
}

.qrcode-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
}

.qrcode-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.qrcode-wrapper {
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
    background: var(--bg-light);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-purple);
    overflow: hidden;
}

.qrcode-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.instagram-handle {
    font-size: 1.4rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.instagram-handle i {
    font-size: 28px;
}

.social-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: white;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.social-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

/* Floating Button Premium */
.floating-whatsapp {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    font-size: 40px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.floating-whatsapp a:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

/* Footer Premium */
footer {
    background: linear-gradient(135deg, #1A252F 0%, #2C3E50 100%);
    color: rgba(255,255,255,0.9);
    padding: 60px 50px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: white;
}

.footer-about p {
    line-height: 1.8;
    opacity: 0.8;
}

.footer-links h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-yellow);
    transform: translateY(-5px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

html {
    scroll-behavior: smooth;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink), var(--primary-yellow));
    z-index: 9999;
    transition: width 0.3s;
}

a{
    text-decoration: none;
}



/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-menu nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    padding: 10px;
}

.mobile-menu nav a:hover {
    color: var(--primary-yellow);
    transform: translateX(10px);
}

.mobile-menu .mobile-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-menu .mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    z-index: 10000;
    padding: 10px;
    transition: all 0.3s;
}

.menu-close:hover {
    color: var(--primary-yellow);
    transform: rotate(90deg);
}

.menu-toggle.active {
    color: var(--primary-yellow);
}

/* ===================================
   RESPONSIVIDADE
   =================================== */

/* Tablets Grandes e Laptops (1024px - 1199px) */
@media (max-width: 1199px) {
    .header-container {
        padding: 0 30px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container {
        gap: 60px;
    }

    .mission-section,
    .about-section,
    .services-section,
    .gallery-section,
    .contact-section {
        padding: 100px 30px;
    }

    footer {
        padding: 50px 30px;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .header-container {
        padding: 0 25px;
    }

    .header-nav {
        gap: 25px;
    }

    .hero-container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image {
        order: -1;
    }

    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    .mission-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-icons {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .qrcode-card {
        position: static;
    }
}

/* Mobile e Tablets Pequenos (max-width: 767px) */
@media (max-width: 767px) {
    .header-container {
        padding: 0 20px;
    }

    .logo-img {
        width: 200px;
    }

    .header-nav,
    .header-contact {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .mission-section,
    .about-section,
    .services-section,
    .gallery-section,
    .contact-section {
        padding: 60px 20px;
    }

    .mission-intro {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .mission-intro p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .mission-features {
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-visual-wrapper {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .brain-visual {
        font-size: 100px;
    }

    .about-icons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        border-radius: 20px;
    }

    .service-image {
        height: 200px;
        border-radius: 20px 20px 0 0;
    }

    .service-header {
        padding: 30px 20px 20px;
    }

    .service-icon-large {
        font-size: 45px;
    }

    .service-header h3 {
        font-size: 1.5rem;
    }

    .service-subtitle {
        font-size: 0.9rem;
    }

    .service-body {
        padding: 0 20px 30px;
    }

    .service-body p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .service-benefits h4 {
        font-size: 1rem;
    }

    .service-benefits ul li {
        font-size: 0.9rem;
    }

    .service-cta {
        font-size: 0.95rem;
        padding: 14px 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        border-radius: 20px;
    }

    .contact-info {
        gap: 20px;
    }

    .info-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .info-card h4 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }

    .qrcode-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .qrcode-card h3 {
        font-size: 1.5rem;
    }

    .qrcode-wrapper {
        width: 200px;
        height: 200px;
    }

    .instagram-handle {
        font-size: 1.1rem;
    }

    footer {
        padding: 40px 20px;
    }

    .footer-about h3 {
        font-size: 1.5rem;
    }

    .footer-about p {
        font-size: 0.95rem;
    }

    .footer-links h4 {
        font-size: 1.2rem;
    }

    .footer-links ul li a {
        font-size: 0.9rem;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp a {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* Mobile Pequeno (max-width: 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .logo-img {
        width: 370px;
    }

    .hero {
        height: 45vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 15px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .mission-section,
    .about-section,
    .services-section,
    .gallery-section,
    .contact-section {
        padding: 50px 15px;
    }

    .mission-intro {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .mission-intro p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-visual-wrapper {
        padding: 30px 18px;
        border-radius: 18px;
    }

    .brain-visual {
        font-size: 90px;
    }

    .about-icon-item i {
        font-size: 35px;
    }

    .about-icon-item p {
        font-size: 0.85rem;
    }

    .service-card {
        border-radius: 18px;
    }

    .service-image {
        height: 180px;
        border-radius: 18px 18px 0 0;
    }

    .service-icon-large {
        font-size: 40px;
    }

    .service-header h3 {
        font-size: 1.4rem;
    }

    .service-subtitle {
        font-size: 0.85rem;
    }

    .service-header {
        padding: 25px 18px 18px;
    }

    .service-body {
        padding: 0 18px 25px;
    }

    .service-body p {
        font-size: 0.9rem;
    }

    .service-benefits h4 {
        font-size: 0.95rem;
    }

    .service-benefits ul li {
        font-size: 0.85rem;
    }

    .service-cta {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .gallery-item {
        border-radius: 18px;
    }

    .info-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .info-card h4 {
        font-size: 1.2rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .qrcode-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .qrcode-card h3 {
        font-size: 1.4rem;
    }

    .qrcode-wrapper {
        width: 180px;
        height: 180px;
    }

    .instagram-handle {
        font-size: 1rem;
    }

    .social-cta {
        font-size: 0.9rem;
        padding: 12px 25px;
    }

    footer {
        padding: 35px 15px;
    }

    .footer-about h3 {
        font-size: 1.4rem;
    }

    .footer-about p {
        font-size: 0.9rem;
    }

    .footer-links h4 {
        font-size: 1.1rem;
    }

    .footer-links ul li a {
        font-size: 0.85rem;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }

    .floating-whatsapp a {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}


/* Ajustes gerais para touch devices */
@media (hover: none) and (pointer: coarse) {
    .header-nav a:hover::after {
        width: 0;
    }
    
    .service-card:hover .service-image img {
        transform: scale(1);
    }
}

/* Prevenir zoom em inputs no iOS */
@media screen and (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px !important;
    }
}

/* Melhorar clique em elementos pequenos no mobile */
@media (max-width: 767px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}