/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Arial Black', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    overflow-x: hidden;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 71, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="brick" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%23000" opacity="0.02"/><rect width="20" height="8" fill="%23ff6b35" opacity="0.03"/><rect y="12" width="20" height="8" fill="%23ff6b35" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23brick)"/></svg>');
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 53, 0.02) 2px,
            rgba(255, 107, 53, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 71, 87, 0.02) 2px,
            rgba(255, 71, 87, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #ff6b35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: #ff6b35;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2rem;
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 0px rgba(255, 107, 53, 0.3),
        6px 6px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transform: rotate(-2deg);
    animation: logoShake 3s ease-in-out infinite;
}

.nav-logo h2::before {
    content: 'POLIANA MX';
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 107, 53, 0.3);
    z-index: -1;
    transform: rotate(1deg);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 71, 87, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.3) 50%, transparent 70%);
    animation: streetPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 53, 0.03) 2px,
            rgba(255, 107, 53, 0.03) 4px
        );
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #e0e0e0;
}

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 15px;
    animation: slideInLeft 1s ease-out;
    background: linear-gradient(45deg, #ff6b35, #ff4757, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        3px 3px 0px #000,
        6px 6px 0px rgba(255, 107, 53, 0.3),
        9px 9px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: slideInLeft 1s ease-out, gradientShift 3s ease-in-out infinite, titleShake 4s ease-in-out infinite;
    position: relative;
    transform: rotate(-1deg);
}

.title-main::before {
    content: 'POLIANA MX';
    position: absolute;
    top: 4px;
    left: 4px;
    color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    transform: rotate(2deg);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.title-main::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    border-radius: 20px;
    z-index: -2;
    animation: graffitiGlow 2s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff6b35;
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 0px rgba(255, 107, 53, 0.3),
        0 0 20px rgba(255, 107, 53, 0.8);
    animation: slideInLeft 1s ease-out 0.2s both, subtitleShake 3s ease-in-out infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transform: rotate(1deg);
}

.title-sub::before {
    content: 'PRÓXIMAMENTE';
    position: absolute;
    top: 1px;
    left: 1px;
    color: rgba(255, 107, 53, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #b0b0b0;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out 0.4s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff4757);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: 2px solid #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff4757, #ff6b35);
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Street Tags */
.street-tags {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.tag {
    position: absolute;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    color: rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-15deg);
    animation: tagFloat 8s ease-in-out infinite;
}

.tag-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.tag-2 {
    top: 25%;
    right: 15%;
    transform: rotate(15deg);
    animation-delay: 2s;
}

.tag-3 {
    bottom: 20%;
    left: 20%;
    transform: rotate(-10deg);
    animation-delay: 4s;
}

/* Floating Cards Animation */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 71, 87, 0.2));
    backdrop-filter: blur(15px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ff6b35;
    border: 2px solid rgba(255, 107, 53, 0.4);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.card-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 71, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: #e0e0e0;
    position: relative;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 71, 87, 0.1));
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transform: rotate(0deg);
}

.feature-card:nth-child(1) {
    transform: rotate(-1deg);
}

.feature-card:nth-child(2) {
    transform: rotate(1deg);
}

.feature-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 107, 53, 0.02) 10px,
            rgba(255, 107, 53, 0.02) 20px
        );
    pointer-events: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.feature-card:hover {
    transform: translateY(-15px) rotate(0deg) !important;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 71, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #e0e0e0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.contact-info p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.contact-item i {
    width: 25px;
    color: #ff6b35;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 71, 87, 0.1));
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    transform: rotate(0.5deg);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 71, 87, 0.1));
    border-radius: 25px;
    z-index: -1;
    transform: rotate(-0.5deg);
}

.contact-form-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 15px,
            rgba(255, 107, 53, 0.02) 15px,
            rgba(255, 107, 53, 0.02) 30px
        );
    border-radius: 20px;
    pointer-events: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2), 0 0 20px rgba(255, 107, 53, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.btn-submit {
    background: linear-gradient(45deg, #ff6b35, #ff4757);
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    margin-top: 15px;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ff6b35;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #ff4757, #ff6b35);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #e0e0e0;
    padding: 80px 0 30px;
    border-top: 2px solid #ff6b35;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 71, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.footer-social {
    display: flex;
    gap: 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 71, 87, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideInDown 0.3s ease;
}

.modal-header i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.modal-body p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes streetPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes logoShake {
    0%, 100% {
        transform: rotate(-2deg);
    }
    25% {
        transform: rotate(-1deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

@keyframes titleShake {
    0%, 100% {
        transform: rotate(-1deg);
    }
    25% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(1deg);
    }
}

@keyframes subtitleShake {
    0%, 100% {
        transform: rotate(1deg);
    }
    50% {
        transform: rotate(-1deg);
    }
}

@keyframes graffitiGlow {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

@keyframes streetPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes tagFloat {
    0%, 100% {
        transform: rotate(-15deg) translateY(0px);
        opacity: 0.3;
    }
    25% {
        transform: rotate(-10deg) translateY(-10px);
        opacity: 0.5;
    }
    50% {
        transform: rotate(-20deg) translateY(-5px);
        opacity: 0.4;
    }
    75% {
        transform: rotate(-12deg) translateY(-15px);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}
