:root {
  --primary: hsl(20, 100%, 50%);
  /* Itecma Orange */
  --secondary: hsl(230, 80%, 30%);
  /* Itecma Blue */
  --accent: hsl(200, 100%, 50%);
  /* Cyan accent for links/hovers */
  --dark: hsl(220, 30%, 5%);
  --light: hsl(210, 20%, 98%);
  --gray: hsl(210, 10%, 60%);
  --white: hsl(0, 0%, 100%);
  --glass: hsla(0, 0%, 100%, 0.05);
  --glass-border: hsla(0, 0%, 100%, 0.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

section {
  padding: 80px 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  /* Added internal padding to prevent text hitting edges */
  width: 100%;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  color: var(--white);
  box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px var(--primary);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--dark);
}

/* Header */
.top-bar {
  background: #000;
  color: var(--white);
  padding: 10px 5%;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info span {
  margin-right: 20px;
}

.top-bar-info i {
  color: var(--primary);
  margin-right: 8px;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-social a {
  margin-left: 15px;
  color: var(--white);
  font-size: 0.9rem;
}

.top-bar-social a:hover {
  color: var(--primary);
}

.top-bar-tools {
  border-left: 1px solid var(--glass-border);
  padding-left: 20px;
  display: flex;
  gap: 15px;
}

.top-bar-tools a {
  color: var(--white);
  font-size: 0.9rem;
}

.main-header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--white);
  margin: 0 15px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link i {
  font-size: 0.7rem;
  opacity: 0.7;
}

.nav-link:hover {
  color: var(--primary);
}

/* Hero Base */
.hero,
.post-hero {
  width: 100% !important;
  min-height: 500px !important;
  height: 80vh !important;
  position: relative;
  color: var(--white);
  overflow: hidden;
  margin-top: -80px;
  /* Match default header height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-slide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* Swiper Customizations */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
  background: var(--glass);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 30px;
  border-radius: 10px;
  transition: width 0.3s ease;
}

/* Grids & Cards */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-title h2 span {
  color: var(--primary);
}

.section-title p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 12px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

/* Footer Improvements */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 5% 40px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-seal {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.footer-seal img {
  max-width: 120px;
  height: auto;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--white);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
}

.footer-social-bottom {
  margin-bottom: 20px;
}

.footer-social-bottom a {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 15px;
  transition: var(--transition);
}

.footer-social-bottom a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
}

.reveal.active {
  animation: fadeInUp 0.8s ease forwards;
}

/* Contact Page Specifics */
.contact-hero {
  height: 60vh;
}

.hero-subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.info-section {
  background: var(--primary);
  padding-bottom: 150px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: -100px;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  transition: var(--transition);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.info-card h3 {
  margin-bottom: 15px;
}

.social-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-contact a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-contact a:hover {
  color: var(--dark);
}

.form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
  color: var(--dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

.w-100 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Index Page Specifics */
.stats {
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.stat-item h2 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.stat-item p {
  color: var(--gray);
  font-weight: 500;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.service-link i {
  margin-left: 10px;
  transition: var(--transition);
}

.service-link:hover i {
  margin-left: 15px;
}

@media (max-width: 992px) {

  .hero,
  .post-hero {
    min-height: 250px !important;
    height: 40vh !important;
    margin-top: 0 !important;
    /* Don't overlap on mobile */
  }

  .container {
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
    /* Reduced vertical padding, margins handled by .container */
  }

  .top-bar {
    display: none;
    /* Hide top bar on mobile for cleaner look */
  }

  .main-header {
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.95);
  }

  .logo img {
    height: 40px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.9rem;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-col h3 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
  }

  .footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--primary);
  }

  /* Mobile Nav Menu Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #0a0e14;
    /* Slightly darker for premium feel */
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 2100;
    overflow-y: auto;
    display: flex;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    margin: 0;
    font-size: 1.1rem;
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
  }

  .nav-link-dropdown {
    width: 100%;
  }

  .nav-link-dropdown:hover .dropdown-menu,
  .nav-link-dropdown.active .dropdown-menu {
    position: relative;
    top: 0;
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    border: none;
    padding: 5px 0 15px 20px;
    margin-top: 5px;
    border-radius: 8px;
    animation: none;
  }

  .dropdown-menu a {
    color: var(--white) !important;
    padding: 12px 0;
    font-size: 0.95rem;
    opacity: 1;
  }

  .dropdown-menu a:hover {
    color: var(--primary);
    background: transparent;
    padding-left: 5px;
  }

  .form-map-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    order: 2;
    min-height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    /* Stack on mobile */
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .nav-link i {
    transition: transform 0.3s ease;
  }

  .nav-link-dropdown.active>.nav-link i {
    transform: rotate(180deg);
  }

  /* Fix for inline grids that cause overflow */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 769px) {

  /* Restore grids for desktop if they were overridden by the catch-all above */
  [style*="minmax(320px"] {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  }

  [style*="minmax(350px"] {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .main-header {
    padding: 10px 3%;
  }

  .nav-menu {
    width: 90%;
    padding: 80px 25px 30px;
  }
}

/* Helper for better definition */
.reveal {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.8s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

section {
  overflow: hidden;
  /* Prevent horizontal scroll from reveal animations */
}

/* Base styles for missing wrappers */
.nav-link-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  z-index: 100;
  padding: 10px 0;
  border-top: 3px solid var(--primary);
}

.nav-link-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-menu a {
  color: var(--dark);
  padding: 12px 20px;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background-color: var(--light);
  color: var(--primary);
  padding-left: 25px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2200;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.whatsapp-float.ripple {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Nossos Clientes Section */
.clients-section {
  background-color: var(--white);
  padding: 100px 5%;
}

.clients-title h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.title-line {
  height: 3px;
  background-color: var(--primary);
  width: 100%;
  margin-bottom: 60px;
}

/* Logo Slider */
.logo-slider {
  margin-bottom: 20px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo-item img {
  max-width: 180px;
  height: auto;
  filter: none;
  opacity: 1;
  transition: var(--transition);
}

.logo-item img:hover {
  transform: scale(1.05);
}

/* Testimonials Layout */
.testimonials-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-width: 0;
}

.testimonials-swiper {
  min-width: 0;
  width: 100%;
}

.google-review-stats {
  text-align: left;
}

.google-review-stats h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--dark);
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-count {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 25px;
}

.btn-review {
  background: var(--white);
  border: 1px solid #333;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
  text-decoration: none;
}

.btn-review:hover {
  background: var(--dark);
  color: var(--white);
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 10px;
  min-height: 160px;
  border: 1px solid #f2f2f2;
  position: relative;
  text-align: left;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.user-details h5 {
  font-size: 1rem;
  margin-bottom: 0px;
  font-weight: 600;
}

.review-date {
  font-size: 0.8rem;
  color: #999;
}

.google-icon-top {
  position: absolute;
  top: 25px;
  right: 25px;
}

.google-icon-top img {
  height: 18px;
}

.verified-badge-stars {
  color: #4285F4;
  font-size: 0.9rem;
  margin-left: 8px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  margin-top: 5px;
}

/* Swiper Nav adjustments */
.testimonials-swiper {
  padding: 0 40px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  top: 50% !important;
}

.swiper-button-next {
  right: -5px !important;
}

.plan-finder {
  background: #1e2a38;
  padding: 60px 0;
  color: var(--white);
}

.plan-finder-content {
  max-width: 1000px;
  margin: 0 auto;
}

.plan-finder-header {
  border-top: 2px solid var(--primary);
  display: inline-block;
  padding-top: 10px;
  margin-bottom: 30px;
}

.plan-finder-header h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 0;
  text-transform: none;
}

.plan-finder-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  padding: 12px 15px;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  width: 100%;
}

/* New Sections Styling */
.section-top-border {
  border-top: 3px solid var(--primary);
  padding-top: 15px;
  margin-bottom: 40px;
}

.orange-title {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-transform: none;
}

.subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* News Section */
.news-section {
  padding: 80px 0;
  background: #fdfdfd;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-thumb {
  position: relative;
  height: 220px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #5b6777;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.news-author-avatar {
  position: absolute;
  bottom: -25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.news-author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.news-content {
  padding: 40px 25px 25px;
  flex-grow: 1;
}

.news-content h3 {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-content p {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
}

.news-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #999;
}

/* Updated Combo Corporativo */
.combo-corporativo {
  padding: 80px 0;
  background: var(--white);
}

.combo-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.combo-visual img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.combo-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.combo-feat-card {
  text-align: left;
  padding: 20px;
  position: relative;
}

/* Borders for 2x2 grid */
.combo-feat-card:nth-child(odd) {
  border-right: 1px solid #eee;
}

.combo-feat-card:nth-child(-n+2) {
  border-bottom: 1px solid #eee;
}

.feat-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.combo-feat-card h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.combo-feat-card p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.4;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .combo-main-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .combo-feat-card {
    border: none !important;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .combo-features-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .orange-title {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
  }
}


.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
  color: #999 !important;
  font-weight: bold;
}

@media (max-width: 768px) {
  .testimonials-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .google-review-stats {
    text-align: center;
    margin-bottom: 40px;
  }
}

/* Partners Carousel */
.partners-section {
  padding: 60px 0 100px;
  background: var(--white);
}

.partners-swiper {
  padding: 40px 50px;
  background: #fcfcfc;
  border-radius: 12px;
  position: relative;
}

.partner-item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 20px;
}

.partner-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease;
}

.partner-item:hover img {
  transform: scale(1.05);
}

.partners-next,
.partners-prev {
  width: 35px !important;
  height: 35px !important;
  background: white !important;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  top: 50% !important;
}

.partners-next {
  right: 10px !important;
}

.partners-prev {
  left: 10px !important;
}

.partners-next::after,
.partners-prev::after {
  font-size: 0.9rem !important;
  color: #666;
}

.partners-pagination {
  bottom: 0px !important;
}

.partners-pagination .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* Pricing Tables */
.pricing-section {
  padding: 100px 5%;
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.pricing-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: translateY(-15px) scale(1.05);
}

.badge-popular {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary);
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.pricing-features {
  margin: 40px 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 15px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.pricing-features li i {
  color: #10b981;
  font-size: 1.1rem;
}

.btn-pricing {
  width: 100%;
  border-radius: 12px;
}

.promo-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 700;
}

.post-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: white;
  max-width: 900px;
}

.post-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

@media (max-width: 992px) {
  .post-title {
    font-size: 1.8rem;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .post-hero {
    padding: 100px 5% 40px !important;
  }

  .comment-form-box div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 1.5rem;
  }
}

/* Animations Helper */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}