:root {
  --primary-color: #1b0a3b;
  --header-color: #13052c;
  --btn-secondary-color: #f05d6a;
  --additional-color: #db0a20;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

hr {
  width: 70%;
  margin: 0 auto;
  border: 1px solid var(--primary-color);
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #fcf7ea;
  overflow-x: hidden;
}

main {
  width: 100%;
  margin: 0 auto;
}

header {
  width: 100%;
  height: 70px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--header-margin, 20px);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  color: var(--primary-color);
}

footer .a {
  text-decoration: none;
  color: var(--primary-color);
}

footer a:visited {
  color: var(--primary-color);
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  height: 100%;
}

.logo-inner {
  margin: 0 0 0 20px;
  width: 120px;
  height: 70px;
  background-image: url('/img/icons/brand-logo.png');
  background-size: 73%;
  background-position: center;
  background-position-y: 25%;
  background-repeat: no-repeat;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5px 0;
}

.logo img {
  max-height: 63px;
  height: auto;
  width: auto;
}

.logo-link {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.brand {
  position: relative;
  font-size: 10px;
  font-weight: 800;
  color: white;
  margin-top: 4px;
  white-space: nowrap;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
}

.brand::before,
.brand::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: white;
  vertical-align: middle;
  margin: 0 6px;
}

.desktop-nav {
  display: flex;
  margin-left: 40px;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  margin: 0 25px;
}

.contact-btn a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.desktop-nav a:hover,
.contact-info a:hover {
  text-decoration: underline 2px;
  text-underline-offset: 0.2em;
}

.hero {
  background-color: var(--header-color);
  min-height: 35vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 10px 0;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  width: 50%;
  box-sizing: border-box;
}

.hero h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.hero-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fcf7ea;
  white-space: nowrap;
}

.hero-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #fcf7ea;
}

.cta-button-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.cta-button-1 button {
  padding: 15px 30px;
  background-color: #00a14b;
  color: white;
  border: none;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 7px;
}

.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.cta-button button {
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 7px;
}

.cta-button button:hover {
  background-color: var(--btn-secondary-color);
  color: var(--primary-color);
}

.cta-button button:hover a {
  color: var(--primary-color);
}

.cta-button a {
  text-decoration: none;
  color: white;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}

.info-block {
  width: 55%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px;
  box-sizing: border-box;
}

.info-block.left {
    flex-direction: row;
}

.info-block.right {
    flex-direction: row-reverse;
}

.info-block .text {
    width: 48%;
    box-sizing: border-box;
    padding: 10px 30px;
}

.info-block .image {
    width: 48%;
    box-sizing: border-box;
    text-align: center;
}

.info-block .image img {
    width: auto;
    height: 300px;
    border-radius: 8px;
}

.info-block h3 {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 10px;
    padding-left: 5px;
}

.info-block p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 18px;
}

.second-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.second-section .text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 18px;
    max-width: 600px;
    text-align: center;
    margin-bottom: 20px;
}

.second-section .image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.second-section .button button {
  margin: 10px;
  padding: 15px 30px;
  background-color: var(--primary-color);;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 7px;
}

.second-section .button button:hover {
    background-color: var(--btn-secondary-color);
    color: var(--primary-color);
}

.call-button,
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 15px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.call-button {
  right: 20px;
  background-color: var(--primary-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-button {
  left: 20px;
  background-color: #25D366;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
  height: 22px;
  width: auto;
}

.call-button.show,
.whatsapp-button.show {
  opacity: 1;
  pointer-events: auto;
}

.call-button img {
  height: 22px;
  width: auto;
}

.info-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
  height: 11vh;
  gap: 10px;
  flex-wrap: wrap;
  box-sizing: border-box;
  overflow: hidden;
}

.info-bar > div {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
  max-width: 300px;
}

.info-bar img {
  width: 45px;
  height: 45px;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-bar-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--primary-color);
}

.info-bar-text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.info-bar-text p {
  margin: 2px 0 0;
  font-size: 15px;
  color: #272727;
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  height: 70px;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  background-color: var(--primary-color);
  width: 75%;
  max-width: 300px;
  text-align: right;
  padding: 10px 20px;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav a {
  color: white;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav.show {
  display: flex;
  transform: translateX(0);
}

@media screen and (max-width: 1024px) {
  .info-block .text,
  .info-block .image {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .info-block.right {
    flex-direction: column;
  }

  .info-bar {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 30px;
    height: 13vh;
    padding: 30px 20px;
  }

  .cta-button-1 {
    margin-top: 0;
    padding-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  hr {
    margin-top: 20px;
  }

  .call-button {
    display: none !important;
  }

  .whatsapp-button {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .info-bar {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .container {
    padding: 0;
  }
}

@media (max-width: 768px) {
  header, footer {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 10px 15px;
  }

  nav {
    display: none;
  }

  hr {
    margin-top: 22px;
  }

  header {
    background-color: var(--header-color);
  }

  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .info-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    height: auto;
  }

  .info-bar > div {
    flex-direction: row;
    align-items: center;
    text-align: center;
    max-width: 50%;
  }

  .info-bar img {
    margin-right: 0;
    width: 40px;
    height: auto;
  }

  .info-bar-text {
    align-items: center;
  }

  .info-bar-text h3 {
    font-size: 14px;
  }

  .info-bar-text p {
    font-size: 12px;
  }

  .desktop-nav {
    flex-direction: column;
    margin-left: 0;
    margin-top: 10px;
  }

  .desktop-nav a {
    margin: 8px 0;
  }

  .hamburger {
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: center;
  }

  .desktop-nav {
    display: none;
  }

  .desktop-nav a {
    margin: 8px 0;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    z-index: 10;
  }

  .mobile-nav.show {
    display: flex;
  }

  .mobile-nav a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  .hero {
    height: 25vh;
    padding: 10px;
  }

  .hero h2 {
    font-size: 24px;
    padding: 0 10px;
  }

  .logo {
    padding: 0;
  }

  .info-bar {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
  }

  .info-bar > div {
    justify-content: center;
  }

  .info-bar-text {
    align-items: center;
  }

  .hero-header {
    padding: 0;
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 0;
  }

  .locations li {
    font-size: 16px;
  }

  .cta-button-1 button {
    font-size: 18px;
    padding: 16px 28px;
  }

  .cta-button button {
    font-size: 16px;
    padding: 12px 24px;
  }

  .info-block {
    flex-direction: column !important;
    width: 90%;
    padding: 20px 10px;
  }

  .info-block .text,
  .info-block .image {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }

  .info-block .image img {
    height: 220px;
  }

  .info-block h3 {
    font-size: 22px;
  }

  .info-block p {
    font-size: 16px;
  }

  .second-section {
    width: 95%;
    padding: 20px;
  }

  .second-section .text {
    font-size: 16px;
    width: 100%;
  }

  .second-section .image img {
    max-width: 150px;
  }

  .second-section .button button {
    font-size: 16px;
    padding: 12px 24px;
    width: 100%;
    max-width: 250px;
  }

  .call-button, .whatsapp-button {
    font-size: 18px;
    padding: 14px 26px;
  }
}

@media screen and (max-width: 767px) {
  .info-bar {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
  }

  .logo {
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
  }

  .logo-inner img {
    width: 200px;
  }

  .logo h3 {
    font-size: 2rem;
  }

  .logo p {
    font-size: 1rem;
    margin-top: -0.5rem;
  }

  .hero {
    padding-top: 3rem;
    position: relative;
    z-index: 1;
    height: 320px;
  }

  .hamburger {
    z-index: 3;
  }

  .hero-header {
    padding: 0;
  }

  .hero-header h3 {
    font-size: 30px;
    white-space: normal;
  }

  .hero-header h2 {
    font-size: 28px;
  }

  .cta-button-1 {
    margin-top: 5px;
  }

  .logo-inner {
    margin: 0;
    width: 200px;
    height: 200px;
  }

  .info-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    height: auto;
  }

  .info-bar > div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 50%;
  }

  .info-bar img {
    width: 40px;
    height: auto;
  }

  .info-bar-text {
    align-items: center;
  }

  .info-bar-text h3 {
    font-size: 14px;
  }

  .info-bar-text p {
    font-size: 12px;
  }

  .info-blocks {
    padding: 20px;
  }

  .call-button, .whatsapp-button{
    padding: 10px 22px;
    font-size: 16px;
  }

  .brand::before,
  .brand::after {
    width: 10px;
  }
}

@media screen and (max-width: 425px) {
  .hero {
    background-color: var(--header-color);
    background-image: none;
  }

  .hero-header {
    margin: 0 8px;
  }

  .hero-header h3{
    font-size: 30px;
    font-weight: 600;
  }

  .hero-header h2 {
    color: #fcf7ea;
    font-size: 26px;
  }

  .hero-content .cta-button-1 button:hover a {
    color: var(--primary-color);
  }
}

@media (max-width: 320px) {
  .hero-header h3{
    font-size: 28px;
    font-weight: 600;
  }

  .hero-header h2 {
    color: #fcf7ea;
    font-size: 22px;
  }
}