.elementor-852 .elementor-element.elementor-element-6c253f5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-2b59415 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #fff;
            padding-top: 80px;
        }

        .header {
            background-color: #000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 98%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: 70px;
            width: 70px;
        }

        /* Fallback text logo si no hay imagen */
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #2c5aa0;
            display: none;
        }

        .nav-desktop {
            display: flex;
            flex: 1;
            justify-content: flex-end;
        }

        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-desktop li {
            position: relative;
        }

        .nav-desktop a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 0;
            transition: color 0.3s ease;
            display: block;
        }

        .nav-desktop a:hover {
            color: #C8A449;
        }

        /* Estilos para el botón de contacto */
        .contact-button {
            background-color: #C8A449;
            color: white !important;
            padding: 12px 24px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .contact-button:hover {
            background-color: #A3906C !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
        }

        /* Hamburger menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            width: 45px;
            height: 45px;
            justify-content: center;
            align-items: center;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile menu */
        .nav-mobile {
            display: none;
            background-color: #000;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .nav-mobile.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .nav-mobile ul {
            list-style: none;
            padding: 20px 0;
        }

        .nav-mobile li {
            border-bottom: 1px solid #eee;
        }

        .nav-mobile a {
            display: block;
            padding: 15px 30px;
            color: #C8A449;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-mobile a:hover {
            color: #fff;
        }

        .nav-mobile .contact-button {
            background-color: #C8A449;
            color: white !important;
            margin: 10px 30px;
            border-radius: 25px;
            text-align: center;
            font-weight: 600;
            width: auto;
            display: inline-block;
            padding: 12px 24px;
        }

        .nav-mobile .contact-button:hover {
            background-color: #fff !important;
            color: #C8A449 !important;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-desktop {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-mobile {
                display: none;
            }
            
            .nav-mobile.active {
                display: block;
            }

            .logo img {
                margin-left: 20px;
                height: 60px;
                width: 60px;
            }
        .header-container {

            padding: 0 0px;

        }
        }

        /* Content demo */
        .content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            color: #2c5aa0;
            margin-bottom: 20px;
        }

        .content p {
            line-height: 1.6;
            color: #666;
        }/* End custom CSS */