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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1.1rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background-color: #FFD600;
  color: #000000;
}
.btn--primary:hover {
  background-color: rgb(204, 171.2, 0);
  transform: translateY(-2px);
}
.btn--secondary {
  background-color: #ffffff;
  color: #E53935;
  border-color: #E53935;
}
.btn--secondary:hover {
  background-color: #E53935;
  color: #ffffff;
  transform: translateY(-2px);
}

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .nav__container {
    padding: 1rem;
  }
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo h2 {
  color: #E53935;
  font-size: 1.25rem;
  margin: 0;
}
@media (min-width: 768px) {
  .nav__logo h2 {
    font-size: 1.5rem;
  }
}
.nav__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .nav__logo-img {
    width: 50px;
    height: 50px;
  }
}
.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 999;
}
.nav__menu.show {
  max-height: 400px;
}
@media (min-width: 768px) {
  .nav__menu {
    position: static;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    z-index: auto;
  }
}
.nav__list {
  list-style: none;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .nav__list {
    display: flex;
    gap: 2rem;
    padding: 0;
  }
}
.nav__item {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .nav__item {
    margin-bottom: 0;
  }
}
.nav__link {
  font-weight: 500;
  font-size: 1.1rem;
  color: #333333;
  transition: color 0.3s ease;
}
.nav__link:hover {
  color: #E53935;
}
.nav__link--cta {
  background-color: #E53935;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.nav__link--cta:hover {
  background-color: rgb(204.6578947368, 30.3947368421, 26.3421052632);
  color: #ffffff;
}
@media (min-width: 768px) {
  .nav__link {
    font-size: 1rem;
  }
}
.nav__toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}
.nav__toggle-line {
  width: 25px;
  height: 3px;
  background-color: #E53935;
  transition: all 0.3s ease;
}
.nav__toggle-line:nth-child(1) {
  transform-origin: top left;
}
.nav__toggle-line:nth-child(3) {
  transform-origin: bottom left;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.03) 0%, #ffffff 50%, rgba(255, 214, 0, 0.05) 100%);
}
@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
  }
}
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 1rem 3rem;
  }
}
.hero__content {
  text-align: center;
}
@media (min-width: 768px) {
  .hero__content {
    text-align: left;
  }
}
.hero__title {
  color: #E53935;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2.8rem;
  }
}
.hero__intro {
  margin-bottom: 1.5rem;
}
.hero__intro .hero__welcome {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333333;
  text-align: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.15), rgba(229, 57, 53, 0.08));
  border-radius: 8px;
  border-left: 4px solid #E53935;
  margin: 0;
}
.hero__intro .hero__welcome strong {
  color: #E53935;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero__intro .hero__welcome {
    font-size: 1.2rem;
    text-align: left;
  }
}
.hero__details {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero__details {
    gap: 1.2rem;
  }
}
.hero__detail-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem;
  border-radius: 6px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  border-left: 3px solid #FFD600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero__detail-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
.hero__detail-item h3 {
  color: #E53935;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .hero__detail-item h3 {
    font-size: 1.1rem;
  }
}
.hero__detail-item p {
  color: rgb(63.75, 63.75, 63.75);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .hero__detail-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.hero__cta {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}
.hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero__image {
    justify-self: end;
  }
}
.hero__image-photo {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.hero__image-photo:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.hero__image-photo::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(229, 57, 53, 0.1), rgba(255, 214, 0, 0.1));
  border-radius: 15px;
  z-index: -1;
}
@media (min-width: 768px) {
  .hero__image-photo {
    max-width: 500px;
    transform: rotate(-1.5deg);
  }
}

.services {
  padding: 4rem 0;
  background-color: #ffffff;
}
.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.services__title {
  text-align: center;
  color: #E53935;
  margin-bottom: 3rem;
}
.services__grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
  justify-items: center;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .services__grid .service:nth-child(4) {
    grid-column: 1/2;
    grid-row: 2;
  }
  .services__grid .service:nth-child(5) {
    grid-column: 3/4;
    grid-row: 2;
  }
}

.service {
  text-align: center;
  padding: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 249, 250, 0.5) 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(229, 57, 53, 0.2);
}
.service__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #E53935, rgb(182.0657894737, 27.0394736842, 23.4342105263));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
  color: #ffffff;
}
.service__title {
  color: #E53935;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .service__title {
    font-size: 1.5rem;
  }
}
.service__content {
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service__text {
  color: rgb(71.4, 71.4, 71.4);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.service__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .service__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.cta {
  padding: 4rem 0;
  background-color: #E53935;
  color: #ffffff;
  text-align: center;
}
.cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.cta__title {
  color: #ffffff;
  margin-bottom: 1rem;
}
.cta__text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta__button {
  font-size: 1.2rem;
  padding: 1.25rem 3rem;
}

.footer {
  background-color: #333333;
  color: #ffffff;
  padding: 3rem 0 1rem;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer__content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.footer__title {
  color: #FFD600;
  margin-bottom: 1rem;
}
.footer__subtitle {
  color: #FFD600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.footer__text {
  opacity: 0.8;
  line-height: 1.7;
}
.footer__contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer__contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 214, 0, 0.1);
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.footer__contact-item:hover {
  background: rgba(255, 214, 0, 0.15);
}
.footer__contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-grow: 1;
}
.footer__contact-label {
  font-size: 0.9rem;
  color: #FFD600;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__contact-link {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-link:hover {
  color: #FFD600;
  text-decoration: underline;
}
.footer__contact-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}
.footer__item {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.footer__link {
  color: #FFD600;
  text-decoration: underline;
}
.footer__link:hover {
  opacity: 0.8;
}
.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #666666;
  opacity: 0.7;
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
}

/*# sourceMappingURL=style.css.map */
