
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #ffeef8 0%, #fff0f5 100%);
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(233, 30, 99, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
        }

        /* Container Responsivo */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 1200px) {
            .container {
                padding: 0 4%;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 3%;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 2%;
            }
        }

        /* Sections */
        .section {
            min-height: 100vh;
            padding: 7rem 2rem 5rem;
            scroll-margin-top: 100px;
        }

        @media (max-width: 992px) {
            .section {
                padding: 6rem 1.5rem 4rem;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 5rem 1rem 3rem;
                min-height: auto;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 4rem 1rem 2rem;
            }
        }

        /* Hero Section with Carousel */
        .hero {
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
            padding: 4rem 0;
            text-align: center;
            border-radius: 0 0 50px 50px;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 3rem 0;
                border-radius: 0 0 30px 30px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
        }

        .hero h1 {
            font-size: 3rem;
            color: #ad1457;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
        }

        .hero p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 480px) {
            .hero p {
                font-size: 1rem;
                padding: 0 1rem;
            }
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #ad1457;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #e91e63, #ad1457);
            margin: 1rem auto;
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .section-title::after {
                width: 80px;
                margin: 0.8rem auto;
            }
        }

        /* Carousel */
        .carousel-container {
            position: relative;
            max-width: 800px;
            width: 90%;
            margin: 2.5rem auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .carousel-container {
                width: 95%;
                margin: 2rem auto;
            }
            
            .carousel-slide img {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                width: 100%;
                border-radius: 10px;
            }
            
            .carousel-slide img {
                height: 250px;
            }
            
            .carousel-caption {
                padding: 1rem;
            }
            
            .carousel-caption h3 {
                font-size: 1.1rem;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
            }
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .carousel-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: #e91e63;
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        .carousel-dots {
            text-align: center;
            margin-top: 1rem;
        }

        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #e91e63;
            transform: scale(1.2);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
            justify-items: center;
        }

        @media (max-width: 768px) {
            .services-grid {
                gap: 2rem;
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
            max-width: 350px;
            width: 100%;
        }

        @media (max-width: 480px) {
            .service-card {
                padding: 1.5rem;
            }
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #ad1457;
            margin-bottom: 1rem;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 4rem 0;
            padding: 2rem 0;
        }

        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            
            .about-image {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .about-content {
                gap: 2.5rem;
                margin: 3rem 0;
            }
            
            .about-image img {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .about-content {
                gap: 2rem;
                margin: 2rem 0;
            }
            
            .about-image img {
                height: 280px;
            }
        }

        .about-text {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            justify-items: center;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                gap: 1.2rem;
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin: 1.5rem 0;
            }
            
            .gallery-item img {
                height: 200px;
            }
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            max-width: 350px;
            width: 100%;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(233, 30, 99, 0.8), rgba(173, 20, 87, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            text-align: center;
            padding: 1rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Contact Section */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }

        .contact-icon {
            font-size: 2rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #e91e63, #ad1457);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            margin: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
        }

        @media (max-width: 768px) {
            .cta-button {
                padding: 0.8rem 1.5rem;
            }
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #ad1457 0%, #7b1fa2 100%);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 0 20px;
        }
        .footer-section {
            text-align: center;
            padding: 0 10px;
        }

                /* @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        } */


        .footer-section h3 {
            color: #fce4ec;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 2px;
            background: #f8bbd9;
            bottom: -10px;
            left: 20%;
        }

        .footer-section p,
        .footer-section ul {
            line-height: 1.8;
            font-size: 1rem;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 250px;
        }

        .footer-section ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-section ul li i {
            width: 24px;
            color: #f8bbd9;
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px) scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            color: #f8bbd9;
            font-size: 0.9rem;
            padding-bottom: 20px;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 50px 0 25px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-section {
                margin-bottom: 20px;
            }
            .footer-section h3 {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 40px 0 20px;
            }
            .footer-section h3 {
                font-size: 1.3rem;
            }
            .social-links {
                gap: 10px;
            }
        }

        /* Responsive Navigation */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: #e91e63;
                flex-direction: column;
                justify-content: start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-link {
                padding: 0.8rem 1.2rem;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            
            .menu-toggle {
                font-size: 1.3rem;
            }
            
            .nav-menu {
                padding-top: 1.5rem;
            }
            
            .nav-link {
                padding: 0.6rem 1rem;
                font-size: 1rem;
            }
        }
