.elementor-241 .elementor-element.elementor-element-1931761{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-241 .elementor-element.elementor-element-2d51e5d{--display:flex;--min-height:490px;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-241 .elementor-element.elementor-element-2d51e5d:not(.elementor-motion-effects-element-type-background), .elementor-241 .elementor-element.elementor-element-2d51e5d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#013936;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-241 .elementor-element.elementor-element-035ef1c{margin:0vw 28vw calc(var(--kit-widget-spacing, 0px) + 0vw) 28vw;padding:0vw 0vw 0vw 0vw;text-align:center;}.elementor-241 .elementor-element.elementor-element-035ef1c .elementor-heading-title{font-family:"Alata", Sans-serif;font-size:48px;font-weight:100;color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-241 .elementor-element.elementor-element-75a2b16{margin:0vw 16vw calc(var(--kit-widget-spacing, 0px) + 0vw) 16vw;padding:1vw 15vw 0vw 15vw;text-align:center;font-family:"Darker Grotesque", Sans-serif;font-size:1.4rem;font-weight:400;color:#C7E196;}.elementor-241 .elementor-element.elementor-element-213036c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-241 .elementor-element.elementor-element-268bcaa{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-0866c29 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Darker Grotesque", Sans-serif !important;
  overflow-x: hidden;
}

/* === Títulos === */
h1, h2, h3, h4, h5, h6 {
    font-family: "Alata", Sans-serif;
  
}
/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #013936;
  padding: 1rem 2rem;
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*  Logo image styles */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  margin-left: 1.5vw;
}

.logo-img {
  height: 35px !important;
  width: auto !important;
  object-fit: contain;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 4.5rem;
  list-style: none;
  align-items: center;
margin-left: 18.5vw;
    
}

.nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C7E196;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #C7E196;
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background-color: transparent;
  color: #C7E196;
  border: 2px solid #C7E196;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #C7E196;
  color: #013936;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 225, 150, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #C7E196;
  transition: all 0.3s ease;
  border-radius: 2px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .logo-img {
    height: 30px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #013936;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}
  @media (max-width: 480px) {
  .logo-img {
    height: 28px;
  }
  }
  
 @media (max-width: 375px) {
  .navbar {
    padding: 0.9rem 1rem;
  }

  .logo-img {
    height: 25px;
  }
 }/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-035ef1c */#titulo1
{
    font-weight: 200 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c5b8ece */.about-section {
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 1370px;
  margin: 0 auto;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 240px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  margin-left: 1.4vw;
}

.content-wrapper.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 200;
  color: #013936;
  line-height: 1.2;
  position: sticky;
  top: 100px;
  opacity: 1 !important;
}

.text-column p {
  margin-bottom: 1.4rem;
  text-align: justify;
  font-size: 1.5rem;
  color: #013936;
}

.intro-text {
  font-size: 1.1rem;
}

.text-column strong {
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(1, 57, 54, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
  border: 1px solid rgba(1, 57, 54, 0.1);
}

.stat-card.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(1, 57, 54, 0.15);
  border-color: #013936;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #013936 0%, #025a55 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 300;
  color: #013936;
  margin-bottom: 12px;
  line-height: 1.2;
}

.stat-description {
  font-size: 1.1rem;
  color: #013936;
  line-height: 1.6;
  opacity: 0.85;
}

/* Responsive Design */
/* Added tablet breakpoint for better transition from desktop to mobile */
@media (max-width: 1200px) {
  .content-wrapper {
    gap: 120px;
    margin-left: 2vw;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .text-column p {
    font-size: 1.3rem;
  }
}

/* Improved medium screen layout to handle large gap */
@media (max-width: 968px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-left: 0;
  }

  .section-title {
    position: static;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .text-column p {
    font-size: 1.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
  }
}

/* Enhanced mobile layout for better readability */
@media (max-width: 640px) {
  .about-section {
    padding: 50px 15px;
  }

  .content-wrapper {
    gap: 25px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .text-column p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 1.2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
  }

  .stat-card {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-description {
    font-size: 0.9rem;
  }
}

/* Added extra small screen optimization */
@media (max-width: 480px) {
  .about-section {
    padding: 40px 12px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .text-column p {
    font-size: 0.95rem;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-icon {
    width: 45px;
    height: 45px;
  }

  .stat-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d8ae321 *//* Main Section */
.mvv-section {
  background-color: #013936;
  padding: 80px 20px;
  min-height: 100vh;
}

.mvv-container {
  max-width: 1370px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 270px;
}

/* Left Empty Column */
.mvv-left-column {
  /* Empty column for spacing */
}

/* Right Content Column */
.mvv-right-column {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Top Grid - Mission and Vision */
.mvv-top-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 115px;
}

.mvv-card {
  /* Removed initial opacity 0, elements are visible by default */
}

.mvv-card-title {
  color: #c7e196;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.mvv-card-text {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
}

/* Values Section */
.mvv-values-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvv-values-title {
  color: #c7e196;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mvv-values-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mvv-value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: center;
  /* Removed initial opacity 0 */
}

.mvv-value-number {
  color: #c7e196;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.mvv-value-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.mvv-value-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
}

.mvv-value-text {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

.mvv-highlight {
  color: #c7e196;
  font-weight: 600;
}

/* Animation Classes */
.mvv-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mvv-fade-in.mvv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */

/* Extra Large Laptop (1400px+) */
@media (max-width: 1600px) {
  .mvv-container {
    gap: 180px;
  }

  .mvv-top-grid {
    gap: 90px;
  }
}

/* Large Laptop (1200px - 1400px) */
@media (max-width: 1400px) {
  .mvv-container {
    grid-template-columns: 150px 1fr;
    gap: 120px;
  }

  .mvv-top-grid {
    gap: 70px;
  }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
  .mvv-container {
    grid-template-columns: 100px 1fr;
    gap: 60px;
  }

  .mvv-top-grid {
    gap: 50px;
  }

  .mvv-card-title,
  .mvv-values-title {
    font-size: 1.8rem;
  }

  .mvv-card-text {
    font-size: 1.1rem;
  }

  .mvv-value-text {
    font-size: 1rem;
  }

  .mvv-value-number {
    font-size: 3rem;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .mvv-section {
    padding: 60px 20px;
  }

  .mvv-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mvv-left-column {
    display: none;
  }

  .mvv-right-column {
    gap: 60px;
  }

  .mvv-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mvv-value-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .mvv-value-number {
    font-size: 2.5rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
  .mvv-section {
    padding: 40px 16px;
  }

  .mvv-right-column {
    gap: 40px;
  }

  .mvv-card-title,
  .mvv-values-title {
    font-size: 1.5rem;
  }

  .mvv-card-text,
  .mvv-value-text {
    font-size: 0.95rem;
  }

  .mvv-value-title {
    font-size: 1.1rem;
  }

  .mvv-values-list {
    gap: 30px;
  }
}

/* Mobile Medium (425px - 575px) */
@media (max-width: 575px) {
  .mvv-value-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .mvv-value-number {
    font-size: 2rem;
  }

  .mvv-card-title,
  .mvv-values-title {
    font-size: 1.3rem;
  }
}

/* Mobile Small (320px - 424px) */
@media (max-width: 424px) {
  .mvv-section {
    padding: 30px 12px;
  }

  .mvv-right-column {
    gap: 30px;
  }

  .mvv-card-title,
  .mvv-values-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .mvv-card-text,
  .mvv-value-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .mvv-value-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .mvv-value-number {
    font-size: 1.8rem;
  }

  .mvv-value-title {
    font-size: 1rem;
  }

  .mvv-values-list {
    gap: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1f120ca */.team-section {
    padding: 80px 20px;
    max-width: 1370px;
    margin: 0 auto;
}

.team-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 240px;
    margin-bottom: 80px;
}

.team-left-column {
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
}

.team-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #013936;
    line-height: 1.2;
    margin-left: 0.5vw;
}

.team-right-column {
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px 40px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-card.team-visible {
    opacity: 1;
    transform: translateY(0);
}

.team-image-wrapper {
    width: 85%;
    aspect-ratio: 1;
    border: 3px dashed #013936;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #013936;
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.4;
}

.team-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-icon-linkedin {
    background-color: #C7E196;
    color: #013936;
}

.team-icon-email {
    background-color: #C7E196;
    color: #013936;
}

.team-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(1, 57, 54, 0.2);
}

/* CTA Banner */
.team-cta-banner {
    background-color: #C7E196;
    border-radius: 12px;
    padding: 40px 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-cta-banner.team-visible {
    opacity: 1;
    transform: translateY(0);
}

.team-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.team-cta-text {
    font-size: 1.25rem;
    color: #013936;
    line-height: 1.6;
    flex: 1;
}

.team-cta-button {
    background-color: #ffffff;
    color: #013936;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */

/* Large Laptop */
@media (max-width: 1600px) {
    .team-container {
        gap: 180px;
    }
}

/* Laptop */
@media (max-width: 1400px) {
    .team-container {
        gap: 120px;
    }
    
    .team-section-title {
        font-size: 2.2rem;
    }
}

/* Tablet Large */
@media (max-width: 1199px) {
    .team-container {
        gap: 80px;
    }
    
    .team-section-title {
        font-size: 2rem;
    }
    
    .team-grid {
        gap: 50px 30px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .team-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-left-column {
        justify-content: center;
        text-align: center;
    }
    
    .team-section-title {
        margin-left: 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .team-section {
        padding: 60px 20px;
    }
    
    .team-section-title {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px 20px;
    }
    
    .team-cta-banner {
        padding: 30px 24px;
    }
    
    .team-cta-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .team-cta-text {
        font-size: 1.1rem;
    }
    
    .team-cta-button {
        width: 100%;
    }
}

/* Mobile Medium */
@media (max-width: 575px) {
    .team-section {
        padding: 50px 16px;
    }
    
    .team-section-title {
        font-size: 1.6rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-member-name {
        font-size: 1.15rem;
    }
    
    .team-member-role {
        font-size: 0.95rem;
    }
    
    .team-cta-text {
        font-size: 1rem;
    }
    
    .team-cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* Mobile Small */
@media (max-width: 424px) {
    .team-section {
        padding: 40px 12px;
    }
    
    .team-section-title {
        font-size: 1.4rem;
    }
    
    .team-grid {
        gap: 32px;
    }
    
    .team-cta-banner {
        padding: 24px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-642c8ac *//* Demo Content Styles */
.growvia-demo-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.growvia-demo-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #013936;
}

/* Footer Section */
.growvia-footer-section {
    background-color: #013936;
    color: #ffffff;
    padding: 4rem 2rem 0;
}

.growvia-footer-container {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left Column */
.growvia-footer-left-column {
    opacity: 0;
    text-align: right
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.growvia-footer-left-column.growvia-footer-visible {
    opacity: 1;
    transform: translateX(0);
}

.growvia-footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.growvia-footer-logo-img {
    height: 50px !important;
    width: auto !important;
    display: block !important;
}

.growvia-footer-tagline {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
}

.growvia-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.growvia-footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.growvia-footer-linkedin-icon {
    width: 20px;
    height: 20px;
}

/* Right Column */
.growvia-footer-right-column {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.growvia-footer-right-column.growvia-footer-visible {
    opacity: 1;
    transform: translateX(0);
    text-align: right;
}

.growvia-footer-contact-heading {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.growvia-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.growvia-footer-contact-item {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.growvia-footer-contact-label {
    font-weight: 600;
    color: #ffffff;
}

.growvia-footer-contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.growvia-footer-contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Bottom Section */
.growvia-footer-bottom-section {
    padding: 2rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.growvia-footer-bottom-section.growvia-footer-visible {
    opacity: 1;
    transform: translateY(0);
}

.growvia-footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.growvia-footer-copyright {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.growvia-footer-legal-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.growvia-footer-legal-link {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.growvia-footer-legal-link:hover {
    color: #ffffff;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .growvia-footer-container {
        gap: 3rem;
    }

    .growvia-footer-logo-img {
        height: 45px;
    }
}

/* Mobile Large (768px - 1024px) */
@media (max-width: 768px) {
    .growvia-footer-section {
        padding: 3rem 1.5rem 0;
    }

    .growvia-footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .growvia-footer-left-column,
    .growvia-footer-right-column {
        transform: translateY(30px);
    }

    .growvia-footer-left-column.growvia-footer-visible,
    .growvia-footer-right-column.growvia-footer-visible {
        transform: translateY(0);
    }

    .growvia-footer-logo-img {
        height: 40px;
    }

    .growvia-footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .growvia-footer-legal-nav {
        justify-content: center;
    }
}

/* Mobile Medium (480px - 768px) */
@media (max-width: 480px) {
    .growvia-footer-section {
        padding: 2.5rem 1rem 0;
    }

    .growvia-footer-container {
        gap: 2.5rem;
    }

    .growvia-footer-logo-img {
        height: 35px;
    }

    .growvia-footer-tagline {
        font-size: 0.9rem;
    }

    .growvia-footer-contact-heading {
        font-size: 1.1rem;
    }

    .growvia-footer-contact-item {
        font-size: 0.85rem;
    }

    .growvia-footer-legal-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .growvia-footer-copyright,
    .growvia-footer-legal-link {
        font-size: 0.8rem;
    }
}

/* Mobile Small (< 480px) */
@media (max-width: 375px) {
    .growvia-footer-section {
        padding: 2rem 0.75rem 0;
    }

    .growvia-footer-container {
        gap: 2rem;
    }

    .growvia-footer-logo-img {
        height: 32px;
    }

    .growvia-footer-tagline {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .growvia-footer-contact-heading {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .growvia-footer-contact-item {
        font-size: 0.8rem;
    }

    .growvia-footer-social-link {
        width: 36px;
        height: 36px;
    }

    .growvia-footer-linkedin-icon {
        width: 18px;
        height: 18px;
    }
}/* End custom CSS */