/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body, html {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.navbar {
  padding: 1rem 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-icon, .circle-pattern {
  position: relative;
  width: 50px;
  height: 50px;
}
.circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #0042a9, #00aaff);
}
.main-circle { width: 20px; height: 20px; top: 50%; left: 50%; transform: translate(-50%, -50%);}
.c1 { width: 12px; height: 12px; top: 5px; left: 50%; transform: translateX(-50%); opacity: 0.8;}
.c2 { width: 12px; height: 12px; top: 50%; right: 5px; transform: translateY(-50%); opacity: 0.7;}
.c3 { width: 12px; height: 12px; bottom: 5px; left: 50%; transform: translateX(-50%); opacity: 0.8;}
.c4 { width: 12px; height: 12px; top: 50%; left: 5px; transform: translateY(-50%); opacity: 0.7;}
.c5 { width: 8px; height: 8px; top: 10px; right: 10px; opacity: 0.6;}
.logo-text h1 { color: #0242a9; font-size: 1.8rem; font-weight: 700; margin: 0;}
.logo-text span { color: #95a5a6; font-size: 0.9rem; display: block;}
/* Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-menu a:hover { color: #0042a9;}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: #0042a9;
  transition: width 0.3s ease;
}
.nav-menu a:hover::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 25px; height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px);}
.hamburger.active span:nth-child(2) { opacity: 0;}
.hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px);}
/* Hero Section */
.hero, .about, .services, .team, .clients, .contact, section {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/back.svg');
    background-size: contain;
    background-repeat: repeat;
    opacity: 0.1;
}

.hero-content, .about-content, .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.gradient-text {
  background: linear-gradient(135deg, #0042a9, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.2rem;
  color: #bdc3c7;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #0042a9, #000);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46 194 204 / 30%);
}
.btn-outline {
  border: 2px solid #0042a9;
  color: #0042a9;
  background: transparent;
}
.btn-outline:hover {
  background: #0042a9;
  color: #fff;
}
/* Stats Cards */
.stats-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 10px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateX(10px); }
.stat-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #0042a9, #000);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}
.stat-content h3 { font-size: 2rem; color: #00b6ff; margin-bottom: .5rem;}
.stat-content p { color: #bdc3c7; margin: 0;}
/* Sections padrão */
section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}
/* About */
.about { background: #f8f9fa; }
.about-text h3 { font-size: 2rem; color: #2c3e50; margin-bottom: 1.5rem;}
.about-text p {
  font-size: 1.1rem; color: #5d6d7e; margin-bottom: 2rem; line-height: 1.8;
}
.values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon, .contact-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #0042a9, #000);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.value-content h4 { color: #2c3e50; margin-bottom: 0.5rem;}
.value-content p { color: #7f8c8d; margin: 0;}
.about-visual { display: flex; justify-content: center;}
.about-image {
  width: 400px; height: 300px;
  background: linear-gradient(135deg, #0042a9, #00aaff);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 4rem;
}
/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #fff; padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e6ed;
}
.service-card:hover {
  transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.service-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #0042a9, #000);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.5rem; color: #2c3e50; margin-bottom: 1rem;}
.service-card p { color: #7f8c8d; margin-bottom: 1.5rem; line-height: 1.7;}
.service-features { list-style: none;}
.service-features li {
  padding: .5rem 0;
  color: #5d6d7e;
  position: relative;
  padding-left: 1.5rem;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0042a9;
  font-weight: bold;
}
/* Team */
.team { background: #f8f9fa; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.team-member {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.team-member:hover { transform: translateY(-5px);}
.member-photo {
  height: 250px;
  background: linear-gradient(135deg, #0042a9, #00aaff);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 4rem;
}
.member-info { padding: 2rem; text-align: center;}
.member-info h3 { color: #2c3e50; margin-bottom: .5rem;}
.member-role { color: #0042a9; font-weight: 600; margin-bottom: 1rem;}
.member-description { color: #7f8c8d; line-height: 1.6; margin-bottom: 1.5rem;}
.member-social a {
  display: inline-block; width: 40px; height: 40px;
  background: #0042a9;
  color: #fff;
  border-radius: 50%;
  text-align: center; line-height: 40px;
  text-decoration: none;
  transition: background .3s;
}
.member-social a:hover { background: #00aaff;}
/* Clients */
.clients-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.client-category {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform .3s;
}
.client-category:hover { transform: translateY(-5px);}
.category-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #0042a9, #00aaff);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}
.client-category h3 { color: #2c3e50; margin-bottom: 1rem;}
.client-category p { color: #7f8c8d; margin-bottom: 1.5rem;}
.client-examples { list-style: none; text-align: left;}
.client-examples li {
  padding: .3rem 0; color: #5d6d7e; position: relative;
  padding-left: 1.5rem;
}
.client-examples li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0042a9;
  font-weight: bold;
}
/* Testimonials */
.testimonials { text-align: center; }
.testimonials h3 { font-size: 2rem; color: #2c3e50; margin-bottom: 3rem;}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.testimonial-content p {
  font-style: italic; color: #5d6d7e;
  margin-bottom: 1.5rem; line-height: 1.7;
}
.testimonial-author strong { color: #2c3e50; display: block; margin-bottom: .5rem;}
.testimonial-author span { color: #0042a9; font-size: .9rem;}
/* Contact */
.contact { background: #f8f9fa; }
.contact-item {
  display: flex; gap: 1rem; margin-bottom: 2rem;
}
.contact-details h4 { color: #2c3e50; margin-bottom: .5rem;}
.contact-details p { color: #7f8c8d; margin: 0;}
/* Contact Form */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 1.5rem;}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e6ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color .3s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0042a9;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo .logo-text h3 {
  color: #0042a9; font-size: 1.5rem; margin-bottom: .5rem;
}
.footer-logo .logo-text span { color: #95a5a6;}
.footer-section p {
  color: #bdc3c7; margin: 1rem 0 2rem;
  line-height: 1.7;
}
.footer-section h4 { color: #fff; margin-bottom: 1.5rem; font-size: 1.2rem;}
.footer-section ul { list-style: none;}
.footer-section ul li { margin-bottom: .8rem;}
.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color .3s;
}
.footer-section ul li a:hover { color: #0042a9;}
.social-links {
  display: flex; gap: 1rem;
}
.social-links a {
  display: flex; width: 40px; height: 40px;
  background: #34495e;
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background .3s;
}
.social-links a:hover { background: #0042a9;}
.footer-contact p {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
}
.footer-contact i { color: #0042a9;}
.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
  flex-direction: row;
}
.footer-copyright p { color: #95a5a6; margin: 0;}
.footer-legal { display: flex; gap: 2rem;}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color .3s;
}
.footer-legal a:hover { color: #0042a9;}
/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.service-card, .team-member, .client-category {
  animation: fadeInUp 0.6s ease forwards;
}
/*--------------------- RESPONSIVE ------------------------*/
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-menu { gap: 1.5rem;}
  .nav-menu a { font-size: 0.9rem;}
  .hero-content { gap: 3rem;}
  .hero-title { font-size: 3rem;}
  .container { padding: 0 30px;}
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: rgba(0,0,0,0.98); backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: left 0.3s;
    z-index: 1000;
    list-style: none;
    margin: 0; padding: 0;
  }
  .nav-menu.active { display: flex; left: 0;}
  .nav-menu li { opacity: 0; transform: translateY(30px); transition: all 0.3s;}
  .nav-menu.active li { opacity: 1; transform: translateY(0);}
  .nav-menu.active li:nth-child(1) { transition-delay: 0.1s;}
  .nav-menu.active li:nth-child(2) { transition-delay: 0.2s;}
  .nav-menu.active li:nth-child(3) { transition-delay: 0.3s;}
  .nav-menu.active li:nth-child(4) { transition-delay: 0.4s;}
  .nav-menu.active li:nth-child(5) { transition-delay: 0.5s;}
  .nav-menu.active li:nth-child(6) { transition-delay: 0.6s;}
  .nav-menu a {   
    text-align: center;
    display: block;
    width: 100%;
  }
  .hamburger { display: flex; }
  body.menu-open { overflow: hidden; position: fixed; width: 100%;}
  .hero-content, .about-content, .contact-content { grid-template-columns: 1fr!important; text-align: center; gap: 3rem;}
  .hero-title { font-size: 2.5rem;}
  .hero-description { font-size: 1.1rem;}
  .hero-buttons, .btn { justify-content: center; flex-direction: column; align-items: center; width: 100%; max-width: 280px;}
  .about-image { width: 100%; max-width: 350px; height: 250px;}
  .footer-content { grid-template-columns: 1fr; text-align: center; gap: 2rem;}
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem;}
  .stats-cards { margin-top: 3rem; gap: 1rem;}
  .stat-card { padding: 1.5rem; gap: 1rem;}
  .stat-icon { width: 50px; height: 50px; font-size: 1.2rem;}
  .stat-content h3 { font-size: 1.5rem;}
  .service-card, .team-member, .client-category { padding: 2rem;}
  .container { padding: 0 15px;}
}
@media (max-width: 480px) {
  .hero-title, .section-title { font-size: 2rem;}
  .section-subtitle { font-size: 1rem;}
  .services-grid, .team-grid, .clients-categories, .testimonials-grid { grid-template-columns: 1fr;}
  .btn { width: 100%; margin-bottom: 1rem; padding: .8rem 1.5rem; font-size: .9rem;}
  .stat-card { flex-direction: column; text-align: center; padding: 1.2rem;}
  .service-card, .team-member, .client-category, .testimonial, .contact-form { padding: 1.5rem;}
  .about-image, .member-photo { height: 200px; font-size: 3rem;}
  .navbar .container { padding: 0 15px;}
  .logo-text h1 { font-size: 1.5rem;}
  .logo-text span { font-size: 0.8rem;}
}
/* Ajuste adicional para dispositivos muito pequenos */
@media (max-width: 360px) {
  .container { padding: 0 10px;}
  .hero-title { font-size: 1.8rem;}
  .logo-text h1 { font-size: 1.3rem;}
  .nav-menu a { font-size: 1.3rem;}
  .btn { padding: .7rem 1.2rem; font-size: .85rem;}
}

/* Processo Section */
.process {
    background: #f8f9fa;
    padding: 100px 0;
}

.process .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0042a9, #00aaff);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.process .section-desc {
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e6ed;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0042a9, #000000);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.step p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsivo para telas muito pequenas */
@media (max-width: 480px) {
    .process .section-title {
        font-size: 2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
}
/* FAQ Section */
.faq {
    background: #fff;
    padding: 100px 0;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e0e6ed;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #0042a9, #000000);
    color: #fff;
    border-radius: 15px 15px 0 0;
    transition: background 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 2rem;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #5d6d7e;
    line-height: 1.7;
}

/* FAQ Responsivo */
@media (max-width: 480px) {
    .faq-question {
        padding: 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 1.2rem;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0042a9, #000);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn {
    background: #fff;
    color: #0042a9;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* CTA Responsivo */
@media (max-width: 480px) {
    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .cta .btn {
        width: 100%;
    }
}

/* Form styles */
.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.check-label {
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-block {
    width: 100%;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #0042a9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #025dee;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: #000000;
    color: #fff;
    padding: 80px 0 40px;
    
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 60px;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #00aaff;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.contact-info i {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #00aaff;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #95a5a6;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00aaff;
}

/* Footer Responsivo */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-info {
        justify-content: center;
    }
}

.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    z-index: 999;
    transition: var(--transition);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}