:root {
            --primary-color: #2E8B57; /* Verde Marino */
            --secondary-color: #FFD700; /* Amarillo Dorado */
            --dark-color: #333;
            --light-color: #f4f4f4;
            --white-color: #ffffff;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
        }
        .container {
            width: 90%;
            max-width: 1100px;
            margin: auto;
            overflow: hidden;
            padding: 20px;
        }
        header {
            background: var(--primary-color);
            color: var(--white-color);
            padding: 20px 0;
            position: relative;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            flex-grow: 1;
            display: flex;
            align-items: center;
        }
        .logo-placeholder {
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            margin-right: 20px;
        }
        .logo h1 {
            margin: 0;
            font-size: 2.5em;
            font-weight: bold;
        }
        nav {
            flex-basis: 60%;
            text-align: right;
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            flex-wrap: wrap;
        }
        nav a {
            color: var(--white-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 1em;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        nav a:hover {
            background-color: #1E6A43;
        }
        .cta-button {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--dark-color);
            padding: 15px 30px;
            font-size: 1.2em;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            background: #DAA520;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .hero-section {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white-color);
            padding: 100px 20px;
            text-align: center;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        .hero-section h2, .hero-section p, .hero-section .cta-button {
            position: relative;
            z-index: 1;
        }
        .hero-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .content-section {
            background: var(--white-color);
            padding: 40px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .content-section h2, .content-section h3 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 25px;
        }
        .services-section {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            padding: 40px 0;
            gap: 40px;
        }
        .services-text {
            flex: 1;
            padding: 20px;
        }
        .services-text h2 {
            text-align: left;
        }
        .services-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        .services-list li {
            font-size: 1.1em;
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
        }
        .services-list li::before {
            content: '✔';
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.5em;
            position: absolute;
            left: 0;
            top: -5px;
        }
        .slider-container {
            flex: 1;
            min-width: 300px;
            height: 350px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .slider {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 2.2s ease-in-out;
        }
        .slider img {
            width: 25%;
            height: 100%;
            object-fit: cover;
        }
        .process-section {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 20px;
            text-align: center;
            position: relative;
            color: var(--white-color);
        }
        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        .process-section .container {
            position: relative;
            z-index: 1;
        }
        .features {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            text-align: center;
        }
        .feature-item {
            flex-basis: 30%;
            min-width: 250px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .feature-item h3 {
            margin-top: 0;
            color: var(--white-color);
        }
        .feature-item p {
            color: var(--white-color);
        }
        .pricing-section {
            background: var(--white-color);
            padding: 40px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }
        .pricing-header {
            text-align: left;
            margin-bottom: 20px;
        }
        .pricing-header h2 {
            margin: 0;
            color: var(--primary-color);
        }
        .pricing-text {
            text-align: right;
        }
        .pricing-text p {
            margin: 0 auto;
            max-width: 800px;
        }
        .ecology-section {
            padding: 40px 0;
            text-align: center;
        }
        .ecology-section h2 {
            color: var(--primary-color);
            margin-bottom: 40px;
        }
        .ecology-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            justify-content: center;
            align-items: stretch;
        }
        .ecology-item {
            background: var(--white-color);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .ecology-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .ecology-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 3px solid var(--primary-color);
        }
        .ecology-item .text-content {
            padding: 20px;
            text-align: left;
            flex-grow: 1;
        }
        .ecology-item h3 {
            color: var(--primary-color);
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 1.3em;
        }
        .ecology-item p {
            font-size: 0.95em;
            line-height: 1.5;
        }
        .faqs-section {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }
        .faqs-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }
        .faqs-content-box {
            background: var(--white-color);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
            max-width: 700px;
            width: 90%;
            text-align: center;
            color: var(--dark-color);
        }
        .faqs-content-box h2 {
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        .faqs-content-box p {
            font-size: 1.1em;
            margin-bottom: 0;
        }
        .why-us-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 40px 0;
            gap: 40px;
        }
        .why-us-content {
            flex-basis: 50%;
            min-width: 300px;
            padding-right: 20px;
        }
        .why-us-content h2 {
            font-size: 2.5em;
            text-align: left;
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        .why-us-item {
            margin-bottom: 20px;
        }
        .why-us-item h3 {
            font-size: 1.5em;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        .why-us-item p {
            font-size: 1em;
        }
        .why-us-slider-container {
            flex-basis: 40%;
            min-width: 300px;
            height: 350px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .why-us-slider {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 1.1s ease-in-out;
        }
        .why-us-slider img {
            width: 33.33%;
            height: 100%;
            object-fit: cover;
        }
        .form-container {
            background: var(--white-color);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 20px auto;
        }
        .form-container h2 {
            text-align: center;
            color: var(--primary-color);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .form-button {
            display: block;
            width: 100%;
            padding: 15px;
            background: var(--primary-color);
            color: var(--white-color);
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .form-button:hover {
            background-color: #1E6A43;
        }
        footer {
            background: var(--dark-color);
            color: var(--white-color);
            text-align: center;
            padding: 20px 0;
        }
        .footer-contact {
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 10px;
        }
        .footer-contact p {
            margin: 0;
            font-size: 1.1em;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            .logo {
                margin-bottom: 15px;
            }
            .logo-placeholder {
                margin: 0 auto 10px;
            }
            nav ul {
                justify-content: center;
            }
            .content-section, .hero-section {
                padding: 20px;
            }
            .features {
                flex-direction: column;
            }
            .services-section {
                flex-direction: column;
            }
            .process-section {
                padding: 40px 10px;
            }
            .pricing-header {
                text-align: center;
            }
            .pricing-text {
                text-align: center;
            }
            .ecology-grid {
                grid-template-columns: 1fr;
            }
            .faqs-section {
                min-height: 300px;
                padding: 40px 10px;
            }
            .faqs-content-box {
                padding: 20px;
            }
            .why-us-section {
                flex-direction: column;
            }
            .why-us-content, .why-us-slider-container {
                padding-right: 0;
                width: 100%;
                text-align: center;
            }
            .why-us-content h2 {
                text-align: center;
            }
        }
