
        :root {
            --primary: #006f53;
            --secondary: #5EA008;
        }
        body {
          background-color: #e7e7ef;
        }
        /* utilities */
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: white !important;
            font-weight: 600 !important;
            font-size: 16.6667px;
        }

        .btn-primary:hover {
            background-color: #62bf00;
            border-color: var(--primary);
        }
        .bg-primary {
            background-color: var(--primary) !important;

        }
        .text-primary {
            color: var(--primary) !important;
        }
        .text-secondary {
            color: var(--secondary) !important;
        }

        /* navigation */
        .main-nav {
            padding: 1rem 0;
        }
        /* hero section */
        .hero-title {
            font-family: impact;
         
            letter-spacing: -1px;
            line-height: 1.2;
            font-size: 32px;
            text-wrap: balance;
            max-width: 100%;
            text-align: center;
            margin-inline: auto;
            padding: 0 1rem;
        }
        @media (min-width: 768px) {
            .hero-title {
                font-size: 60.6px;
                letter-spacing: -1px;
                max-width: 30ch;
            }
        }
        .hero-sub-title {
            font-size: 1.25rem;
            font-weight: 500;
            margin-top: 1rem;
            padding: 0 1rem;
        }
        @media (min-width: 768px) {
            .hero-sub-title {
                font-size: 1.5rem;
            }
        }
        .hero {
            padding: 3rem 0 0 0;
            position: relative;
            min-height: 90dvh;
        }
        .hero-image-container {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
          z-index: 0;
        }
        .hero .container {
          position: relative;
          z-index: 1;
        }
        .hero-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        /*  */
        .section-pre-title {
            font-size: 16px;
            color: var(--secondary) !important;
        }
        .section-title {
            font-size: 2.75rem;
            font-family: impact;
            margin-bottom: 1rem;
            color: var(--primary) !important;
            line-height: 1;
         /* letter-spacing: -1px; */
            padding: 0 1rem;
        }
        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            /*  letter-spacing: -1px; */
                line-height: 1.8ch;
                padding: 0;
            }
        }
        .under-strike-list {
            padding: 1rem .5rem;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        @media (min-width: 768px) {
            .under-strike-list {
                padding: .81rem 0;
                font-size: 1rem;
            }
        }
        .under-strike-list:not(:last-child) {
            border-bottom: 1px solid #adc8c8;
        }
        .features-card {
            background-color: white;
            padding: 1.25rem;
            border-radius: 10px;
            height: 100%;
        }
        .features-card-title {
            font-weight: 800;
            text-align: center;
            padding: 1rem .5rem;
            font-size: 1.1rem;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        @media (min-width: 768px) {
            .features-card-title {
                font-size: 1.25rem;
                padding: 1rem;
            }
        }
        /* Mas'Torres Grid */
        .grid-item {
          background-color: var(--primary);
          border-radius: 10px;
          padding: 20px;
          aspect-ratio: 1;
        }
        .grid-item img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          border-radius: 8px;
        }
        /* faq */
        .faq-title {
            font-family: sans-serif;
            font-weight: 1000;
            letter-spacing: -1px;
            line-height: 1.3;
            font-size: 17px;
            background-color: #e7e7ef;
            padding: 0.5rem;
            margin: 0;
        }
        @media (min-width: 768px) {
            .faq-title {
                font-size: 20px;
                letter-spacing: -1px;
                line-height: 1.4ch;
                padding: 0;
            }
        }
        .faq-description {
            padding: 1rem 0.5rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        @media (min-width: 768px) {
            .faq-description {
                font-size: 1rem;
                padding: .4rem;
            }
        }

        /* reemplaza defaults de bootstrap */
         .accordion-item{
          background-color: transparent;
          border: none;
          color: var(--primary);
          padding: 1rem 0;

        }
        .accordion-item:first-child {
          padding: 0 !important;
          padding-bottom: 1rem !important;
        }

        .accordion-button,
        .accordion-button:not(.collapsed) {
            background-color: #e7e7ef !important;
            color: var(--primary) !important;
            box-shadow:none !important;
            padding: 0;
			line-height: 1.5;

        }
        .accordion-button:not(:first-child) {
          padding:1rem 0 !important;
        }
        .accordion-item:not(:last-child) {
            border-bottom: 1px solid #adc8c8 !important;
                        /* padding: 1rem 0; */

        }
		.container-fluid {
            width: 95% !important;
        }
		