:root {
  --primary-dark: #081040;
  --primary: #364a73;
  --primary-light: #54678c;
  --white: #ffffff;
  --light-gray: rgba(255, 255, 255, 0.7);
  --border-light: rgba(255, 255, 255, 0.12);
  --primary-dark: #081040;
  --primary: #364a73;
  --primary-light: #54678c;
  --accent: rgba(255, 255, 255, 0.9);
  --text-light: rgba(255, 255, 255, 0.7);
  --border-light: rgba(255, 255, 255, 0.12);
  --primary-dark: #081040;
  --primary-light: #262a40;
  --accent-blue: #54678c;
  --accent-purple: #3a4a6a;
  --text-primary: #f0f6fc;
  --text-secondary: #a5b1c2;
  --border-color: rgba(84, 103, 140, 0.2);
  --color-darkest: #081040;
  --color-dark: #151826;
  --color-medium-dark: #262a40;
  --color-medium: #364a73;
  --color-light: #54678c;
  --text-primary: #f0f6fc;
  --text-secondary: #a5b1c2;
  --border-color: rgba(84, 103, 140, 0.3);
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
/* === GLOBAL RESPONSIVE ADJUSTMENTS === */
@media screen and (max-width: 1024px) {
  html {
    font-size: 95%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 90%;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 85%;
  }
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #364a73;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 30%;
}
body {
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*Navbar start */
nav {
  display: flex;
  box-shadow: 2px 5px 5px #333;
  background: #03588c;
  animation: gradient 10s ease infinite;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.logo-container {
  flex: 1 1 auto;
  margin: 40px;
}
.logo-container span {
  font-size: 70px;
  font-family: "Bruno Ace", sans-serif;
  font-weight: 600;
  text-shadow: 3px 6px 6px #333;
  color: lightgray;
}
.nav-container {
  flex: 1 1 auto;
  margin: 40px;
}
.nav-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
.nav-container li {
  margin: 30px;
}
.nav-container li span {
  margin-right: 10px;
}
.nav-container a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: "Iceland", sans-serif;
  font-size: 30px;
  transition: opacity 0.3s;
}
.nav-item {
  transition: opacity 0.3s;
  position: relative;
}
.nav-item:hover {
  opacity: 0.8;
}
.nav-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s;
}
.nav-item:hover::after {
  width: 100%;
}
.hamburguer-menu {
  display: none;
  cursor: pointer;
  padding: 15px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 100;
  background: transparent;
  border: none;
}
.hamburguer-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
/*media query for tablets */
@media screen and (max-width: 1024px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  .logo-container {
    margin: 20px;
  }
  .logo-container span {
    font-size: 50px;
  }
  .nav-container {
    width: 100%;
    margin: 0px;
  }
  .nav-container ul {
    justify-content: space-around;
    padding: 0 10px 20px 10px;
  }
  .nav-container li {
    margin: 15px;
  }
  .nav-container a {
    font-size: 25px;
  }
}
/* media query for mobile devices */
@media screen and (max-width: 767px) {
  .hamburguer-menu {
    display: block;
  }
  .hamburguer-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  .hamburguer-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburguer-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }
  .logo-container {
    margin: 20px 0;
    text-align: center;
    width: 100%;
  }
  .logo-container span {
    font-size: 40px;
  }
  .nav-container {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    margin: 0;
    width: 100%;
    z-index: 100;
  }
  .nav-container.active {
    height: auto;
  }
  .nav-container ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .nav-container li {
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav-container a {
    font-size: 22px;
    display: block;
    width: 100%;
  }
  .nav-item::after {
    display: none;
  }
}

/* media query for smaller devices */

@media screen and (max-width: 480px) {
  .logo-container span {
    font-size: 30px;
  }
  .hamburguer-menu {
    top: 15px;
    right: 15px;
  }
}
/*Navbar end */

/* Header Start */
.header-container {
  width: 100%;
  height: 500px;
  background: linear-gradient(45deg, #151826, #023859, #0455bf, #0487d9);
  background-size: 300% 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  animation: gradient 10s ease infinite;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 125px;
}
.header-container > h2 {
  font-family: "Bruno Ace", sans-serif;
  font-size: 4.3rem;
  text-shadow: 3px 5px 5px #000;
}
.header-container > span {
  font-family: "Bruno Ace", sans-serif;
  font-size: 1.5rem;
  text-shadow: 3px 5px 5px #000;
}
/* === HEADER RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .header-container {
    height: 400px;
    margin-bottom: 100px;
  }

  .header-container > h2 {
    font-size: 3.8rem;
    padding: 0 20px;
    text-align: center;
  }

  .header-container > span {
    font-size: 1.3rem;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    height: 350px;
    margin-bottom: 80px;
  }

  .header-container > h2 {
    font-size: 3.2rem;
  }

  .header-container > span {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .header-container {
    height: 300px;
    margin-bottom: 60px;
  }

  .header-container > h2 {
    font-size: 2.5rem;
  }

  .header-container > span {
    font-size: 1rem;
  }
}

/*hero Start */

.container-hero {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #03588c;
  padding: 40px;
  border-radius: 25px;
  width: 100%;
  box-sizing: border-box;
}
.hero-terminal-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.hero-text {
  margin-bottom: 3rem;
  font-family: "Bruno Ace", sans-serif;
}
.brand {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.brand-icon {
  margin-right: 0.5rem;
  color: #fff;
}
.brand-name {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  color: #fff;
}

.brand-name span {
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background-color: #fff;
  color: #081040;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  background-color: #f8f8f8;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}
.hero-terminal {
  position: relative;
  z-index: 1;
  background-color: rgba(8, 16, 64, 0.5);
  padding: 1.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.terminal-shadow {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 100%;
  height: 100%;
  background-color: rgba(84, 103, 140, 0.3);
  border-radius: 0.75rem;
  z-index: -1;
}
.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.terminal-dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red {
  background-color: #ff6b6b;
}

.dot-yellow {
  background-color: #ffd93d;
}

.dot-green {
  background-color: #6bff8b;
}
.terminal-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.terminal-content {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.terminal-line {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.terminal-icon {
  margin-right: 0.5rem;
  color: #54678c;
}
.terminal-succes {
  color: #6bff8b;
  margin-top: 1rem;
}
.decoration-1 {
  top: 25%;
  right: 25%;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.05);
}
.decoration-2 {
  bottom: 33%;
  left: 33%;
  width: 60px;
  height: 60px;
  background-color: rgba(84, 103, 140, 0.2);
}
.hero-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.feature {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.feature-icon {
  margin-right: 0.5rem;
}
.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
/* === HERO SECTION RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .container-hero {
    padding: 0 20px;
  }

  .hero-content {
    padding: 30px;
  }

  .brand-name {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-content {
    padding: 25px;
  }

  .hero-text {
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-terminal-wrapper {
    width: 100%;
  }

  .brand-name {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-content {
    padding: 20px;
  }

  .brand {
    margin-bottom: 1rem;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .terminal-dots .dot {
    width: 10px;
    height: 10px;
  }

  .terminal-content {
    font-size: 0.8rem;
  }
  .hero-terminal {
    width: 100%;
    box-sizing: border-box;
  }
}
/*hero end */
/* Table Start */
.container-tables {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;

  font-family: "Bruno Ace", sans-serif;
}
.table-title-h2 {
  color: #fff;
  margin: 100px auto;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #54678c, #081040, #54678c);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: "Bruno Ace", sans-serif;
  text-align: center;
  box-shadow: 3px 5px 5px #333;
  padding: 30px;
}
.comparison-section {
  background: rgba(8, 16, 64, 0.7);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Bruno Ace", sans-serif;
}
.logo-text span {
  font-weight: 800;
  font-family: "Bruno Ace", sans-serif;
}
.section-table-title {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--light-gray);
  font-weight: 400;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
}
.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  position: relative;
  z-index: 1;
}
.comparison-table th {
  background-color: var(--primary-dark);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.comparison-table th:first-child {
  border-top-left-radius: 8px;
}
.comparison-table th:last-child {
  border-bottom-right-radius: 8px;
}
.comparison-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.comparison-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.comparison-table tr {
  background-color: rgba(54, 74, 115, 0.3);
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(54, 74, 115, 0.1);
}

.comparison-table tr:hover {
  background-color: rgba(84, 103, 140, 0.3);
}
.benefit-name {
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
}
.benefit-icon {
  margin-right: 0.75rem;
  opacity: 0.9;
}
.aws-benefit {
  border-left: 3px solid var(--primary-light);
}
.traditional {
  color: rgba(255, 255, 255, 0.7);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.table-footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--light-gray);
  font-size: 0.9rem;
}
/* === TABLE SECTION RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .container-tables {
    padding: 0 20px;
  }

  .table-title-h2 {
    font-size: 2.2rem;
    margin: 70px auto;
    padding: 25px 20px;
  }

  .comparison-section {
    padding: 1.5rem;
  }

  .logo-text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .table-title-h2 {
    font-size: 1.8rem;
    margin: 50px auto;
    padding: 20px 15px;
  }

  .section-table-title {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem 0.6rem;
    font-size: 0.9rem;
  }

  .benefit-name {
    white-space: normal;
    min-width: 120px;
  }
  .container-tables {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 480px) {
  .table-title-h2 {
    font-size: 1.5rem;
    margin: 40px auto;
    padding: 15px 10px;
  }

  .comparison-section {
    padding: 1rem;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
  }

  .benefit-name {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-icon {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  .container-tables {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* Table End */

/*BTN CTA Start */
.btn-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 150px auto;
}
.cta-button-cloud {
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #54678c, #081040, #54678c);
  box-shadow: 0 20px 30px #03588c;
  padding: 30px;
}
.cta-button-cloud a {
  padding: 30px;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Bruno Ace", sans-serif;
}
.cta-button-cloud:hover {
  background: linear-gradient(90deg, #54678c, #081040, #54678c);
  box-shadow: 0 10px 20px #03588c;
  transition: 0.5s;
}
/*BTN CTA End */

/*Section Beneficios Card start */

.card-title-h2 {
  text-align: center;
  font-size: 3.4rem;
  font-family: "Bruno Ace", sans-serif;
  background-color: #54678c;
  color: #fff;
  margin: 150px auto;
  padding: 20px;

  box-shadow: 3px 5px 5px #333;
}
.cloudos-container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-family: "Bruno Ace", sans-serif;
}
.about-section {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  background-color: #03588c;
  border-radius: 30px;
  box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.5);
  width: 100%;
  box-sizing: border-box;
}

.section-header1 {
  margin-bottom: 2.5rem;
  position: relative;
}
.logo2 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.logo-icon {
  margin-right: 0.75rem;
}
.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
}
.logo-text span {
  font-weight: 800;
}
.subheading {
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 400;
  max-width: 80%;
}
.text-block {
  margin-bottom: 1.75rem;
  font-size: 1.125rem;
  line-height: 1.7;
}
.text-block:last-child {
  margin-bottom: 0;
}
.highlight {
  color: var(--accent);
  font-weight: 600;
}
.visual-content {
  position: relative;
}
.tech-card {
  background: rgba(8, 16, 64, 0.5);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.card-content {
  position: relative;
  z-index: 2;
}
.tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #fff;
}

.check-icon {
  margin-right: 0.75rem;
  color: var(--accent);
}
.decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  opacity: 0.6;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(54, 74, 115, 0.4);
  top: -100px;
  right: -100px;
}

.decoration-2 {
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.05);
  bottom: -80px;
  left: -80px;
}
.tech-dots {
  position: absolute;
  z-index: 1;
}

.dots-1 {
  top: 20px;
  right: 20px;
}

.dots-2 {
  bottom: 20px;
  left: 20px;
}
/* === CLOUDOS INFO SECTION RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .card-title-h2 {
    font-size: 2.8rem;
    margin: 100px auto;
    padding: 15px;
  }

  .cloudos-container {
    padding: 1.5rem 1.2rem;
  }

  .about-section {
    padding: 3rem 2rem;
    gap: 2rem;
    flex-direction: column;
  }

  .text-content {
    width: 100%;
  }

  .visual-content {
    width: 100%;
  }

  .logo2 {
    justify-content: center;
  }

  .subheading {
    max-width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .card-title-h2 {
    font-size: 2.2rem;
    margin: 70px auto;
  }

  .about-section {
    padding: 2rem 1.5rem;
  }

  .section-header1 {
    margin-bottom: 2rem;
    text-align: center;
  }

  .logo-text {
    font-size: 2rem;
  }

  .text-block {
    font-size: 1rem;
    line-height: 1.5;
  }

  .tech-card {
    padding: 2rem;
  }

  .feature-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .feature-item {
    font-size: 0.95rem;
  }
  .cloudos-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 480px) {
  .card-title-h2 {
    font-size: 1.8rem;
    margin: 50px auto;
    padding: 12px;
  }

  .about-section {
    padding: 1.5rem 1rem;
  }

  .logo-text {
    font-size: 1.8rem;
  }

  .tech-card {
    padding: 1.5rem;
  }

  .tech-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.2rem;
  }

  .feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .feature-item {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .check-icon {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
  }
  .cloudos-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*Section Beneficios Card end */
/*FOoter Start */

.footer {
  margin-top: 60px;
  background: linear-gradient(
    180deg,
    var(--color-medium-dark) 0%,
    var(--color-darkest) 100%
  );
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  font-family: sans-serif;
}
.footer-top {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-container {
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 10px;
  font-family: sans-serif;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: linear-gradient(
    90deg,
    var(--color-medium),
    var(--color-light)
  );
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s esae, transform 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 18px;
  font-family: sans-serif;
}
.footer-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--color-light);
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}
.footer-links a:hover::before {
  width: 12px;
  background-color: var(--text-primary);
}
.contact-info {
  list-style: none;
}
.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}
.contact-info li svg {
  margin-right: 10px;
  min-width: 20px;
  fill: var(--color-light);
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-medium-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}
.social-link:hover {
  background-color: var(--color-medium);
  transform: translateY(-3px);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}
.footer-bottom {
  background-color: rgba(8, 16, 64, 0.8);
  padding: 20px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(84, 103, 140, 0.1);
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.powered-by {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.powered-by span {
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-medium), var(--color-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 5px;
}
.circuit-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(
      circle at 25px 25px,
      var(--color-light) 1px,
      transparent 0
    ),
    linear-gradient(
      to right,
      transparent 24px,
      var(--color-light) 0.5px,
      transparent 0
    ),
    linear-gradient(
      to bottom,
      transparent 24px,
      var(--color-light) 0.5px,
      transparent 0
    );
  background-size: 50px 50px;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}
.footer-brand {
  margin-bottom: 20px;
}

.footer-brand img {
  max-width: 150px;
  height: auto;
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 0.95rem;
  max-width: 90%;
}

/* Tech pulse animation for the powered by text */
@keyframes techPulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.tech-pulse {
  animation: techPulse 2s infinite;
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-light);
  border-radius: 50%;
  margin-right: 10px;
}

@media screen and (max-width: 1024px) {
  .footer-top {
    padding: 50px 0 30px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .footer-description {
    max-width: 100%;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 480px) {
  .footer-top {
    padding: 40px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand h3 {
    text-align: center;
  }

  .footer-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-column h4 {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .contact-info {
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .copyright,
  .powered-by {
    font-size: 0.8rem;
  }
}
/* Footer End */
/* === CTA BUTTON RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .btn-cta {
    margin: 100px auto;
  }

  .cta-button-cloud {
    padding: 25px;
  }

  .cta-button-cloud a {
    padding: 25px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .btn-cta {
    margin: 70px auto;
  }

  .cta-button-cloud {
    padding: 20px;
    max-width: 90%;
  }

  .cta-button-cloud a {
    padding: 20px;
    font-size: 1.2rem;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .btn-cta {
    margin: 50px auto;
  }

  .cta-button-cloud {
    padding: 15px;
  }

  .cta-button-cloud a {
    padding: 15px;
    font-size: 1rem;
  }
}

/* === GO TO TOP BUTTON RESPONSIVENESS === */
@media screen and (max-width: 480px) {
  #myBtn {
    bottom: 15px;
    right: 15px;
    font-size: 16px;
    padding: 10px;
  }
}

/* AI Section Start */
/* Estilos para a secção de Inteligência Artificial */

.ia-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 150px auto 0 auto;
  padding: 40px 20px;
  background: linear-gradient(
    45deg,
    rgba(8, 16, 64, 0.8),
    rgba(3, 88, 140, 0.8)
  );
  font-family: "Bruno Ace", sans-serif;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.ia-section-container .section-title-h2 {
  text-align: center;
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 30px;
}

.ia-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
}

.ia-content p {
  margin-bottom: 20px;
}

.ia-content h3 {
  font-size: 1.8em;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 20px;
}

.ia-benefits-list {
  list-style-type: none;
  padding-left: 0;
}

.ia-benefits-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.ia-benefits-list .check-icon {
  margin-right: 10px;
  color: #28a745;
  min-width: 24px; /* Garante alinhamento consistente */
}

.ia-content .ia-final-paragraph {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .ia-section-container {
    padding: 20px;
  }

  .ia-section-container .section-title-h2 {
    font-size: 2em;
  }

  .ia-content {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .ia-section-container {
    padding: 15px;
  }

  .ia-section-container .section-title-h2 {
    font-size: 1.8em;
  }

  .ia-content {
    font-size: 0.9em;
  }
}
/* AI Section End */
/* Estilos para o modal de alerta personalizado */

/* O 'overlay' que escurece o fundo */
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    8,
    16,
    64,
    0.7
  ); /* Cor escura semi-transparente do seu site */
  backdrop-filter: blur(5px); /* Efeito de desfoque moderno */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Classe para mostrar o overlay */
.custom-alert-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* A caixa do alerta */
.custom-alert-box {
  background: linear-gradient(
    145deg,
    #0a194f,
    #044a75
  ); /* Gradiente similar ao do seu site */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  max-width: 500px;
  text-align: center;
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.custom-alert-overlay.show .custom-alert-box {
  transform: scale(1);
}

/* Ícone de "sucesso" ou "notificação" */
.custom-alert-icon {
  margin-bottom: 20px;
}

.custom-alert-icon svg {
  width: 50px;
  height: 50px;
  fill: #28a745; /* Verde para um toque positivo */
}

/* Título do alerta */
.custom-alert-box h2 {
  font-family: "Bruno Ace", sans-serif; /* Fonte de destaque do seu site */
  font-size: 1.8em;
  margin: 0 0 15px 0;
  color: #fff;
}

/* Mensagem do alerta */
.custom-alert-box p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0 0 30px 0;
  opacity: 0.9;
}

/* Botão de confirmação */
.custom-alert-box button {
  background-color: #28a745;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-family: "League Spartan", sans-serif;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-transform: uppercase;
}

.custom-alert-box button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}
