hotelesposeidon.com Open in urlscan Pro
91.134.186.37  Public Scan

URL: https://hotelesposeidon.com/
Submission: On May 21 via api from US — Scanned from ES

Form analysis 5 forms found in the DOM

https://hotelesposeidon.com/callme

<form x-data="callme" x-init="
                                    messages = {
                                        &quot;required&quot;      : &quot;El teléfono es obligatorio&quot;,
                                        &quot;truthy&quot;        : &quot;Debe aceptar los términos y condiciones&quot;,
                                    },
                                    fields = {
                                        &quot;phonenumber&quot;     : &quot;Teléfono &quot;,
                                        &quot;terms&quot;      : &quot;Términos&quot;,
                                    },
                                    errorMessages = {
                                        &quot;phonenumber&quot;  : null,
                                        &quot;terms&quot; : null,
                                    }
                                " @submit.prevent="submit" action="https://hotelesposeidon.com/callme">
  <input type="hidden" name="_token" value="bZX7woKKpkuOchutNaouCAmmy542QNoGz8ZezCKF">
  <div id="hot_pod_s8yKynfSeXXt4EpP_wrap" style="display: none" aria-hidden="true">
    <input id="hot_pod_s8yKynfSeXXt4EpP" name="hot_pod_s8yKynfSeXXt4EpP" type="text" value="" autocomplete="nope" tabindex="-1">
    <input name="hot_pod_valid" type="text"
      value="eyJpdiI6InJqUENCcHA3Y1R5SStIWk9iQ0d5aVE9PSIsInZhbHVlIjoiWGJQQ1VVbnR3TU9rTjhmZXdZTFdCQT09IiwibWFjIjoiODIwZTI5YmVkNGMyMWUwMjI3YTliMzU2ZWNhZjZhY2YyZjNkMTViOWEyOTQwNzNjYmU2NGYzYTg0MTc4YWJkYyIsInRhZyI6IiJ9" autocomplete="off" tabindex="-1">
  </div>
  <div x-show="success" class="mt-4 p-4 rounded-md bg-green-50" style="display: none;">
    <div class="flex">
      <div class="flex-shrink-0">
        <!-- Heroicon name: mini/check-circle -->
        <svg class="h-5 w-5 text-green-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
          <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd"></path>
        </svg>
      </div>
      <div class="ml-3">
        <p class="text-sm font-medium text-green-800"> Tu teléfono está a punto de sonar, ¡atento! </p>
      </div>
    </div>
  </div>
  <div x-show="error" class="mt-4 p-4 rounded-md bg-red-50" style="display: none;">
    <div class="flex">
      <div class="flex-shrink-0">
        <!-- Heroicon name: mini/x-circle -->
        <svg class="h-5 w-5 text-red-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
          <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.28 7.22a.75.75 0 00-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 101.06 1.06L10 11.06l1.72 1.72a.75.75 0 101.06-1.06L11.06 10l1.72-1.72a.75.75 0 00-1.06-1.06L10 8.94 8.28 7.22z"
            clip-rule="evenodd"></path>
        </svg>
      </div>
      <div class="ml-3">
        <p class="text-sm font-medium text-red-700"> Ha habido un error. Inténtelo de nuevo más tarde </p>
      </div>
    </div>
  </div>
  <div class="my-6">
    <input x-ref="phonenumber" type="text" class="w-full rounded-lg" name="phonenumber" placeholder="Tu número aquí">
    <span class="text-xs text-red-500" x-show="errorMessages.phonenumber &amp;&amp; !calling" x-text="errorMessages.phonenumber" style="display: none;"></span>
  </div>
  <div class="mb-6">
    <div x-ref="terms" x-data="{
                                            enabled: false,
                                            error: false,
                                            toggle() {
                                                this.enabled = !this.enabled
                                                if (this.enabled) {
                                                    this.error = false
                                                }
                                            }
                                        }" class="flex items-start">
      <div class="flex-shrink-0">
        <input type="hidden" id="terms" name="terms" :value="enabled ? 1 : 0" value="0">
        <button @click.prevent="toggle()"
          class="relative inline-flex flex-shrink-0 h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none focus:shadow-outline focus:ring-blue-200 focus:border-blue-200 bg-gray-200"
          :class="{
                                                    'bg-gray-200': !enabled &amp;&amp; !error,
                                                    'bg-blue-200': enabled &amp;&amp; !error,
                                                    'bg-red-500': error,
                                                }" role="checkbox" tabindex="0" :aria-checked="enabled" aria-checked="false">
          <span class="inline-block h-5 w-5 rounded-full bg-white shadow transform transition ease-in-out duration-200 translate-x-0" :class="{
                                                        'translate-x-0': !enabled,
                                                        'translate-x-5': enabled,
                                                    }" aria-hidden="true">
          </span>
        </button>
      </div>
      <div class="ml-3">
        <p class="text-base leading-6 text-gray-500"> Acepto los <a class="font-medium text-blue-300 underline" href="#">Términos y condiciones</a> y la <a class="font-medium text-blue-300 underline" href="#">Política de Privacidad</a>. </p>
        <span class="text-xs text-red-500" x-show="errorMessages.terms &amp;&amp; !calling" x-text="errorMessages.terms" style="display: none;"></span>
      </div>
    </div>
  </div>
  <button class="inline-flex items-center justify-center uppercase font-bold transition py-2 px-4 bg-blue-900 text-white py-4 mt-6 rounded-lg flex hover:bg-opacity-75 hover:shadow hover:shadow-blue-200" type="submit" id="bt-callme"
    x-bind:disabled="calling">
    <span x-show="! calling">
      <svg class="inline w-6 h-6 fill-white text-current mr-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
        <path d="M0 0h24v24H0V0z" fill="none"></path>
        <path
          d="M19.23 15.26l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98zM13 11h4c.55 0 1-.45 1-1s-.45-1-1-1h-1.59l4.31-4.31c.39-.39.39-1.02 0-1.41s-1.02-.39-1.41 0L14 7.59V6c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z">
        </path>
      </svg> Llámame </span>
    <span x-show="calling" style="display: none">
      <svg class="animate-spin inline w-6 h-6 fill-white text-current mr-4" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" viewBox="0 0 24 24" fill="currentColor">
        <g>
          <path d="M0,0h24v24H0V0z" fill="none"></path>
        </g>
        <g>
          <g>
            <path d="M12,5V2L8,6l4,4V7c3.31,0,6,2.69,6,6c0,2.97-2.17,5.43-5,5.91v2.02c3.95-0.49,7-3.85,7-7.93C20,8.58,16.42,5,12,5z"></path>
            <path d="M6,13c0-1.65,0.67-3.15,1.76-4.24L6.34,7.34C4.9,8.79,4,10.79,4,13c0,4.08,3.05,7.44,7,7.93v-2.02 C8.17,18.43,6,15.97,6,13z"></path>
          </g>
        </g>
      </svg> Llamando </span>
  </button>
</form>

<form>
  <div class="mi-be-chain-select mi-dropdown open-down open-left">
    <div class="mi-be-chain-field mi-dropdown-button "><label class="mi-dropdown-placeholder">Seleccionar</label><span class="mi-ico-arrow-down-dark"></span></div>
    <div class="mi-be-chain-dropdown mi-dropdown-layout">
      <div class="search-wrapper"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" class="search-icon" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
          <path d="M10 18a7.952 7.952 0 0 0 4.897-1.688l4.396 4.396 1.414-1.414-4.396-4.396A7.952 7.952 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8 3.589 8 8 8zm0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6-6-2.691-6-6 2.691-6 6-6z"></path>
        </svg><input class="mi-be mi-be-chain-search" type="text" placeholder="Buscar" value=""></div>
      <ul>
        <li class="is-location" value="51433">&nbsp; Todos los hoteles</li>
        <li class="is-location" value="51434">&nbsp; Benidorm</li>
        <li class="" value="51033">&nbsp;&nbsp;- Poseidon Resort</li>
        <li class="" value="51034">&nbsp;&nbsp;- Poseidon Playa</li>
        <li class="" value="51035">&nbsp;&nbsp;- Hotel La Estación</li>
        <li class="is-location" value="51435">&nbsp; Torrevieja</li>
        <li class="" value="51038">&nbsp;&nbsp;- Playas de Torrevieja</li>
        <li class="is-location" value="51436">&nbsp; Benimaurell</li>
        <li class="" value="51032">&nbsp;&nbsp;- Alahuar</li>
        <li class="is-location" value="51437">&nbsp; La Manga</li>
        <li class="" value="51037">&nbsp;&nbsp;- Poseidon La Manga Hotel &amp; SPA</li>
        <li class="is-location" value="51438">&nbsp; Guardamar del Segura</li>
        <li class="" value="51036">&nbsp;&nbsp;- Playas de Guardamar</li>
      </ul>
    </div>
  </div>
  <div class="mi-be-datepicker-select" data-start-date="" data-end-date="">
    <div class="DateRangePicker DateRangePicker_1">
      <div>
        <div class="DateRangePickerInput DateRangePickerInput_1"><button class="DateRangePickerInput_calendarIcon DateRangePickerInput_calendarIcon_1" type="button"
            aria-label="Interact with the calendar and add the check-in date for your trip."><span class="mi-ico-calendar"></span></button>
          <div class="DateInput DateInput_1"><input class="DateInput_input DateInput_input_1 DateInput_input__readOnly DateInput_input__readOnly_2" aria-label="Entrada" type="text" id="BE.startDate" name="BE.startDate" placeholder="Entrada"
              autocomplete="off" readonly="" aria-describedby="DateInput__screen-reader-message-BE.startDate" value="">
            <p class="DateInput_screenReaderMessage DateInput_screenReaderMessage_1" id="DateInput__screen-reader-message-BE.startDate">Press the down arrow key to interact with the calendar and select a date. Press the question mark key to get the
              keyboard shortcuts for changing dates.</p>
          </div>
          <div class="DateRangePickerInput_arrow DateRangePickerInput_arrow_1" aria-hidden="true" role="presentation"><svg class="DateRangePickerInput_arrow_svg DateRangePickerInput_arrow_svg_1" focusable="false" viewBox="0 0 1000 1000">
              <path d="M694.4 242.4l249.1 249.1c11 11 11 21 0 32L694.4 772.7c-5 5-10 7-16 7s-11-2-16-7c-11-11-11-21 0-32l210.1-210.1H67.1c-13 0-23-10-23-23s10-23 23-23h805.4L662.4 274.5c-21-21.1 11-53.1 32-32.1z"></path>
            </svg></div>
          <div class="DateInput DateInput_1"><input class="DateInput_input DateInput_input_1 DateInput_input__readOnly DateInput_input__readOnly_2" aria-label="Salida" type="text" id="BE.endDate" name="BE.endDate" placeholder="Salida"
              autocomplete="off" readonly="" aria-describedby="DateInput__screen-reader-message-BE.endDate" value="">
            <p class="DateInput_screenReaderMessage DateInput_screenReaderMessage_1" id="DateInput__screen-reader-message-BE.endDate">Press the down arrow key to interact with the calendar and select a date. Press the question mark key to get the
              keyboard shortcuts for changing dates.</p>
          </div>
        </div>
      </div>
    </div>
  </div>
  <div class="mi-be-occupation-select mi-dropdown open-down open-left">
    <div class="mi-be-occupation-field mi-dropdown-button mi-be-multiroom-field"><span class="mi-ico-dropdown"></span><label class="mi-dropdown">1 hab. 2 adultos</label><span class="mi-ico-arrow-down-dark"></span></div>
    <div class="mi-be-occupation-dropdown mi-dropdown-layout">
      <div data-role="occupation" class="BE_djU_ll29 BE_D992SFyr">
        <div class="BE_U9hgNouS BE_z1oOLK2o BE_Hd_t_VrA BE_r_es1fxO" data-role="scrollview">
          <div data-role="view" class="BE_djU_ll29 BE_HI0KmJWe">
            <div class="BE_djU_ll29 BE_WU9soQ5Q BE_nwykNkqx BE_FRZ41O0Q" data-role="view"><span data-role="text" class="BE_pbEjjXqc BE_FXOtn1zV">Habitación 1</span></div>
            <div class="BE_djU_ll29 BE_WU9soQ5Q BE_S7fWb2wD BE_iqMEPBkX BE_FRZ41O0Q" data-role="input-number">
              <div class="BE_djU_ll29 BE_VGWAm1Up" data-role="view"><span class="BE_pbEjjXqc BE_GBo0Zm7s BE_qmapAp7t BE__QVDj5T7" data-role="text"> adultos</span><span class="BE_pbEjjXqc BE_YFSUW4Nv BE_qmapAp7t BE_uqcvju0b BE_AtN59xCY"
                  data-role="text">Desde 11 años</span></div><button data-role="button" class="BE_QparBu5h BE_O3s4oCF6 BE_HV2Rw9hH BE_v76uJJL_ BE_HkzsCXiD"><span data-role="icon" class="BE__eoltq4x BE_hPcmukwY"><svg stroke="currentColor"
                    fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
                    <path fill="none" d="M0 0h24v24H0V0z"></path>
                    <path d="M19 13H5v-2h14v2z"></path>
                  </svg></span></button><span class="BE_pbEjjXqc BE_rEAALsqU BE_l0OLu92Q" data-role="text">2</span><button data-role="button" class="BE_QparBu5h BE_O3s4oCF6 BE_HV2Rw9hH BE_v76uJJL_ BE_HkzsCXiD"><span data-role="icon"
                  class="BE__eoltq4x BE_hPcmukwY"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
                    <path fill="none" d="M0 0h24v24H0V0z"></path>
                    <path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"></path>
                  </svg></span></button>
            </div>
            <div class="BE_djU_ll29 BE_WU9soQ5Q BE_S7fWb2wD BE_iqMEPBkX BE_FRZ41O0Q" data-role="input-number">
              <div class="BE_djU_ll29 BE_VGWAm1Up" data-role="view"><span class="BE_pbEjjXqc BE_GBo0Zm7s BE_qmapAp7t BE__QVDj5T7" data-role="text"> niños</span><span class="BE_pbEjjXqc BE_YFSUW4Nv BE_qmapAp7t BE_uqcvju0b BE_AtN59xCY"
                  data-role="text">Hasta 10 años</span></div><button data-role="button" class="BE_QparBu5h BE_uXRIAKcq BE_O3s4oCF6 BE_HV2Rw9hH BE_v76uJJL_ BE_E9ixsYAn" disabled=""><span data-role="icon" class="BE__eoltq4x BE_hPcmukwY"><svg
                    stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
                    <path fill="none" d="M0 0h24v24H0V0z"></path>
                    <path d="M19 13H5v-2h14v2z"></path>
                  </svg></span></button><span class="BE_pbEjjXqc BE_rEAALsqU BE_l0OLu92Q" data-role="text">0</span><button data-role="button" class="BE_QparBu5h BE_O3s4oCF6 BE_HV2Rw9hH BE_v76uJJL_ BE_HkzsCXiD"><span data-role="icon"
                  class="BE__eoltq4x BE_hPcmukwY"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
                    <path fill="none" d="M0 0h24v24H0V0z"></path>
                    <path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"></path>
                  </svg></span></button>
            </div>
          </div>
        </div>
        <div class="BE_djU_ll29 BE_WU9soQ5Q BE_LIuYcaU7 BE_FRZ41O0Q" data-role="view"><button class="BE_QparBu5h BE_O3s4oCF6 BE_HkzsCXiD BE_w6_C7NOG" data-role="button">Añadir habitación</button></div>
      </div>
    </div>
  </div>
  <div class="mi-be-promo-field"><label><strong>Código Promocional</strong><span class="mi-ico-code"></span><input type="text" placeholder="Código Promocional" aria-label="Código Promocional" value=""></label></div><button type="submit"
    class="mi-be-button mi-be-book-btn ">Reservar</button>
</form>

<form>
  <div class="mi-be-chain-select mi-dropdown open-down open-left">
    <div class="mi-be-chain-field mi-dropdown-button "><label class="mi-dropdown-placeholder">Seleccionar</label><span class="mi-ico-arrow-down-dark"></span></div>
    <div class="mi-be-chain-dropdown mi-dropdown-layout">
      <div class="search-wrapper"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" class="search-icon" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
          <path d="M10 18a7.952 7.952 0 0 0 4.897-1.688l4.396 4.396 1.414-1.414-4.396-4.396A7.952 7.952 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8 3.589 8 8 8zm0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6-6-2.691-6-6 2.691-6 6-6z"></path>
        </svg><input class="mi-be mi-be-chain-search" type="text" placeholder="Buscar" value=""></div>
      <ul>
        <li class="is-location" value="51433">&nbsp; Todos los hoteles</li>
        <li class="is-location" value="51434">&nbsp; Benidorm</li>
        <li class="" value="51033">&nbsp;&nbsp;- Poseidon Resort</li>
        <li class="" value="51034">&nbsp;&nbsp;- Poseidon Playa</li>
        <li class="" value="51035">&nbsp;&nbsp;- Hotel La Estación</li>
        <li class="is-location" value="51435">&nbsp; Torrevieja</li>
        <li class="" value="51038">&nbsp;&nbsp;- Playas de Torrevieja</li>
        <li class="is-location" value="51436">&nbsp; Benimaurell</li>
        <li class="" value="51032">&nbsp;&nbsp;- Alahuar</li>
        <li class="is-location" value="51437">&nbsp; La Manga</li>
        <li class="" value="51037">&nbsp;&nbsp;- Poseidon La Manga Hotel &amp; SPA</li>
        <li class="is-location" value="51438">&nbsp; Guardamar del Segura</li>
        <li class="" value="51036">&nbsp;&nbsp;- Playas de Guardamar</li>
      </ul>
    </div>
  </div>
  <div class="mi-be-datepicker-select" data-start-date="" data-end-date="">
    <div class="DateRangePicker DateRangePicker_1">
      <div>
        <div class="DateRangePickerInput DateRangePickerInput_1"><button class="DateRangePickerInput_calendarIcon DateRangePickerInput_calendarIcon_1" type="button"
            aria-label="Interact with the calendar and add the check-in date for your trip."><span class="mi-ico-calendar"></span></button>
          <div class="DateInput DateInput_1"><input class="DateInput_input DateInput_input_1 DateInput_input__readOnly DateInput_input__readOnly_2" aria-label="Entrada" type="text" id="BE.startDate" name="BE.startDate" placeholder="Entrada"
              autocomplete="off" readonly="" aria-describedby="DateInput__screen-reader-message-BE.startDate" value="">
            <p class="DateInput_screenReaderMessage DateInput_screenReaderMessage_1" id="DateInput__screen-reader-message-BE.startDate">Press the down arrow key to interact with the calendar and select a date. Press the question mark key to get the
              keyboard shortcuts for changing dates.</p>
          </div>
          <div class="DateRangePickerInput_arrow DateRangePickerInput_arrow_1" aria-hidden="true" role="presentation"><svg class="DateRangePickerInput_arrow_svg DateRangePickerInput_arrow_svg_1" focusable="false" viewBox="0 0 1000 1000">
              <path d="M694.4 242.4l249.1 249.1c11 11 11 21 0 32L694.4 772.7c-5 5-10 7-16 7s-11-2-16-7c-11-11-11-21 0-32l210.1-210.1H67.1c-13 0-23-10-23-23s10-23 23-23h805.4L662.4 274.5c-21-21.1 11-53.1 32-32.1z"></path>
            </svg></div>
          <div class="DateInput DateInput_1"><input class="DateInput_input DateInput_input_1 DateInput_input__readOnly DateInput_input__readOnly_2" aria-label="Salida" type="text" id="BE.endDate" name="BE.endDate" placeholder="Salida"
              autocomplete="off" readonly="" aria-describedby="DateInput__screen-reader-message-BE.endDate" value="">
            <p class="DateInput_screenReaderMessage DateInput_screenReaderMessage_1" id="DateInput__screen-reader-message-BE.endDate">Press the down arrow key to interact with the calendar and select a date. Press the question mark key to get the
              keyboard shortcuts for changing dates.</p>
          </div>
        </div>
      </div>
    </div>
  </div>
  <div class="mi-be-occupation-select mi-dropdown open-down open-left">
    <div class="mi-be-occupation-field mi-dropdown-button mi-be-multiroom-field"><span class="mi-ico-dropdown"></span><label class="mi-dropdown">1 hab. 2 adultos</label><span class="mi-ico-arrow-down-dark"></span></div>
    <div class="mi-be-occupation-dropdown mi-dropdown-layout">
      <div data-role="occupation" class="BE_djU_ll29 BE_D992SFyr">
        <div class="BE_U9hgNouS BE_z1oOLK2o BE_Hd_t_VrA BE_r_es1fxO" data-role="scrollview">
          <div data-role="view" class="BE_djU_ll29 BE_HI0KmJWe">
            <div class="BE_djU_ll29 BE_WU9soQ5Q BE_nwykNkqx BE_FRZ41O0Q" data-role="view"><span data-role="text" class="BE_pbEjjXqc BE_FXOtn1zV">Habitación 1</span></div>
            <div class="BE_djU_ll29 BE_WU9soQ5Q BE_S7fWb2wD BE_iqMEPBkX BE_FRZ41O0Q" data-role="input-number">
              <div class="BE_djU_ll29 BE_VGWAm1Up" data-role="view"><span class="BE_pbEjjXqc BE_GBo0Zm7s BE_qmapAp7t BE__QVDj5T7" data-role="text"> adultos</span><span class="BE_pbEjjXqc BE_YFSUW4Nv BE_qmapAp7t BE_uqcvju0b BE_AtN59xCY"
                  data-role="text">Desde 11 años</span></div><button data-role="button" class="BE_QparBu5h BE_O3s4oCF6 BE_HV2Rw9hH BE_v76uJJL_ BE_HkzsCXiD"><span data-role="icon" class="BE__eoltq4x BE_hPcmukwY"><svg stroke="currentColor"
                    fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
                    <path fill="none" d="M0 0h24v24H0V0z"></path>
                    <path d="M19 13H5v-2h14v2z"></path>
                  </svg></span></button><span class="BE_pbEjjXqc BE_rEAALsqU BE_l0OLu92Q" data-role="text">2</span><button data-role="button" class="BE_QparBu5h BE_O3s4oCF6 BE_HV2Rw9hH BE_v76uJJL_ BE_HkzsCXiD"><span data-role="icon"
                  class="BE__eoltq4x BE_hPcmukwY"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
                    <path fill="none" d="M0 0h24v24H0V0z"></path>
                    <path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"></path>
                  </svg></span></button>
            </div>
            <div class="BE_djU_ll29 BE_WU9soQ5Q BE_S7fWb2wD BE_iqMEPBkX BE_FRZ41O0Q" data-role="input-number">
              <div class="BE_djU_ll29 BE_VGWAm1Up" data-role="view"><span class="BE_pbEjjXqc BE_GBo0Zm7s BE_qmapAp7t BE__QVDj5T7" data-role="text"> niños</span><span class="BE_pbEjjXqc BE_YFSUW4Nv BE_qmapAp7t BE_uqcvju0b BE_AtN59xCY"
                  data-role="text">Hasta 10 años</span></div><button data-role="button" class="BE_QparBu5h BE_uXRIAKcq BE_O3s4oCF6 BE_HV2Rw9hH BE_v76uJJL_ BE_E9ixsYAn" disabled=""><span data-role="icon" class="BE__eoltq4x BE_hPcmukwY"><svg
                    stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
                    <path fill="none" d="M0 0h24v24H0V0z"></path>
                    <path d="M19 13H5v-2h14v2z"></path>
                  </svg></span></button><span class="BE_pbEjjXqc BE_rEAALsqU BE_l0OLu92Q" data-role="text">0</span><button data-role="button" class="BE_QparBu5h BE_O3s4oCF6 BE_HV2Rw9hH BE_v76uJJL_ BE_HkzsCXiD"><span data-role="icon"
                  class="BE__eoltq4x BE_hPcmukwY"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
                    <path fill="none" d="M0 0h24v24H0V0z"></path>
                    <path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"></path>
                  </svg></span></button>
            </div>
          </div>
        </div>
        <div class="BE_djU_ll29 BE_WU9soQ5Q BE_LIuYcaU7 BE_FRZ41O0Q" data-role="view"><button class="BE_QparBu5h BE_O3s4oCF6 BE_HkzsCXiD BE_w6_C7NOG" data-role="button">Añadir habitación</button></div>
      </div>
    </div>
  </div>
  <div class="mi-be-promo-field"><label><strong>Código Promocional</strong><span class="mi-ico-code"></span><input type="text" placeholder="Código Promocional" aria-label="Código Promocional" value=""></label></div><button type="submit"
    class="mi-be-button mi-be-book-btn ">Reservar</button>
</form>

POST https://hotelesposeidon.com/subscribe#cta_newsletter

<form method="POST" action="https://hotelesposeidon.com/subscribe#cta_newsletter" class="sm:flex">
  <input type="hidden" name="_token" value="bZX7woKKpkuOchutNaouCAmmy542QNoGz8ZezCKF"> <input type="hidden" name="_method" value="POST">
  <div id="hot_pod_afGsbJvwpXK9KgVg_wrap" style="display: none" aria-hidden="true">
    <input id="hot_pod_afGsbJvwpXK9KgVg" name="hot_pod_afGsbJvwpXK9KgVg" type="text" value="" autocomplete="nope" tabindex="-1">
    <input name="hot_pod_valid" type="text"
      value="eyJpdiI6Ijh2ZGxncXpRR0c3ZHI1eUtoMEllZGc9PSIsInZhbHVlIjoiM2NuZFRhVGV2UitPNlc4UDZ6elRFQT09IiwibWFjIjoiYmExYWUwMGU2YTE0NDEwNzljMjg1ZjVlYTA5MGJlNGU5MDA5YTA2Y2YwNzU2YmY4MmE1NjA0YTI4MWMzN2E3NiIsInRhZyI6IiJ9" autocomplete="off" tabindex="-1">
  </div>
  <label for="email" class="sr-only"> Email </label>
  <div class="sm:flex-1 w-full">
    <input name="email" type="text" id="email" autocomplete="email" required="required"
      class="w-full rounded-md border border-transparent px-5 py-3 placeholder-gray-500 focus:border-white focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-800" placeholder="Introduce tu email" aria-invalid="false"
      aria-describedby="">
  </div>
  <button class="inline-flex items-center justify-center uppercase font-bold transition py-2 px-4 bg-blue-900 text-white rounded-md shadow mt-2 sm:mt-0 sm:ml-3 sm:flex-shrink-0" type="submit"> Suscríbete </button>
</form>

POST https://hotelesposeidon.com/subscribe#cta_newsletter

<form method="POST" action="https://hotelesposeidon.com/subscribe#cta_newsletter" class="sm:flex">
  <input type="hidden" name="_token" value="bZX7woKKpkuOchutNaouCAmmy542QNoGz8ZezCKF"> <input type="hidden" name="_method" value="POST">
  <div id="hot_pod_gjhxPxuHGkY76nbc_wrap" style="display: none" aria-hidden="true">
    <input id="hot_pod_gjhxPxuHGkY76nbc" name="hot_pod_gjhxPxuHGkY76nbc" type="text" value="" autocomplete="nope" tabindex="-1">
    <input name="hot_pod_valid" type="text"
      value="eyJpdiI6IndLNVYwdXdoQ3lHUnUxSmJuRjl6MFE9PSIsInZhbHVlIjoiclp4UmFKK21ZRmJzTUFDM0VqV0dPZz09IiwibWFjIjoiZmNiZWI3ZjgxYzZhODRiYmFiNmJjN2U2ZTgyNjdmYzhjZDE3NmU5ZmM5ZGEwNjFkOThhNGQyMzBjYzA2YTM5ZSIsInRhZyI6IiJ9" autocomplete="off" tabindex="-1">
  </div>
  <label for="email" class="sr-only"> Email </label>
  <div class="sm:flex-1 w-full">
    <input name="email" type="text" id="email" autocomplete="email" required="required"
      class="w-full rounded-md border border-transparent px-5 py-3 placeholder-gray-500 focus:border-white focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-800" placeholder="Introduce tu email" aria-invalid="false"
      aria-describedby="">
  </div>
  <button class="inline-flex items-center justify-center uppercase font-bold transition py-2 px-4 bg-blue-900 text-white rounded-md shadow mt-2 sm:mt-0 sm:ml-3 sm:flex-shrink-0" type="submit"> Suscríbete </button>
</form>

Text Content

 * Llama gratis desde España al 900 37 34 91
 * Quiero que me llamen

 * Instagram
 * Facebook
 * YouTube
 * Twitter

Close panel


¿QUIERES QUE TE LLAMEMOS?

Introduce tu número de teléfono y te llamaremos tan pronto como nos sea posible

Tu teléfono está a punto de sonar, ¡atento!

Ha habido un error. Inténtelo de nuevo más tarde



Acepto los Términos y condiciones y la Política de Privacidad.

Llámame Llamando
Hoteles Poseidon
Open menu
Hoteles Destinos Experiencias Ofertas Eventos Contacto
Español
Español
English
Checkin Express
Hoteles Poseidon
Close menu
Hoteles Destinos Experiencias Ofertas Eventos Contacto
Español
Español
English
Quiero que me llamen Checkin Express

ASEGÚRATE LAS VACACIONES y ¡con un 15% de descuento!


RESERVA CON NUESTRA NUEVA TARIFA VIAJA SEGURO

Seleccionar
 *   Todos los hoteles
 *   Benidorm
 *   - Poseidon Resort
 *   - Poseidon Playa
 *   - Hotel La Estación
 *   Torrevieja
 *   - Playas de Torrevieja
 *   Benimaurell
 *   - Alahuar
 *   La Manga
 *   - Poseidon La Manga Hotel & SPA
 *   Guardamar del Segura
 *   - Playas de Guardamar

Press the down arrow key to interact with the calendar and select a date. Press
the question mark key to get the keyboard shortcuts for changing dates.



Press the down arrow key to interact with the calendar and select a date. Press
the question mark key to get the keyboard shortcuts for changing dates.

1 hab. 2 adultos
Habitación 1
adultosDesde 11 años
2
niñosHasta 10 años
0
Añadir habitación
Código Promocional
Reservar
Seleccionar
 *   Todos los hoteles
 *   Benidorm
 *   - Poseidon Resort
 *   - Poseidon Playa
 *   - Hotel La Estación
 *   Torrevieja
 *   - Playas de Torrevieja
 *   Benimaurell
 *   - Alahuar
 *   La Manga
 *   - Poseidon La Manga Hotel & SPA
 *   Guardamar del Segura
 *   - Playas de Guardamar

Press the down arrow key to interact with the calendar and select a date. Press
the question mark key to get the keyboard shortcuts for changing dates.



Press the down arrow key to interact with the calendar and select a date. Press
the question mark key to get the keyboard shortcuts for changing dates.

1 hab. 2 adultos
Habitación 1
adultosDesde 11 años
2
niñosHasta 10 años
0
Añadir habitación
Código Promocional
Reservar
Precio mínimo garantizado Cancelación gratuita Traslados Gratuitos Solo desde
Estación Renfe* Tarifa Viaja seguro Free WIFI Descuentos especiales

Descubre unas vacaciones inolvidables


UN DESTINO, UNAS VACACIONES ÚNICAS EN HOTELES POSEIDON


3 HOTELES EN BENIDORM




1 HOTEL EN GUARDAMAR DEL SEGURA




1 HOTEL EN BENIMAURELL




1 HOTEL EN LA MANGA DEL MAR MENOR




1 HOTEL EN TORREVIEJA

Ofertas hechas a medida


APROVECHA LAS MEJORES OFERTAS DE HOTELES POSEIDON

Conoce las condiciones


TRASLADOS GRATUITOS HOTELES POSEIDON

Traslados Gratuitos con Hoteles Poseidon bajo disponibilidad, descubre las
condiciones.
Reservar
Oferta Bono Turístico


OFERTA BONO TURÍSTICO

Este año 2024 benefíciate del programa bono viaje de la Comunitat Valenciana con
Hoteles Poseidon.
Reservar
Disfruta del Bono Turístico de la Región de Murcia


BONO TURÍSTICO REGIÓN DE MURCIA

Inscríbete y disfruta de esta oferta única.
Reservar
Seguro de asistencia en viaje incluido


OFERTA +60

Disfruta de nuestra oferta +60 con seguro de asistencia en viaje incluido.
Reservar

Sobre Hoteles Poseidon


HOTELES POSEIDON, 50 AÑOS CREANDO EXPERIENCIAS


DESCUBRE HOTELES POSEIDON

Si has elegido pasar tus vacaciones frente al mar Mediterráneo, hacerlo con
Hoteles Poseidon, es apostar sobre seguro. Llevamos más de 50 años creando
recuerdos de vacaciones inolvidables, mientras crecíamos en Benidorm, Guardamar
del Segura, Torrevieja, el Vall de Laguar o La Manga del Mar Menor.

Por ello, ahora nos puedes encontrar en 5 destinos diferentes del litoral
Mediterráneo, donde disfrutar en pareja, con amigos o en familia, de nuestros
hoteles.

Si quieres conocer un trocito del Mediterráneo y disfrutar de unas magníficas
vacaciones, solo te queda visitarnos. 
Descúbrelos


SUSCRÍBETE A NUESTRA NEWSLETTER

No te pierdas nada de las últimas noticias sobres nuestros hoteles y cada uno de
sus destinos. Las mejores guías para que los conozcas antes de llegar, ofertas
para todas las edades y los mejores eventos en nuestros hoteles.

Email

Suscríbete
Acepto los términos y condiciones de la web

Eventos de Hoteles Poseidon


NUESTROS PRÓXIMOS EVENTOS


90'S DANCE

 * 17/08 al 17/08



Ver Evento

Opiniones de nuestros clientes


¿QUÉ DICEN DE NOSOTROS?

> Aún siendo un hotel más antiguo , se merecen las 5 estrellas, por la
> amabilidad del personal en especial del chico de recepción, y por que las
> vistas de las habitaciones y la ubicación me parece fantástica. Volveré
> siempre que esté por la zona! Gracias
> 
> Alberto Madrid

> Positivo: Yo solo puedo decir cosas buenas! Estuvimos 2 días ya que teníamos
> una boda. Empezando por el personal de recepción que nos hizo el favor de
> recibir un paquete ( el ramo de la novia) 😅 y en cuanto les llego el ramo nos
> avisaron y nos lo guardaron en frío. Son encantadores. Y la habitación y el
> buffet de 10, mucha variedad y todo buenísimo. Si vuelvo tengo claro que
> repito con el hotel y lo recomiendo a todo el mundo.
> 
> Elena


VERANEAR ENTRE DOS MARES


¿QUÉ HACER EN LA MANGA DEL MAR MENOR?

La Manga del Mar Menor es una franja de tierra que separa el Mar Menor, una
laguna de agua salada, del Mar Mediterráneo. Esta ubicación en Murcia es única,
te permite disfrutar de dos tipos de playas en un solo lugar. Las cálidas y
tranquilas aguas del Mar Menor son ideales para nadar, practicar deportes
acuáticos y relajarse.

En cambio, las playas del Mar Mediterráneo ofrecen un ambiente más enérgico y
olas perfectas para surfear. Esto convierte a La Manga en un paraíso para los
amantes de los deportes acuáticos. 

Desde windsurf y vela hasta kayak y paddle surf, aquí encontrarás una amplia
variedad de actividades para disfrutar en el agua. No olvides conocer la rica
vida marina buceando o haciendo snorkel.
Para los amantes del mar



PLAYAS PARADISÍACAS Y UNA RICA GASTRONOMÍA


¿QUÉ HACER EN BENIDORM?

Benidorm, el destino turístico por excelencia que te ofrece una experiencia
inigualable en la Costa Blanca de España. ¿Listo para descubrir por qué este
lugar es tan especial y por qué debes elegirlo para tus próximas vacaciones?
¡Benidorm es el destino perfecto!

Las extensas playas de Levante y Poniente son el lugar ideal para disfrutar del
sol y el mar en un ambiente animado y festivo. Con más de 300 días de sol al
año, podrás disfrutar de un clima templado y agradable en cualquier época del
año. 
Vacaciones en la Costa Blanca




HOTELES POSEIDON, SOMOS REFERENCIA




RECIBE TODAS NUESTRAS NOTICIAS Y OFERTAS

Apúntate a nuestra newsletter y no dejes escapar ninguna oferta 

Email

Suscríbete
Acepto los términos y condiciones de la web


FOOTER

TELÉFONO DE RESERVAS 900 373 491

bookonline@hotelesposeidon.com
Instagram Facebook YouTube Twitter


HOTELES

 * Poseidon Resort
 * Poseidon Playa
 * Hotel La Estación
 * Playas de Guardamar
 * Playas de Torrevieja
 * La Manga Hotel&Spa
 * Hotel Alahuar


SOBRE NOSOTROS

 * Contacto
 * Trabaja con Nosotros
 * Acceso a Profesionales
 * Mapa del sitio


ESPECIALES

 * Ofertas Poseidon
 * Eventos Poseidon
 * Experiencias Poseidon


LEGAL

 * Aviso Legal
 * Política de Privacidad
 * Política de Cookies
 * Política de Calidad
 * Canal de Denuncias



© 2024 Hoteles Poseidon. Todos los derechos reservados.



word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word

mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1


Manage cookie preferences

On our website, we use our own and third-party cookies for analytical purposes
by analyzing web traffic, personalizing content based on your preferences,
offering social media functions, and showing you personalized advertising based
on a profile created from your browsing habits. We may also share analytical or
advertising information with third parties.

By clicking here you can manage your consent and find more information about the
cookies we use.

Settings
Reject Accept

Cookie settings

Here you can set your preferences and choose how you want us and other selected
companies to use your data by installing cookies or using similar technologies.

You can change or withdraw your consent at any time by going to the "Cookie
settings" on our website.

Rejecting the installation of cookies may imply the incorrect functioning of
certain services. For more information about cookies, you can consult our Cookie
Policy.

Strictly necessary cookies

Strictly necessary cookies are those that are essential for the proper use of
the website. In those cookies we do not store any sensitive information.

Marketing and Advertising Cookies

This website uses Google Analytics to collect anonymous information such as the
number of visitors to the site, and the most popular pages.

Keeping this cookie enabled helps us to improve our website.

Reject All Save