/* Amarração Amorosa - Pai Wesley - CSS */

:root {
    --am-black: #0a0a0a;
    --am-black-light: #121212;
    --am-red-dark: #4a0000;
    --am-red: #8b0000;
    --am-red-light: #b22222;
    --am-red-glow: #dc143c;
    --am-gold: #d4af37;
    --am-gold-light: #f4d03f;
    --am-white: #f5f5f5;
    --am-gray: #888;
}

/* Reset */
.amarracao-landing {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    background: var(--am-black);
    color: var(--am-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.amarracao-landing * {
    box-sizing: border-box;
}

/* Scrollbar */
.amarracao-landing::-webkit-scrollbar {
    width: 8px;
}
.amarracao-landing::-webkit-scrollbar-track {
    background: var(--am-black);
}
.amarracao-landing::-webkit-scrollbar-thumb {
    background: var(--am-red);
    border-radius: 4px;
}

/* Navigation */
.am-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0) 100%);
    transition: all 0.4s ease;
}

.am-nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(139, 0, 0, 0.4);
}

.am-nav-logo {
    height: 55px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.am-nav-logo:hover {
    transform: scale(1.05);
}

.am-nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.am-nav-menu a {
    color: var(--am-white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.am-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--am-red-glow), var(--am-gold));
    transition: width 0.3s ease;
}

.am-nav-menu a:hover {
    color: var(--am-red-glow);
}

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

.am-nav-cta {
    background: linear-gradient(135deg, var(--am-red) 0%, var(--am-red-dark) 100%);
    padding: 12px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--am-white);
    border: 1px solid var(--am-red-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.5);
}

.am-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, var(--am-red-light) 0%, var(--am-red) 100%);
    color: var(--am-white);
}

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

.am-menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--am-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.am-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.am-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(74, 0, 0, 0.5) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(178, 34, 34, 0.2) 0%, transparent 50%),
        var(--am-black);
    z-index: -2;
}

/* Animated hearts background */
.am-hero-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.am-heart {
    position: absolute;
    font-size: 20px;
    opacity: 0.15;
    animation: amFloatHeart 20s infinite ease-in-out;
    color: var(--am-red-glow);
}

@keyframes amFloatHeart {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.am-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-top: 100px;
}

.am-hero-text {
    animation: amFadeInUp 1s ease forwards;
}

@keyframes amFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.am-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--am-red) 0%, var(--am-red-dark) 100%);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--am-white);
    margin-bottom: 1.5rem;
    border: 1px solid var(--am-red-light);
}

.am-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--am-white) 0%, var(--am-gold) 50%, var(--am-red-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.am-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--am-gold);
    margin-bottom: 1.5rem;
}

.am-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.am-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.am-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--am-red) 0%, var(--am-red-dark) 100%);
    color: var(--am-white);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--am-red-light);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.6);
}

.am-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.7);
    background: linear-gradient(135deg, var(--am-red-light) 0%, var(--am-red) 100%);
    color: var(--am-white);
}

.am-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--am-gold);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--am-gold);
    transition: all 0.4s ease;
}

.am-btn-secondary:hover {
    background: var(--am-gold);
    color: var(--am-black);
}

.am-hero-image {
    position: relative;
    animation: amFadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.am-hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(139, 0, 0, 0.3);
    border: 2px solid rgba(139, 0, 0, 0.4);
}

.am-hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--am-gold);
    border-radius: 20px;
    opacity: 0.4;
    z-index: -1;
}

/* Scroll Indicator */
.am-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: amBounce 2s infinite;
}

.am-scroll-indicator span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--am-gray);
}

.am-scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--am-red-glow);
}

@keyframes amBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.am-section {
    padding: 120px 5%;
    position: relative;
}

.am-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.am-section-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--am-red-glow);
    margin-bottom: 1rem;
    display: block;
}

.am-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--am-white) 0%, var(--am-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.am-section-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Services Section */
.am-services {
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        var(--am-black-light);
}

.am-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.am-service-card {
    background: linear-gradient(180deg, rgba(74, 0, 0, 0.4) 0%, rgba(18, 18, 18, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(139, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.am-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--am-red-glow), var(--am-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.am-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.5);
    border-color: var(--am-red-glow);
}

.am-service-card:hover::before {
    opacity: 1;
}

.am-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--am-red) 0%, var(--am-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

.am-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--am-gold);
}

.am-service-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* About Section */
.am-about {
    background: 
        radial-gradient(ellipse at 90% 80%, rgba(74, 0, 0, 0.3) 0%, transparent 50%),
        var(--am-black);
}

.am-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.am-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.am-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--am-white);
}

.am-about-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.am-about-highlight {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(74, 0, 0, 0.3) 100%);
    border-left: 4px solid var(--am-gold);
    padding: 1.5rem 2rem;
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
}

.am-about-highlight p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--am-gold);
    margin: 0;
}

.am-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
}

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

.am-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--am-red-glow);
    display: block;
}

.am-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--am-gray);
}

/* Differentials Section */
.am-differentials {
    background: var(--am-black-light);
}

.am-diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.am-diff-card {
    background: linear-gradient(180deg, rgba(74, 0, 0, 0.3) 0%, rgba(18, 18, 18, 0.8) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(139, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.am-diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--am-gold);
}

.am-diff-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--am-gold) 0%, var(--am-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.am-diff-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--am-white);
}

.am-diff-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.am-cta {
    background: 
        linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(74, 0, 0, 0.5) 100%),
        var(--am-black);
    text-align: center;
    padding: 100px 5%;
}

.am-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.am-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--am-white);
}

.am-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Videos Section */
.am-videos {
    background: var(--am-black);
}

.am-videos-content {
    max-width: 1000px;
    margin: 0 auto;
}

.am-video-main {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(139, 0, 0, 0.3);
}

.am-video-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pricing Section */
.am-pricing {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        var(--am-black-light);
}

.am-pricing-card {
    background: linear-gradient(180deg, rgba(74, 0, 0, 0.4) 0%, rgba(18, 18, 18, 0.9) 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 2px solid var(--am-gold);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(139, 0, 0, 0.4);
}

.am-pricing-card::before {
    content: '❤️';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
}

.am-pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--am-gold);
}

.am-pricing-desc {
    font-size: 1rem;
    color: var(--am-gray);
    margin-bottom: 2rem;
}

.am-pricing-price {
    margin-bottom: 2rem;
}

.am-pricing-currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--am-red-glow);
    vertical-align: top;
}

.am-pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--am-white);
}

.am-pricing-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: left;
}

.am-pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.am-pricing-features li::before {
    content: '♥';
    color: var(--am-red-glow);
    font-size: 1.2rem;
}

/* Contact Section */
.am-contact {
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(74, 0, 0, 0.3) 0%, transparent 50%),
        var(--am-black);
}

.am-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.am-contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--am-white);
}

.am-contact-info p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.am-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.am-contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.am-contact-method:hover {
    background: rgba(139, 0, 0, 0.3);
    transform: translateX(10px);
    border-color: var(--am-gold);
}

.am-contact-method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--am-red) 0%, var(--am-red-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.am-contact-method-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--am-white);
}

.am-contact-method h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--am-gold);
    margin: 0 0 0.3rem 0;
}

.am-contact-method span {
    font-size: 1.1rem;
    color: var(--am-white);
}

.am-contact-locations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.am-location-card {
    background: linear-gradient(180deg, rgba(74, 0, 0, 0.3) 0%, rgba(18, 18, 18, 0.8) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.am-location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--am-gold);
}

.am-location-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.am-location-card .cnpj {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--am-gray);
}

/* Footer */
.am-footer {
    background: var(--am-black);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
}

.am-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.am-footer-logo img {
    height: 50px;
    border-radius: 50%;
}

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

.am-footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(139, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.am-footer-social a:hover {
    background: var(--am-red);
    transform: translateY(-5px);
}

.am-footer-social svg {
    width: 24px;
    height: 24px;
    stroke: var(--am-white);
}

.am-footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--am-gray);
}

/* WhatsApp Float */
.am-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: amPulse 2s infinite;
}

.am-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.am-whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: white;
}

@keyframes amPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Menu */
.am-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.am-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.am-mobile-menu ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.am-mobile-menu li {
    margin: 1.5rem 0;
}

.am-mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--am-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.am-mobile-menu a:hover {
    color: var(--am-red-glow);
}

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

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

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

/* Responsive */
@media (max-width: 1200px) {
    .am-hero-title { font-size: 3rem; }
    .am-services-grid { grid-template-columns: repeat(3, 1fr); }
    .am-diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .am-nav-menu { display: none; }
    .am-nav-cta { display: none; }
    .am-menu-toggle { display: flex; }
    
    .am-hero-content { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .am-hero-buttons { justify-content: center; }
    .am-hero-image { order: -1; }
    .am-hero-image img { max-width: 400px; margin: 0 auto; display: block; }
    
    .am-about-content { grid-template-columns: 1fr; text-align: center; }
    .am-about-stats { grid-template-columns: repeat(3, 1fr); }
    
    .am-services-grid { grid-template-columns: repeat(2, 1fr); }
    
    .am-contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .am-section { padding: 80px 5%; }
    
    .am-hero-title { font-size: 2.5rem; }
    .am-hero-subtitle { font-size: 1.4rem; }
    
    .am-section-title { font-size: 2.2rem; }
    
    .am-about-stats { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .am-services-grid { grid-template-columns: 1fr; }
    
    .am-diff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .am-hero-title { font-size: 2rem; }
    .am-hero-buttons { flex-direction: column; width: 100%; }
    .am-btn-primary, .am-btn-secondary { width: 100%; justify-content: center; }
    
    .am-pricing-card { padding: 3rem 1.5rem; }
    .am-pricing-amount { font-size: 4rem; }
    
    .am-whatsapp-float { width: 60px; height: 60px; bottom: 20px; right: 20px; }
    .am-whatsapp-float svg { width: 32px; height: 32px; }
}
