        body {
            margin: 0;
            padding: 0;
            background-color: #fff;
        }

        .box {
            position: relative;
            background: url("img/fotanga.png") no-repeat center top fixed;
            background-size: cover;
            display: flex;
            min-height: 100vh;
            width: 100%;
            flex-direction: column;
            align-items: center;
        }

        .box p {
            margin: 0;
        }

        .fondo {
            position: absolute; 
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: #8874; 
            z-index: 1;
        }

        .título-foto {
            position: relative;
            z-index: 2; 
            color: #d1d1d1;
            font-family: sans-serif;
            font-size: 7vh;
            text-align: center;
            padding-top: 18vh;
            font-weight: 300;
            border-bottom: solid 1vh #d1d1d1;
            border-radius: 5%;
        }

        .texto-foto {
            position: relative;
            z-index: 2;
            color: #d1d1d1;
            padding: 20%;
            padding-top: 0%;
            text-align: center;
            font-family: sans-serif;
            font-weight: 400;
            font-size: 5vh;
            padding-bottom: 20%;
        }

        /*Sección de características */
        .features-section {
            display: grid;
            grid-template-columns: 1fr 1fr;            
            align-items: center;            
            padding: 40px 20px;
            background-color: #fff;
            margin: 20px auto;
            max-width: 1000px;
            border-radius: 8px;
            box-shadow: 0 10px 10px #aaa;
        }

        .image-placeholder {
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            aspect-ratio: 1;
            object-fit: cover;
            max-width: 250px;
            max-height: 250px;
            justify-self: center;
        }

        .features-text {
            flex: 1;
        }

        .features-text p {
            font-size: 18px;
            line-height: 1.6;
            text-align: justify;
            font-family: sans-serif;
        }

        /*Sección de rubros*/
        .rubros-section {
            padding: 40px 20px;
            background: linear-gradient(transparent, #007bff)
        }

        .rubros-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 20px;
        }

        .columna {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .columna h2 {
            font-family: sans-serif;
            font-size: 24px;
            margin-bottom: 20px;
            padding-left: 0;
            border-left: solid 4px #007bff;
        }

        .cobertura-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .cobertura-image {
            width: 67px;
            height: 67px;
            background-color: #ddd;
            margin-right: 10px;
            border: solid 2px #888;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            text-align: center;
        }

        .cobertura-name {
            font-size: 16px;
            font-family: sans-serif;
            border-left: solid 3px #3bf731;
            padding-left: 5px;
        }

        /* Sección final*/
        .seccion-3 {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(#007bff, #23255e);
            color: #fff;
        }

        .seccion-3 p {
            font-family: sans-serif;
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .imagenes {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 40px 0 0 0;
            margin: 20px auto;
            max-width: 1200px;
            gap: 20px;
        }

        .imagenes > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
        }

        .texto-final {
            font-family: sans-serif;
        }

        .imagen-final {
            max-width: 100px;
            max-height: 100px;
            border-radius: 100%;
            border: solid 5px #3bf731;
            display: flex;
            justify-content: center;
            align-items: center;
            justify-self: center;
        }

        /*Sección formulario*/
        .formulario {
            background-color: #23255e;
            text-align: center;
            color: #fff;
            border: solid 2px #23255e;
            align-items: center;
        }

        .contenedor {
            width: 80%;
            max-width: 800px;
            background-color: #4536eb;
            margin: 10% auto;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 0 30px #3a3a3a;
            /*border: solid 2px #555;*/
        }

        .input-form {
            width: 100%;
            height: 40px;
            border-radius: 8px;
            border-color: #23252e;
            background-color: #348;
            color: #fff;
            outline: none;
        }

        .input-form::placeholder {
            color: #fff;
        }

        .input-form:focus {
            border-color: #3bf731;
            background-color: #348;
        }

        textarea {
            margin-top: 6px;
            width: 100%;
            resize: none;
            min-height: 200px;
            border-radius: 8px;
            border-color: #23252e;
            background-color: #348;
            font-family: sans-serif;
            color: #fff;
            outline: none;
            }

        textarea::placeholder {
            color: #fff;
        }

        textarea:focus {
            border-color: #3bf731;
            background-color: #348;
        }
        
        .boton {
            margin-top: 6px;
            height: 50px;
            width: 101%;
            border-radius: 8px;
            border-color: #23252e;
            background-color: #348;
            text-align: center;
            color: #fff;
            outline: none;
        }

        .boton:focus {
            border-color: #3bf731;
        }

        /* footer */
        .footer {
            align-items: center;
        }

        .color {
            padding-top: 30px;
            background-color: #181840;
        }

        .linea1 {
            margin-left: 8%;
            margin-right: 8%;
            border-top: solid 3px #777;
            width: relative;
        }

        .datos-contacto {
            height: 80px;
            margin-top: 20px;
            margin-left: 8%;
            margin-right: 8%;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .mail {
            font-family: sans-serif;
            color: #ddd;
            margin: 0;
            padding: 0;
        }

        @media (max-width: 768px) {
            .features-section {
                grid-template-columns: 1fr;
            }

            .image-placeholder {
                margin-bottom: 20px;
            }

            .rubros-container {
                flex-direction: column;
            }

            .columna {
                margin-bottom: 20px;
            }

            .imagenes {
                flex-direction: column;
            }

            .imagenes > div {
                margin-bottom: 20px;
            }

            .contenedor {
                margin: 5% auto;
                padding: 20px;
            }

            .datos-contacto {
                flex-direction: column;
                gap: 10px;
            }
        }