*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
    --yellow: #F5C518;
    --yellow-dark: #D4A800;
    --vanilla: #F5E6CA;
    --vanilla-dark: #E8D5B0;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
@keyframes riseUp { 0% { opacity: 0; transform: translateY(50px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes slideLeft { 0% { opacity: 0; transform: translateX(-60px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes slideRight { 0% { opacity: 0; transform: translateX(60px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.4); } 50% { box-shadow: 0 0 0 16px rgba(245,197,24,0); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes scaleIn { 0% { opacity: 0; transform: scale(0.9); } 100% { opacity: 1; transform: scale(1); } }
@keyframes whatsappPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 100% { box-shadow: 0 0 0 20px rgba(37,211,102,0); } }

.section-tag {
    display: inline-block;
    background: rgba(245, 197, 24, 0.12);
    color: var(--yellow-dark);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-title span { color: var(--yellow-dark); }
.section-desc {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-desc { margin: 0 auto; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
}
.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}
.btn-dark {
    background: var(--black);
    color: var(--white);
}
.btn-dark:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-glow { animation: pulseGlow 2s ease-in-out infinite; }
.btn-glow:hover { animation: none; }

.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---- HEADER ---- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 20px;
    transition: var(--transition);
    background: transparent;
}
.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: var(--transition);
}
.header.scrolled .logo { color: var(--black); }
.logo i { color: var(--yellow); font-size: 1.5rem; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}
.header.scrolled .nav a { color: var(--black); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--yellow); }
.nav .btn { padding: 10px 24px; font-size: 0.85rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    width: 28px; height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---- HERO / SLIDER ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.slider-container {
    position: absolute;
    inset: 0;
}
.slider-container .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}
.slider-container .slide.active {
    opacity: 1;
    animation: kenBurns 7s ease forwards;
}
.slider-container .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
}
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
}
.slider-controls .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}
.slider-controls .dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 20px rgba(245,197,24,0.5);
    width: 36px;
    border-radius: 6px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-arrow:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-content .container { width: 100%; }
.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: slideLeft 0.8s ease forwards;
}
.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 20px;
    animation: riseUp 0.8s ease 0.2s both;
}
.hero h1 span { color: var(--yellow); }
.hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: riseUp 0.8s ease 0.35s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: riseUp 0.8s ease 0.5s both;
}

/* ---- ABOUT ---- */
.about { padding: 100px 0; background: var(--white); position: relative; }
.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
.about-image img { width: 100%; height: 450px; object-fit: cover; transition: transform 0.7s ease; }
.about-image:hover img { transform: scale(1.06); }
.about-image::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    width: 100px; height: 100px;
    border: 4px solid var(--yellow);
    border-radius: var(--radius);
    z-index: -1;
    transition: var(--transition);
}
.about-image:hover::before { top: -16px; left: -16px; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.about-stat { text-align: center; }
.about-stat h3 { font-family: 'Oswald', sans-serif; font-size: 2.2rem; color: var(--yellow-dark); }
.about-stat p { color: var(--gray); font-size: 0.9rem; }

/* ---- SERVICES ---- */
.services { padding: 100px 0; background: var(--light-gray); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 4px solid transparent;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--yellow);
}
.service-card .icon {
    width: 70px; height: 70px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--yellow-dark);
    transition: all 0.5s ease;
}
.service-card:hover .icon {
    background: var(--yellow);
    color: var(--black);
    transform: rotateY(360deg);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ---- MEMBERSHIP ---- */
.membership { padding: 100px 0; background: var(--white); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.pricing-card.popular {
    border-color: var(--yellow);
    transform: scale(1.03);
}
.pricing-card.popular .badge {
    position: absolute;
    top: 20px; right: -32px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 40px;
    transform: rotate(45deg);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.pricing-card .plan-name { font-family: 'Oswald', sans-serif; font-size: 1.4rem; margin-bottom: 8px; }
.pricing-card .price {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow-dark);
    margin: 12px 0;
}
.pricing-card .price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.pricing-card .duration { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }
.pricing-card ul { list-style: none; margin: 24px 0; text-align: left; }
.pricing-card ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.pricing-card:hover ul li { color: var(--black); }
.pricing-card ul li i { color: var(--yellow); font-size: 0.8rem; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 100px 0; background: var(--light-gray); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.testimonial-card .stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-card .author img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--vanilla);
    transition: var(--transition);
}
.testimonial-card:hover .author img { border-color: var(--yellow); transform: scale(1.1); }
.testimonial-card .author h4 { font-size: 0.95rem; }
.testimonial-card .author span { color: var(--gray); font-size: 0.8rem; }

/* ---- CONTACT ---- */
.contact { padding: 100px 0; background: var(--white); }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}
.contact-info { padding-top: 10px; }
.contact-info h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; margin-bottom: 16px; }
.contact-info > p { color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 14px;
    transition: all 0.4s ease;
}
.contact-detail:hover {
    background: rgba(245,197,24,0.1);
    transform: translateX(8px);
}
.contact-detail i {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.contact-detail:hover i { transform: scale(1.15); }
.contact-detail div span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.contact-detail div p { font-weight: 500; }
.contact-detail div a { font-weight: 500; }
.contact-detail div a:hover { color: var(--yellow-dark); }
.contact-form {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.contact-form:hover { box-shadow: var(--shadow-hover); }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(245,197,24,0.15);
    transform: translateY(-1px);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-status {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-status.success {
    display: block;
    background: rgba(34,197,94,0.1);
    color: #16a34a;
    border: 1px solid rgba(34,197,94,0.2);
    animation: scaleIn 0.4s ease;
}
.form-status.error {
    display: block;
    background: rgba(239,68,68,0.1);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,0.2);
    animation: scaleIn 0.4s ease;
}

/* ---- CTA BANNER ---- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(245,197,24,0.05), transparent 60%);
    animation: floatSlow 6s ease-in-out infinite;
}
.cta-banner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}
.cta-banner h2 span { color: var(--yellow); }
.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
}
.cta-banner .btn-primary { font-size: 1.05rem; padding: 16px 40px; }

/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: var(--white);
}
.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .tooltip { opacity: 1; }

/* ---- FOOTER ---- */
.footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 30px; height: 2px;
    background: var(--yellow);
}
.footer a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}
.footer a:hover { color: var(--yellow); transform: translateX(4px); }
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    padding: 6px 0;
}
.footer-contact i { color: var(--yellow); width: 18px; }
.footer-contact a:hover { transform: none; color: var(--yellow); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.4s ease;
    padding: 0;
}
.footer-socials a:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    padding: 0;
    transform: translateY(-4px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-8px); }
    .contact-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 350px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }
    .nav.open { right: 0; }
    .nav a { color: var(--black) !important; font-size: 1rem; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; }
    .section-title { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-banner h2 { font-size: 2rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .about-stat h3 { font-size: 1.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .slider-arrow { display: none; }
    .slider-controls { bottom: 24px; gap: 10px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 1.8rem; }
    .about-image img { height: 250px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 16px; right: 16px; }
    .whatsapp-float .tooltip { display: none; }
}
