@charset "utf-8";
/* CSS Document */

    body {
      margin: 0;
    }

    .fot-tagline {
      font-size: 14px;
      line-height: 18px;
      margin-top: 20px;
      font-family: 'Montserrat', sans-serif;
      color: #967E5A;
    }

    .foot-container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 50px;
    }

    .foot-top {
      display: flex;
      flex-wrap: wrap;
    }

    .foot-left, .foot-right, .foot-center {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      box-sizing: border-box;
    }

    .foot-left {
      color: white;
    }

    .foot-image-box {
      display: inline-block;
      margin-bottom: 20px;
    }

    .foot-image-box img {
      max-width: 180px;
      height: auto;
    }

    .foot-text-small a {
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;

      color: #967E5A;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .foot-text-small a:hover {
      color: #202C38;
      text-decoration: none;
    }

    .foot-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 15px;
      color: white;
    }

    .foot-right-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .foot-right-row img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
    }

    .foot-bottom {
      text-align: center;
      padding: 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
		line-height: 24px;
    }

    .foot-bottom a {
      font-weight: bold;
      color: #967E5A;
      text-decoration: none;
      margin: 0 10px;
      transition: color 0.3s ease;
    }

    .foot-bottom a:hover {
      color: #202C38;
      text-decoration: none;
    }

    /* Estilos columna central */
    .foot-center {
      display: none;
      vertical-align: top;
    }

    .foot-center-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      color: #333;
    }

    /* MOBILE (< 900px) */
    @media (max-width: 900px) {
		    .foot-left, .foot-right, .foot-center {
 
      padding: 0px;
    
    }
		
		    .foot-image-box img {
      max-width: 120px;
      height: auto;
    }
		
		    .fot-tagline {
      font-size: 12px;
      line-height: 16px;
      margin-top: 20px;
      font-family: 'Montserrat', sans-serif;
      color: #967E5A;
    }

      .foot-top {
        flex-direction: column;
      }

      .foot-left {
        order: 1;
      }

      .foot-center {
        order: 2;
        display: block;
      }

      .foot-right {
        order: 3;
        align-items: flex-start;
      }

      .foot-right-row {
        flex-direction: row-reverse;
        justify-content: flex-start;
        text-align: left;
      }
		    .foot-container {

      padding-left: 25px;
				   padding-right: 25px;
				  padding-top: 50px;
				   padding-bottom: 50px;
    }
    }

    /* DESKTOP (>= 900px) */
    @media (min-width: 901px) {
      .foot-right {
        align-items: flex-end;
      }

      .foot-right-row {
        flex-direction: row;
        justify-content: flex-end;
        text-align: right;
      }

      .foot-center {
        display: block;
      }

    }