        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            padding-top: 76px;
        }

        h1, h2, h3, .logo-text {
            font-family: 'Dancing Script', cursive;
            color: var(--verde-principal);
        }

        /* Navbar */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--verde-principal);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s;
            padding: 0.5rem 1rem;
        }
        
        .nav-link:hover {
            color: var(--verde-principal);
        }

        /* Hero Section */
        #inicio {
            background-color: var(--rosa-suave);
            padding: 80px 0;
        }

        .hero-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        /* Botones */
        .btn-primary {
            background-color: var(--verde-principal);
            border-color: var(--verde-principal);
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: var(--verde-oscuro);
            border-color: var(--verde-oscuro);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(46,125,50,0.3);
        }

        .btn-outline-success {
            border-color: var(--verde-principal);
            color: var(--verde-principal);
        }
        
        .btn-outline-success:hover {
            background-color: var(--verde-principal);
            border-color: var(--verde-principal);
        }

        /* Cards */
        .card {
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* Galería */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            height: 300px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Mapa */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        /* Formulario */
        .form-control:focus {
            border-color: var(--verde-principal);
            box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.25);
        }

        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 40px 0 20px;
        }

        /* Iconos */
        .contact-icon {
            font-size: 1.8rem;
            color: var(--verde-principal);
            margin-right: 15px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .navbar-brand {
                font-size: 1.4rem;
            }
            
            .gallery-item {
                height: 200px;
            }
        }
