:root {--primary-color: #FF0066;--secondary-color: #14d117;--dark-bg: #0a0a0a;--light-text: #ffffff;--gray-text: #b0b0b0;--gradient: linear-gradient(135deg, #FF0066 0%, #FF4D4D 100%);--card-bg: rgba(255, 255, 255, 0.03);--card-hover-bg: rgba(255, 255, 255, 0.06);}* {margin: 0;padding: 0;box-sizing: border-box;}body {font-family: 'Poppins', sans-serif;background-color: var(--dark-bg);color: var(--light-text);overflow-x: hidden;line-height: 1.6;}::-webkit-scrollbar {width: 10px;}::-webkit-scrollbar-track {background: #1a1a1a;}::-webkit-scrollbar-thumb {background: var(--primary-color);border-radius: 5px;}::-webkit-scrollbar-thumb:hover {background: #ff3380;}@keyframes spin {to {transform: rotate(360deg);}}.navbar {background-color: rgba(10, 10, 10, 0.9);backdrop-filter: blur(20px);position: fixed;width: 100%;top: 0;z-index: 1000;padding: 1rem 0;transition: all 0.3s ease;border-bottom: 1px solid rgba(255, 255, 255, 0.05);}.navbar.scrolled {padding: 0.7rem 0;background-color: rgba(10, 10, 10, 0.98);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);}.navbar-container {max-width: 1200px;margin: 0 auto;padding: 0 1.5rem;display: flex;justify-content: space-between;align-items: center;}.navbar-brand {display: flex;align-items: center;z-index: 1001;}.navbar-brand img {height: 40px;transition: all 0.3s ease;}.navbar.scrolled .navbar-brand img {height: 35px;}.menu-toggle {display: none;background: none;border: none;cursor: pointer;padding: 0;width: 30px;height: 30px;position: relative;z-index: 1001;}.menu-toggle span {display: block;width: 25px;height: 3px;background: white;margin: 5px 0;transition: all 0.3s ease;border-radius: 2px;}.menu-toggle.active span:nth-child(1) {transform: rotate(45deg) translate(5px, 5px);}.menu-toggle.active span:nth-child(2) {opacity: 0;}.menu-toggle.active span:nth-child(3) {transform: rotate(-45deg) translate(7px, -6px);}.navbar-nav {display: flex;align-items: center;list-style: none;gap: 2rem;}.nav-link {color: var(--light-text);font-weight: 500;text-decoration: none;transition: all 0.3s ease;position: relative;padding: 0.5rem 0;}.nav-link:hover {color: var(--primary-color);}.nav-link::after {content: '';position: absolute;bottom: -5px;left: 50%;transform: translateX(-50%);width: 0;height: 3px;background: var(--gradient);transition: width 0.3s ease;border-radius: 2px;}.nav-link:hover::after, .nav-link.active::after {width: 80%;}.nav-link.active {color: var(--primary-color);}.whatsapp-btn {background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);color: white;padding: 0.7rem 1.8rem;border-radius: 50px;text-decoration: none;transition: all 0.3s ease;display: inline-flex;align-items: center;gap: 0.5rem;font-weight: 500;box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);}.whatsapp-btn:hover {transform: translateY(-3px);box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);color: white;}.hero-section {min-height: 100vh;display: flex;align-items: center;position: relative;background-image: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.8)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3');background-size: cover;background-position: center;background-attachment: fixed;overflow: hidden;padding: 0 1.5rem;}.hero-section::before {content: '';position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: radial-gradient(circle at 20% 80%, rgba(255, 0, 102, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 77, 77, 0.2) 0%, transparent 50%);animation: gradientMove 10s ease-in-out infinite;}@keyframes gradientMove {0%, 100% {opacity: 0.5;}50% {opacity: 1;}}.hero-content {position: relative;z-index: 1;text-align: center;max-width: 800px;margin: 0 auto;}.hero-title {font-size: clamp(2rem, 5vw, 4rem);font-weight: 800;margin-bottom: 1.5rem;background: linear-gradient(135deg, #fff 0%, #ff0066 50%, #fff 100%);background-size: 200% auto;-webkit-background-clip: text;-webkit-text-fill-color: transparent;animation: shimmer 3s linear infinite;}@keyframes shimmer {to {background-position: 200% center;}}.hero-subtitle {font-size: clamp(0.9rem, 2vw, 1.3rem);color: var(--gray-text);margin-bottom: 3rem;max-width: 600px;margin-left: auto;margin-right: auto;opacity: 0;animation: fadeInUp 1s ease 0.5s forwards;}.hero-buttons {display: flex;gap: 1.5rem;justify-content: center;flex-wrap: wrap;opacity: 0;animation: fadeInUp 1s ease 0.8s forwards;}.btn-primary-custom, .btn-outline-custom {padding: 1rem 2.5rem;border-radius: 50px;font-weight: 600;text-decoration: none;transition: all 0.3s ease;display: inline-block;position: relative;overflow: hidden;}.btn-primary-custom {background: var(--gradient);color: white;border: none;box-shadow: 0 5px 20px rgba(255, 0, 102, 0.3);}.btn-primary-custom:hover {transform: translateY(-3px);box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);color: white;}.btn-outline-custom {background: transparent;color: var(--primary-color);border: 2px solid var(--primary-color);}.btn-outline-custom:hover {background: var(--gradient);color: white;border-color: transparent;transform: translateY(-3px);box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);}@keyframes fadeInUp {from {opacity: 0;transform: translateY(30px);}to {opacity: 1;transform: translateY(0);}}.section {padding: 4rem 1.5rem;position: relative;}.section-title {font-size: clamp(1.8rem, 4vw, 3rem);font-weight: 700;text-align: center;margin-bottom: 1rem;}.section-subtitle {text-align: center;color: var(--gray-text);font-size: 1.1rem;margin-bottom: 3rem;max-width: 600px;margin-left: auto;margin-right: auto;}.gradient-text {background: var(--gradient);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}.about-section {background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);}.about-content {max-width: 900px;margin: 0 auto;text-align: center;}.about-text {font-size: 1.1rem;color: var(--gray-text);line-height: 1.8;margin-bottom: 2rem;}.services-section {background-color: var(--dark-bg);}.services-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 1.5rem;margin-top: 3rem;max-width: 1200px;margin-left: auto;margin-right: auto;}.service-card {background: var(--card-bg);padding: 2.5rem 1.5rem;border-radius: 25px;text-align: center;transition: all 0.4s ease;position: relative;overflow: hidden;border: 1px solid rgba(255, 255, 255, 0.05);}.service-card:hover {transform: translateY(-15px);box-shadow: 0 30px 60px rgba(255, 0, 102, 0.2);border-color: rgba(255, 0, 102, 0.3);}.service-icon {font-size: 3rem;margin-bottom: 1.5rem;display: inline-block;background: var(--gradient);-webkit-background-clip: text;-webkit-text-fill-color: transparent;transition: transform 0.3s ease;}.service-card:hover .service-icon {transform: scale(1.1) rotate(5deg);}.service-title {font-size: 1.3rem;font-weight: 600;margin-bottom: 1rem;color: white;}.service-description {color: var(--gray-text);line-height: 1.6;font-size: 0.95rem;}.portfolio-section {background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);}.portfolio-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));gap: 1.5rem;margin-top: 3rem;max-width: 1200px;margin-left: auto;margin-right: auto;}.portfolio-item {position: relative;overflow: hidden;border-radius: 20px;height: 350px;background: #1a1a1a;transition: all 0.3s ease;cursor: pointer;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);}.portfolio-item img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.5s ease;}.portfolio-overlay {position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: linear-gradient(135deg, rgba(255, 0, 102, 0.9) 0%, rgba(255, 77, 77, 0.9) 100%);opacity: 0;transition: opacity 0.3s ease;display: flex;flex-direction: column;justify-content: center;align-items: center;color: white;padding: 2rem;}.portfolio-item:hover {transform: translateY(-10px);box-shadow: 0 20px 50px rgba(255, 0, 102, 0.3);}.portfolio-item:hover img {transform: scale(1.2);}.portfolio-item:hover .portfolio-overlay {opacity: 1;}.portfolio-title {font-size: 1.8rem;font-weight: 700;margin-bottom: 0.5rem;}.portfolio-category {font-size: 1rem;opacity: 0.9;}.portfolio2-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));gap: 5px;margin-top: 3rem;max-width: 1200px;margin-left: auto;margin-right: auto;}.portfolio2-item {background: var(--card-bg);border-radius: 15px;overflow: hidden;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);transition: transform 0.3s ease, box-shadow 0.3s ease;cursor: pointer;border: 1px solid rgba(255, 255, 255, 0.05);}.portfolio2-item:hover {transform: scale(1.05);box-shadow: 0 20px 50px rgba(255, 0, 102, 0.3);border-color: rgba(255, 0, 102, 0.3);}.portfolio2-image {height: 100px;background-position: center;background-repeat: no-repeat;background-size: 290px;display: flex;align-items: center;justify-content: center;overflow: hidden;}@media (max-width: 768px) {.portfolio2-grid {grid-template-columns: repeat(2, 1fr);gap: 10px;}.portfolio2-image {height: 100px;background-size: 100%;}}@media (max-width: 480px) {.portfolio2-grid {grid-template-columns: 1fr;gap: 10px;}}@media (min-width: 769px) and (max-width: 1024px) {.portfolio2-grid {grid-template-columns: repeat(2, 1fr);}}@media (min-width: 1025px) {.portfolio2-grid {grid-template-columns: repeat(4, 1fr);}}.works-section {background-color: #111111;padding: 4rem 1.5rem;}.tab-menu {display: flex;justify-content: center;gap: 0.5rem;margin-bottom: 3rem;flex-wrap: wrap;}.tab-button {background: transparent;color: var(--gray-text);border: 2px solid rgba(255, 255, 255, 0.1);padding: 0.8rem 1.5rem;border-radius: 50px;font-weight: 500;cursor: pointer;transition: all 0.3s ease;font-size: 0.9rem;}.tab-button:hover {color: white;border-color: rgba(255, 255, 255, 0.3);}.tab-button.active {background: var(--gradient);color: white;border-color: transparent;box-shadow: 0 5px 20px rgba(255, 0, 102, 0.3);}.tab-content {display: none;animation: fadeIn 0.5s ease;}.tab-content.active {display: block;}@keyframes fadeIn {from {opacity: 0;transform: translateY(20px);}to {opacity: 1;transform: translateY(0);}}.works-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 1.5rem;max-width: 1200px;margin: 0 auto;}.work-item {position: relative;overflow: hidden;border-radius: 15px;height: 250px;cursor: pointer;transition: all 0.3s ease;box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);}.work-item img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.3s ease;}.work-item:hover {transform: translateY(-10px);box-shadow: 0 15px 40px rgba(255, 0, 102, 0.3);}.work-item:hover img {transform: scale(1.1);}.lightbox {display: none;position: fixed;z-index: 9999;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(0, 0, 0, 0.95);cursor: pointer;}.lightbox.active {display: flex;align-items: center;justify-content: center;}.lightbox-content {max-width: 90%;max-height: 90%;animation: zoomIn 0.3s ease;}.lightbox-content img {width: 100%;height: 100%;object-fit: contain;border-radius: 10px;}.lightbox-close {position: absolute;top: 30px;right: 30px;color: white;font-size: 3rem;cursor: pointer;transition: color 0.3s ease;z-index: 10000;}.lightbox-close:hover {color: var(--primary-color);}@keyframes zoomIn {from {transform: scale(0.8);opacity: 0;}to {transform: scale(1);opacity: 1;}}.cta-section {background: linear-gradient(135deg, #FF0066 0%, #FF4D4D 100%);padding: 4rem 1.5rem;text-align: center;position: relative;overflow: hidden;}.cta-section::before, .cta-section::after {content: '';position: absolute;width: 300px;height: 300px;border-radius: 50%;background: rgba(255, 255, 255, 0.1);}.cta-section::before {top: -150px;left: -150px;}.cta-section::after {bottom: -150px;right: -150px;}.cta-content {position: relative;z-index: 1;max-width: 800px;margin: 0 auto;}.cta-title {font-size: clamp(1.5rem, 4vw, 3rem);font-weight: 700;margin-bottom: 1rem;color: white;}.cta-subtitle {font-size: 1.2rem;margin-bottom: 2rem;opacity: 0.95;color: white;}.cta-button {background: white;color: var(--primary-color);padding: 1.2rem 3rem;border-radius: 50px;font-weight: 600;text-decoration: none;display: inline-flex;align-items: center;gap: 0.5rem;transition: all 0.3s ease;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);}.cta-button:hover {transform: translateY(-5px);box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);color: var(--primary-color);}.contact-section {background-color: var(--dark-bg);padding: 4rem 1.5rem;}.contact-container {display: grid;grid-template-columns: 1fr;gap: 3rem;max-width: 1100px;margin: 0 auto;}.contact-info {display: flex;flex-direction: column;gap: 1.5rem;}.contact-item {display: flex;align-items: center;gap: 1.5rem;padding: 1.5rem;background: var(--card-bg);border-radius: 15px;transition: all 0.3s ease;border: 1px solid rgba(255, 255, 255, 0.05);}.contact-item:hover {transform: translateX(10px);background: var(--card-hover-bg);border-color: rgba(255, 0, 102, 0.3);}.contact-icon {width: 60px;height: 60px;background: var(--gradient);border-radius: 50%;display: flex;align-items: center;justify-content: center;color: white;font-size: 1.5rem;flex-shrink: 0;}.contact-details h4 {font-size: 1.2rem;margin-bottom: 0.5rem;color: white;}.contact-details p {color: var(--gray-text);margin: 0;}.contact-details a {color: var(--gray-text);text-decoration: none;transition: color 0.3s ease;}.contact-details a:hover {color: var(--primary-color);}.contact-form {background: var(--card-bg);padding: 2.5rem;border-radius: 25px;border: 1px solid rgba(255, 255, 255, 0.05);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);}.form-group {margin-bottom: 1.5rem;}.form-control {background: rgba(255, 255, 255, 0.05);border: 1px solid rgba(255, 255, 255, 0.1);color: white;padding: 1rem;border-radius: 12px;width: 100%;transition: all 0.3s ease;font-family: 'Poppins', sans-serif;}.form-control:focus {background: rgba(255, 255, 255, 0.08);border-color: var(--primary-color);outline: none;box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.1);}.form-control::placeholder {color: rgba(255, 255, 255, 0.5);}.form-select {cursor: pointer;}textarea.form-control {resize: vertical;min-height: 100px;}.btn-submit {background: var(--gradient);color: white;padding: 1.2rem 3rem;border: none;border-radius: 50px;font-weight: 600;cursor: pointer;transition: all 0.3s ease;width: 100%;font-size: 1.1rem;box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);}.btn-submit:hover {transform: translateY(-3px);box-shadow: 0 15px 40px rgba(255, 0, 102, 0.4);}footer {background-color: #050505;padding: 3rem 1.5rem 2rem;text-align: center;border-top: 1px solid rgba(255, 255, 255, 0.05);}.footer-content {max-width: 900px;margin: 0 auto;}.footer-logo {height: 45px;margin-bottom: 2rem;opacity: 0.9;transition: opacity 0.3s ease;}.footer-logo:hover {opacity: 1;}.footer-social {display: flex;justify-content: center;gap: 1.5rem;margin-bottom: 2.5rem;}.social-link {width: 45px;height: 45px;background: rgba(255, 255, 255, 0.05);border-radius: 50%;display: flex;align-items: center;justify-content: center;color: white;text-decoration: none;transition: all 0.3s ease;border: 1px solid rgba(255, 255, 255, 0.1);}.social-link:hover {background: var(--gradient);transform: translateY(-5px);border-color: transparent;box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);}.footer-links {display: flex;justify-content: center;gap: 1.5rem;margin-bottom: 2rem;flex-wrap: wrap;}.footer-links a {color: var(--gray-text);text-decoration: none;transition: color 0.3s ease;padding: 0.5rem;font-size: 0.9rem;}.footer-links a:hover {color: var(--primary-color);}.copyright {color: var(--gray-text);font-size: 0.85rem;padding-top: 2rem;border-top: 1px solid rgba(255, 255, 255, 0.05);}.menu-overlay {display: none;position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.7);z-index: 999;}.menu-overlay.active {display: block;}@media (max-width: 768px) {.menu-toggle {display: block;}.navbar-nav {position: fixed;top: 0;right: -100%;width: 80%;max-width: 300px;height: 100vh;background: rgba(10, 10, 10, 0.98);flex-direction: column;justify-content: flex-start;align-items: flex-start;padding: 80px 30px 30px;transition: right 0.3s ease;box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);}.navbar-nav.active {right: 0;}.nav-link {width: 100%;padding: 1rem 0;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}.whatsapp-btn {margin-top: 2rem;width: 100%;justify-content: center;}.hero-section {background-attachment: scroll;min-height: 100vh;padding: 0 1rem;}.hero-buttons {flex-direction: column;align-items: center;gap: 1rem;}.btn-primary-custom, .btn-outline-custom {width: 100%;max-width: 250px;}.section {padding: 3rem 1rem;}.services-grid {grid-template-columns: 1fr;gap: 1rem;}.portfolio-grid {grid-template-columns: 1fr;}.portfolio-item {height: 280px;}.works-grid {grid-template-columns: 1fr;}.work-item {height: 200px;}.tab-menu {gap: 0.3rem;}.tab-button {padding: 0.6rem 1.2rem;font-size: 0.85rem;}.contact-container {grid-template-columns: 1fr;}.contact-form {padding: 2rem;}.contact-item {flex-direction: column;text-align: center;gap: 1rem;}.footer-social {gap: 1rem;}.social-link {width: 40px;height: 40px;}}@media (min-width: 769px) and (max-width: 1024px) {.services-grid {grid-template-columns: repeat(2, 1fr);}.portfolio-grid {grid-template-columns: repeat(2, 1fr);}.works-grid {grid-template-columns: repeat(2, 1fr);}}@media (min-width: 1025px) {.section {padding: 5rem 2rem;}.services-grid {grid-template-columns: repeat(4, 1fr);}.portfolio-grid {grid-template-columns: repeat(3, 1fr);}.works-grid {grid-template-columns: repeat(3, 1fr);}.contact-container {grid-template-columns: 1fr 1fr;}}