/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --primary-color: #2C3E50;
  --secondary-color: #27AE60;
  --tertiary-color: #D4A574;
  --accent-color: #E67E22;
  --white-color: #F8F9FA;
  --light-gray: #ECF0F1;
  --dark-gray: #34495E;
  --text-color: #2C3E50;
  --text-color-light: #7F8C8D;
  --body-color: #FFFFFF;
  --container-color: #FFFFFF;
  --shadow-color: rgba(44, 62, 80, 0.1);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Montserrat', sans-serif;
  --biggest-font-size: 3.5rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --h4-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (max-width: 1150px) {
  :root {
    --biggest-font-size: 2.75rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --h4-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 2rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__description {
  color: var(--text-color-light);
  max-width: 600px;
  margin: 0 auto;
}

.main {
  overflow: hidden;
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.button:hover {
  background-color: #229954;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

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

.button--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  flex-shrink: 0;
}

.nav__logo img {
  width: 2rem;
  height: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 1rem;
}

.nav__list {
  display: flex;
  flex-direction: row;
  column-gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: color 0.3s ease;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--secondary-color);
  background-color: rgba(39, 174, 96, 0.1);
}

.nav__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Esconder elementos do menu hambúrguer */
.nav__toggle,
.nav__close {
  display: none !important;
}

/* Garantir que o main tenha padding-top para compensar o header fixo */
.main {
  padding-top: var(--header-height);
}

/* Responsividade para telas menores */
@media screen and (max-width: 768px) {
  .nav {
    padding: 0 0.5rem;
  }
  
  .nav__list {
    column-gap: 1rem;
  }
  
  .nav__link {
    font-size: var(--small-font-size);
    padding: 0.25rem 0.5rem;
  }
  
  .nav__actions .button {
    padding: 0.5rem 1rem;
    font-size: var(--small-font-size);
  }
}

@media screen and (max-width: 480px) {
  .nav {
    padding: 0 0.25rem;
  }
  
  .nav__list {
    column-gap: 0.5rem;
  }
  
  .nav__link {
    font-size: var(--smaller-font-size);
    padding: 0.25rem;
  }
  
  .nav__actions .button {
    padding: 0.4rem 0.8rem;
    font-size: var(--smaller-font-size);
  }
}
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  color: var(--text-color);
}

.nav__logo-img {
  width: 120px;
  height: auto;
  border-radius: 0.25rem;
}

.nav__toggle,
.nav__close {
  display: flex;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/*=============== NAVIGATION - MENU HORIZONTAL SIMPLES ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__log}

/*=============== NAVIGATION - MENU HORIZONTAL SIMPLES ===============*/(--white-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav__close:hover {
    background-color: var(--secondary-color);
    transform: rotate(90deg);
  }
}

.nav__list {
  display: flex;
  flex-direction: row;
  column-gap: 2.5rem;
}

@media screen and (max-width: 1150px) {
  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
    margin-top: 2rem;
  }
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}

.nav__link:hover,
.active-link {
  color: var(--secondary-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

/* Show menu - Removido para corrigir conflito */

/* Add blur to header */
.blur-header::after {
  content: '';
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: rgba(248, 249, 250, 0.3);
  backdrop-filter: blur(25px);
  top: 0;
  left: 0;
  z-index: -1;
}

/*=============== HOME ===============*/
.home {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pedreira-operacao-aerea-impactante.jpg") center/cover;
  opacity: 0.2;
  z-index: -1;
}

.home__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;
}

.home__data {
  color: var(--white-color);
}

.home__title {
  font-size: var(--biggest-font-size);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.home__title-accent {
  color: var(--secondary-color);
}

.home__description {
  font-size: var(--h4-font-size);
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.home__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home__images {
  position: relative;
}

.home__img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.home__img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.home__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.home__scroll-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.home__scroll-button:hover {
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/*=============== ABOUT ===============*/
.about__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;
}

.about__description {
  font-size: var(--h4-font-size);
  color: var(--text-color-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about__features {
  display: grid;
  gap: 1.5rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.about__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 0.75rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about__feature-title {
  font-size: var(--h4-font-size);
  margin-bottom: 0.5rem;
}

.about__feature-description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.about__images {
  position: relative;
}

.about__img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow-color);
}

.about__img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/*=============== TECHNOLOGY ===============*/
.technology {
  background-color: var(--light-gray);
}

.technology__container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.technology__card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.technology__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.technology__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--secondary-color), #229954);
  color: var(--white-color);
  border-radius: 1rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.technology__card-title {
  font-size: var(--h4-font-size);
  margin-bottom: 1rem;
}

.technology__card-description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/*=============== PRODUCTS ===============*/
.products__container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product__card {
  background-color: var(--white-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.product__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.product__card-img {
  position: relative;
  overflow: hidden;
}

.product__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  opacity: 1 !important; /* Garantir que as imagens sejam visíveis */
}

.product__card:hover .product__img {
  transform: scale(1.1);
}

.product__card-data {
  padding: 1.5rem;
}

.product__card-title {
  font-size: var(--h4-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.product__card-subtitle {
  font-size: var(--small-font-size);
  color: var(--secondary-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

.product__card-description {
  color: var(--text-color-light);
  line-height: 1.6;
}

.products__cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 1rem;
}

.products__cta-text {
  font-size: var(--h4-font-size);
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

/*=============== SUSTAINABILITY ===============*/
.sustainability {
  background-color: var(--light-gray);
}

.sustainability__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;
}

.sustainability__description {
  font-size: var(--h4-font-size);
  color: var(--text-color-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.sustainability__features {
  display: grid;
  gap: 1.5rem;
}

.sustainability__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.sustainability__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.sustainability__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 0.75rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sustainability__feature-title {
  font-size: var(--h4-font-size);
  margin-bottom: 0.5rem;
}

.sustainability__feature-description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.sustainability__images {
  position: relative;
}

.sustainability__img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow-color);
}

.sustainability__img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/*=============== CONTACT ===============*/
.contact__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact__info {
  display: grid;
  gap: 1.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.contact__info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.contact__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 0.75rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact__info-title {
  font-size: var(--h4-font-size);
  margin-bottom: 0.5rem;
}

.contact__info-description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

/*=============== FORM ===============*/
.contact__form {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 0.5rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
  background-color: var(--white-color);
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__button {
  width: 100%;
  justify-content: center;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding-top: 3rem;
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.footer__logo-img {
  width: 120px;
  height: auto;
  border-radius: 0.25rem;
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer__title {
  font-size: var(--h4-font-size);
  margin-bottom: 1rem;
}

.footer__links {
  display: grid;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--secondary-color);
}

.footer__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--small-font-size);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: inline-flex;
  padding: 6px;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  backdrop-filter: blur(24px);
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s;
}

.scrollup:hover {
  transform: translateY(-0.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .nav__menu {
    margin-left: auto;
  }

  .home__container {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .home__data {
    padding-top: 3rem;
  }

  .home__title {
    margin-bottom: 2rem;
  }

  .home__description {
    margin-bottom: 3rem;
  }

  .about__container,
  .sustainability__container,
  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

/* Definições antigas do menu hambúrguer removidas */

@media screen and (max-width: 768px) {
  .container {
    margin-inline: 1rem;
  }

  .home__container,
  .about__container,
  .products__container,
  .sustainability__container,
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home__images {
    order: -1;
  }

  .home__img-main {
    height: 300px;
  }

  .about__img-main,
  .sustainability__img-main {
    height: 300px;
  }

  .technology__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .products__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For small devices */
@media screen and (max-width: 768px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__menu {
    width: 85%;
    padding: 5rem 1.5rem 2rem;
  }

  .nav__link {
    font-size: var(--h4-font-size);
  }

  .home {
    padding-top: calc(var(--header-height) + 1rem);
  }

  .home__title {
    font-size: var(--h1-font-size);
  }

  .home__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .button {
    padding: 0.875rem 1.25rem;
    font-size: var(--small-font-size);
  }

  .nav__logo-img {
    width: 80px;
  }

  .footer__logo-img {
    width: 80px;
  }

  .technology__container,
  .products__container {
    grid-template-columns: 1fr;
  }

  .about__feature,
  .sustainability__feature,
  .contact__info-item {
    flex-direction: column;
    text-align: center;
  }

  .about__feature-icon,
  .sustainability__feature-icon,
  .contact__info-icon {
    align-self: center;
  }

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section__title {
    font-size: var(--h2-font-size);
  }

  .section__subtitle {
    font-size: var(--smaller-font-size);
  }

  .product__card-img {
    height: 180px;
  }

  .product__img {
    height: 180px;
  }

  .home__img-main,
  .about__img-main,
  .sustainability__img-main {
    height: 250px;
  }

  .section {
    padding-block: 4rem 2rem;
  }

  .form__group {
    margin-bottom: 1.5rem;
  }

  .form__input,
  .form__textarea {
    padding: 0.875rem;
    font-size: var(--small-font-size);
  }
}

@media screen and (max-width: 320px) {
  .container {
    margin-inline: 0.5rem;
  }

  .nav__menu {
    width: 90%;
    padding: 4rem 1rem 2rem;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .home__title {
    font-size: 1.75rem;
  }

  .section {
    padding-block: 3rem 1rem;
  }

  .section__title {
    font-size: var(--h3-font-size);
  }

  .button {
    padding: 0.75rem 1rem;
    font-size: var(--smaller-font-size);
  }

  .product__card-img,
  .product__img {
    height: 150px;
  }

  .home__img-main,
  .about__img-main,
  .sustainability__img-main {
    height: 200px;
  }

  .video__player {
    height: 140px;
  }

  .technology__img-main {
    height: 150px;
  }
}



/*=============== Technology Images ===============*/
.technology__images {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.technology__img {
  border-radius: 0.5rem;
  overflow: hidden;
}

.technology__img-main {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.technology__img-main:hover {
  transform: scale(1.05);
}




/*==================== VIDEOS ====================*/
.videos__container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video__item {
    background-color: var(--container-color);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.video__player {
    width: 100%;
    height: 220px;
    border-radius: 0.75rem;
    object-fit: cover;
    margin-bottom: 1rem;
    background-color: var(--black-color);
}

.video__info {
    text-align: center;
}

.video__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    margin-bottom: 0.5rem;
}

.video__description {
    font-size: var(--small-font-size);
    color: var(--text-color);
    line-height: 1.4;
}

/* Responsive adjustments for videos */
@media screen and (max-width: 968px) {
    .videos__container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .video__player {
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .videos__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video__player {
        height: 180px;
    }
    
    .video__item {
        padding: 1.25rem;
    }
}

@media screen and (max-width: 576px) {
    .video__player {
        height: 160px;
    }
    
    .video__item {
        padding: 1rem;
    }
}


