  /*
  Theme Name: IngaCode
  Theme URI: https://ingacode.com.br
  Author: IngaCode
  Author URI: https://ingacode.com.br
  Description: Tema moderno e profissional para a IngaCode, com design responsivo completo, sistema de blog integrado, página de projetos customizável, animações e interface premium.
  Version: 1.3.0
  Requires at least: 5.0
  Tested up to: 6.4
  Requires PHP: 7.4
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
  Text Domain: ingacode
  Tags: business, portfolio, blog, one-column, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, responsive

  CHANGELOG - v1.3.0:
  - ✨ Adicionado template de posts individuais premium (single.php)
  - 🎨 Sistema de cores aprimorado (azul #2393D0 e vermelho #EE304D)
  - 📏 Layout de conteúdo expandido para melhor legibilidade
  - 💬 Seção de comentários completamente reformulada
  - 📱 Responsividade móvel aprimorada e debug de overflow
  - 🚀 Animações e efeitos visuais premium
  - ⚙️ Suporte completo ao WordPress Customizer
  - 📦 Integração com páginas de projetos, blog e formulário de contato

  IngaCode WordPress Theme v1.3.0, Copyright 2025 IngaCode
  IngaCode is distributed under the terms of the GNU GPL
  */

  /* CSS Variables - Nova Paleta de Cores */
  :root {
    --primary-color: #EE304D;      
    --secondary-color: #2393D0;    
    --accent-color: #3E457D;       
    --tertiary-color: #80393C;     
    --neutral-color: #717578;     
    --light-red: #FF6B7A;          
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #666;
    --white: #fff;
    --black: #000;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
  }

  html{
    height: 100%;
  }

  body {
    color: #333;
    overflow-x: hidden;
    position: relative;
    height: 100%;
  }

  .geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
  }

  .geometric-line {
    position: absolute;
    background: linear-gradient(45deg, rgba(231, 76, 140, 0.4), rgba(94, 179, 228, 0.4));
    opacity: 0.6;
  }

  .geometric-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 76, 140, 0.6);
  }

  .geometric-node.blue {
    background: rgba(94, 179, 228, 0.6);
  }

  header {
    background-color: #fff;
    padding: 0 80px;
    height: 70px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
  }

  nav ul li a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
  }

  nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
  }

  nav ul li a.active {
    color: var(--primary-color);
  }

  nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(1);
    transition: transform 0.3s;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: max-content;
  }

  .logo img {
    height: 30px;
  }

  .social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
  }

  .social-icons a {
    color: #666;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: var(--primary-color);
  }

  .hero {
    margin-top: 70px;
    min-height: 600px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: calc(100% - 130px);
  }

  .hero-content {
    text-align: left;
    z-index: 2;
    padding: 40px 80px;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .hero-title {
    font-size: 4.5rem;
    font-weight: 400;
  }

  .hero-title-start {
    color:  var(--primary-color);  
  }

  .hero-title-end{
    color: var(--secondary-color);
  }

  .hero-title-subtitle {
    color: var(--primary-color);
  }

  .network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  canvas {
    display: block;
  }

  .whatsapp-btn {
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
  }

  .whatsapp-btn:hover {
    transform: scale(1.1);
  }

  .whatsapp-btn i {
    color: white;
    font-size: 30px;
  }

  .about-section {
    padding: 120px 80px;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-content h2 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
  }

  .about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
  }

  .btn-primary {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 6px;
    padding: 12px 30px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-primary:hover {
    color: white;
    background-color: var(--secondary-color);
  }

  .about-image {
    position: relative;
  }

  .about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid #EE304D;
    border-radius: 50%;
    z-index: -1;
  }

  .about-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
  }

  .carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .carousel-slide.active {
    opacity: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
  }

  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
  }

  .carousel-btn {
    margin-left: 10px;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
  }

  .carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dot.active {
    background: var(--primary-color);
  }

  .services-section {
    padding: 120px 80px;
    background: white;
    position: relative;
  }

  .services-section h2 {
    font-size: 24px;
    font-weight: 500;
    color: #0fa4fd;
    margin-bottom: 60px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }

  .service-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    border-radius: 15px;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .service-card:active {
    transform: translateY(-5px);
  }

  .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
  }

  .service-card:nth-child(1) .service-icon {
    background-color: var(--primary-color);
  }

  .service-card:nth-child(2) .service-icon {
    background-color: var(--secondary-color);
  }

  .service-card:nth-child(3) .service-icon {
    background-color: var(--primary-color);
  }

  .service-card:nth-child(4) .service-icon {
    background-color: var(--secondary-color);
  }

  .service-card h3 {
    color: #666;
    font-size: 18px;
    font-weight: 400;
  }

  .service-details-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
  }

  .service-details {
    position: relative;
    padding: 50px;
    border-radius: 14px;
    border: 1px solid #95d2ff;
    background-color: #e7f4ff;
    animation: fadeIn 0.5s ease-in-out;
  }

  .service-details.active {
    display: block;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .service-details-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }

  .service-details-icon{
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #22abfd;
  }

  .service-details-icon > svg{
    stroke-width: 2px;
    color:  white;
  }

  .service-details h3 {
    color: #0fa4fd;
    font-size: 20px;
    font-weight: 400;
  }

  .service-details p {
    color: #666;
    line-height: 1.8;
  }

  .service-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
  }

  .service-nav:hover {
    color: #5eb3e4;
  }

  .service-nav.prev {
    left: -50px;
  }

  .service-nav.next {
    right: -50px;
  }

  .blog-link {
    text-align: center;
    margin-top: 40px;
  }

  .blog-link a {
    color: #5eb3e4;
    text-decoration: none;
    font-size: 16px;
  }

  .blog-link a:hover {
    text-decoration: underline;
  }

  footer {
    background-color: #2c2c2c;
    color: #999;
    padding: 40px 80px;
    margin-top: 5%;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
  }

  .footer-column ul {
    list-style: none;
  }

  .footer-column ul li {
    margin-bottom: 12px;
  }

  .footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }

  .footer-column ul li a:hover {
    color: #fff;
  }

  .footer-bottom {
    border-top: 1px solid #444;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-social {
    display: flex;
    gap: 15px;
  }

  .footer-social a {
    color: #999;
    font-size: 16px;
    transition: color 0.3s;
  }

  .footer-social a:hover {
    color: #EE304D;
  }

  .footer-copyright {
    font-size: 12px;
    color: #999;
  }

  .footer-logo {
    height: 20px;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr 0.25fr;
    gap: 25px;
    align-items: start;
    margin-bottom: 40px auto;
  }

  .contact-form-section {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
  }

  .contact-form-section h3 {
    color: var(--accent-color);
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .contact-form-section p {
    color: var(--text-color);
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .contact-success {
    background-color: #d4edda;
    color: #155724;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid #c3e6cb;
    font-size: 12px;
  }

  .contact-form {
    width: 100%;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 6px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 11px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(35, 147, 208, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 45px;
  }

  .btn-submit {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
  }

  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35, 147, 208, 0.3);
  }

  @media (max-width: 768px) {
    .header-container {
      grid-template-columns: 1fr;
    }

    nav ul {
      flex-wrap: wrap;
      justify-content: center;
    }

    .about-section, .services-grid, .footer-content {
      grid-template-columns: 1fr;
    }

    .hero {
      margin-bottom: 5%;
    }

    .about-section {
      padding: 80px 40px;
      margin-bottom: 8%;
    }

    .services-section {
      padding: 80px 40px;
      margin-bottom: 5%;
    }

    footer {
      padding: 60px 40px;
      margin-top: 3%;
    }

    .carousel-btn {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }

    .service-details {
      padding: 30px;
    }

    .service-nav {
      font-size: 24px;
    }

    .service-nav.prev {
      left: -30px;
    }

    .service-nav.next {
      right: -30px;
    }

    .hero-title {
      font-size: 50px;
    }
    
    .hero-content {
      padding: 20px 30px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
    
    .footer-main {
      grid-template-columns: 1fr !important;
      gap: 15px !important;
      margin-bottom: 30px !important;
    }
    
    .contact-form-section {
      padding: 12px !important;
      margin-bottom: 15px !important;
    }
    
    .contact-form-section h3 {
      font-size: 13px !important;
    }
    
    .contact-form-section p {
      font-size: 10px !important;
    }
    
    .form-row {
      gap: 5px !important;
      margin-bottom: 6px !important;
    }
    
    .form-group {
      margin-bottom: 6px !important;
    }
    
    .form-group input,
    .form-group textarea {
      padding: 5px !important;
      font-size: 10px !important;
    }
    
    .btn-submit {
      padding: 5px 10px !important;
      font-size: 10px !important;
    }
  }

  .container-section {
    padding: 80px;
    background: white;
  }

  .values-section {
    display: flex;
    margin-top: 80px;
    gap: 30px;
  }

  .value-icon {
    color: #5eb3e4;
    width: max-content;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .value-icon > svg {
    width: 40px;
    height: 40px;
    stroke-width: 0.8px;
  }

  .value-card:nth-child(1) .value-icon > svg {
    color: #0fa4fd;
  }

  .value-card:nth-child(2) .value-icon > svg {
    color: #430eff
  }
  .value-card:nth-child(3) .value-icon > svg {
    color: #ff2121;
  }

  .value-card:nth-child(1) .value-icon{
    background-color: #9ddcfdff;
  }

  .value-card:nth-child(2) .value-icon{
    background: #c4b3ffff
  }

  .value-card:nth-child(3) .value-icon{
    background: #ff9d9dff;
  }

  .value-card:nth-child(1) .value-title{
    color: #0fa4fd;
  }

  .value-card:nth-child(2) .value-title{
    color: #430eff
  }

  .value-card:nth-child(3) .value-title{
    color: #ff2121;
  }

  .container-values-section {
    display: flex;
    gap: 40px;
  }

  .value-card {
    color: #333;
    border-image: none;
  }

  .value-card h3 {
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--secondary-color);
    margin-bottom: 15px;
  }

  .value-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .process-section {
    padding: 60px 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-card {
    background-color: var(--light-red);
    color: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 107, 122, 0.3);
  }

  .process-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .process-card p {
    font-size: 13px;
    line-height: 1.8;
  }

  .tech-section {
    padding: 60px 80px;
    color: white;
    background-color: #f2f2f2;
  }

  .tech-section h2 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    color: black;
  }

  .tech-section p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
    color: black;
  }

  .tech-icons {
    background-color: rgba(255, 255, 255, 0.15);
    margin-top: 80px;
    border-radius: 10px;
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tech-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: transform 0.3s;
  }

  .tech-icon:hover {
    transform: scale(1.15);
  }

  .tech-icon img {
    width: 50px;
    height: 50px;
  }

  .cta-section {
    padding: 80px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(238, 48, 77, 0.15);
    transform: rotate(45deg);
  }

  .cta-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 35px;
    font-weight: 600;
  }

  .btn-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .btn-cta:hover {
    background-color: var(--tertiary-color);
  }

  .btn-cta i {
    font-size: 18px;
  }

  @media (max-width: 968px) {
    .hero {
      grid-template-columns: 1fr;
    }

    .process-section {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .hero, .values-section, .process-section, .tech-section, .cta-section {
      padding: 40px 20px;
    }
  }

  .blog-section {
    padding: 80px 40px 120px 40px;
    background-color: #f8f9fa;
    margin-bottom: 80px;
  }

  .blog-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
  }

  .filter-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .filter-tag {
    padding: 8px 16px;
    background-color: #e9ecef;
    color: #6c757d;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
  }

  .filter-tag:hover,
  .filter-tag.active {
    background-color: var(--secondary-color);
    color: white;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
  }

  .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
  }

  .card-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
  }

  .blog-card-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }

  .blog-card-content h3 a:hover {
    color: var(--primary-color);
  }

  .blog-card-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
  }

  .featured-posts-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f8 100%);
  }

  .featured-posts-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
  }

  .carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .carousel-slide.active {
    opacity: 1;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
  }

  .carousel-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .carousel-content p {
    font-size: 14px;
    opacity: 0.9;
  }

  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
  }

  .carousel-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
  }

  .carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dot.active {
    background: var(--primary-color);
  }

  .decorative-line {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background-color: #fff;
  }

  .line-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .line-content::before,
  .line-content::after {
    content: '';
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
  }

  .line-content i {
    font-size: 24px;
    color: var(--secondary-color);
  }

  .container-rectangle {
    display: flex;
  }

  .rectangle {
    width: 100px;
    height: 35px;
  }

  .rectangle:nth-child(1) {
    background-color: #F42828;
  }
  .rectangle:nth-child(2) {
    background-color: #B10E0E;
  }
  .rectangle:nth-child(3) {
    background-color: #670101;
  }

  .division-red {
    background: var(--primary-color);
    width: 100%;
    height: 60px;
  }

  .division-blue {
    background: var(--secondary-color);
    width: 100%;
    height: 60px;
  }


  @media (max-width: 768px) {
    header {
      padding: 15px 20px !important;
      height: auto !important;
    }
    
    .header-container {
      display: flex !important;
      flex-direction: column !important;
      gap: 15px !important;
    }
    
    nav {
      order: 2;
      width: 100%;
    }
    
    nav ul {
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    nav ul li a {
      font-size: 12px !important;
      padding: 6px 10px;
    }
    
    .logo {
      font-size: 20px !important;
      order: 1;
    }
    
    .logo img {
      max-width: 120px;
      height: auto;
    }
    
    .social-icons {
      order: 3;
      gap: 15px;
      justify-content: center;
    }
    
    .social-icons a {
      font-size: 16px !important;
    }
    
    .whatsapp-btn {
      width: 50px;
      height: 50px;
      font-size: 24px;
      bottom: 20px;
      right: 20px;
    }
    
    .hero {
      padding: 60px 20px !important;
      margin-top: 100px !important;
      min-height: 400px;
      height: calc(100% - 130px);
    }

    
    .hero-content {
      padding: 20px !important;
    }
    
    .hero-content h1 {
      font-size: 28px;
    }
    
    .hero-content p {
      font-size: 14px;
    }
    
    #networkCanvas {
      opacity: 0.3;
    }
    
    .about-section {
      padding: 60px 20px !important;
      grid-template-columns: 1fr !important;
      gap: 30px !important;
    }
    
    .about-content {
      text-align: center;
    }
    
    .about-content h2 {
      font-size: 28px !important;
      margin-bottom: 20px;
    }
    
    .about-content p {
      font-size: 14px;
      line-height: 1.6;
    }
    
    .about-image {
      width: 100%;
      max-width: 100%;
    }
    
    .about-carousel {
      height: 250px !important;
      border-radius: 10px;
    }
    
    .carousel-container {
      border-radius: 10px;
    }
    
    .carousel-btn {
      width: 35px !important;
      height: 35px !important;
      font-size: 16px !important;
    }
    
    .btn-primary {
      padding: 12px 25px;
      font-size: 14px;
    }
    
    .services-section {
      padding: 60px 20px !important;
    }
    
    .services-section h2 {
      font-size: 24px;
      color: #0fa4fd;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 15px !important;
    }
    
    .service-card {
      padding: 20px !important;
    }
    
    .service-card h3 {
      font-size: 14px;
    }
    
    .service-icon {
      width: 50px !important;
      height: 50px !important;
      font-size: 24px !important;
    }
    
    .service-details-container {
      margin-top: 30px;
    }
    
    .service-details {
      padding: 25px !important;
    }
    
    .service-details h3 {
      font-size: 20px;
    }
    
    .service-details p {
      font-size: 14px;
    }
    
    .service-nav {
      font-size: 24px !important;
    }
    
    .service-nav.prev {
      left: -15px !important;
    }
    
    .service-nav.next {
      right: -15px !important;
    }
    
    .blog-link {
      margin-top: 30px;
    }
    
    .blog-link p {
      font-size: 14px;
    }
    
    .blog-section,
    .featured-posts-section {
      padding: 40px 20px;
      margin-bottom: 40px;
    }
    
    .blog-section {
      padding-bottom: 80px;
    }
    
    .blog-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .filter-tags {
      gap: 10px;
    }
    
    .filter-tag {
      font-size: 12px;
      padding: 6px 12px;
    }
    
    .values-section {
      padding: 40px 20px;
      flex-direction: column;
      gap: 30px;
    }
    
    .process-section {
      padding: 40px 20px;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .tech-section {
      padding: 40px 20px;
    }
    
    .tech-icons {
      gap: 15px;
    }
    
    .tech-icon {
      font-size: 32px;
    }
    
    .cta-section {
      padding: 40px 20px;
    }
    
    footer {
      padding: 40px 20px;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .footer-column h3 {
      font-size: 16px;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .footer-main {
      margin-bottom: 25px !important;
    }
    
    .contact-form-section {
      padding: 10px !important;
      margin-bottom: 10px !important;
    }
    
    .contact-form-section h3 {
      font-size: 12px !important;
    }
    
    .contact-form-section p {
      font-size: 9px !important;
    }
    
    .form-group input,
    .form-group textarea {
      padding: 4px !important;
      font-size: 9px !important;
    }
    
    .form-group textarea {
      min-height: 35px !important;
    }
    
    .btn-submit {
      padding: 4px 8px !important;
      font-size: 9px !important;
    }
  }

  @media (max-width: 480px) {
    header {
      padding: 12px 15px !important;
      height: auto !important;
    }
    
    .header-container {
      gap: 12px !important;
    }
    
    nav ul {
      gap: 6px;
    }
    
    nav ul li a {
      font-size: 10px !important;
      padding: 5px 8px;
    }
    
    .logo {
      font-size: 18px !important;
    }
    
    .logo img {
      max-width: 100px;
    }
    
    .social-icons {
      gap: 12px;
    }
    
    .social-icons a {
      font-size: 14px !important;
    }
    
    .whatsapp-btn {
      width: 45px;
      height: 45px;
      font-size: 22px;
    }
    
    .hero {
      padding: 40px 15px !important;
      margin-top: 80px !important;
      min-height: 350px;
    }
    
    .hero-title {
      font-size: 32px !important;
    }
    
    .hero-content h1 {
      font-size: 24px;
    }
    
    .hero-content p {
      font-size: 13px;
    }
    
    .about-section {
      padding: 40px 15px !important;
    }
    
    .about-content h2 {
      font-size: 24px !important;
    }
    
    .about-content p {
      font-size: 13px;
    }
    
    .about-carousel {
      height: 200px !important;
    }
    
    .carousel-btn {
      width: 30px !important;
      height: 30px !important;
      font-size: 14px !important;
    }
    
    .btn-primary {
      padding: 10px 20px;
      font-size: 12px;
    }
    
    .services-section {
      padding: 40px 15px !important;
    }
    
    .services-section h2 {
      font-size: 24px !important;
    }
    
    .services-grid {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
    }
    
    .service-card {
      padding: 18px !important;
    }
    
    .service-card h3 {
      font-size: 13px;
    }
    
    .service-icon {
      width: 45px !important;
      height: 45px !important;
      font-size: 20px !important;
    }
    
    .service-details {
      padding: 20px !important;
    }
    
    .service-details h3 {
      font-size: 18px;
    }
    
    .service-details p {
      font-size: 13px;
    }
    
    .service-nav {
      font-size: 20px !important;
    }
    
    .service-nav.prev {
      left: -10px !important;
    }
    
    .service-nav.next {
      right: -10px !important;
    }
    
    .blog-link p {
      font-size: 13px;
    }
    
    .section-title {
      font-size: 24px;
    }
    
    .about-section,
    .services-section,
    .blog-section,
    .values-section,
    .process-section,
    .tech-section,
    .cta-section {
      padding: 30px 15px;
    }
    
    .blog-section {
      padding-bottom: 60px;
      margin-bottom: 30px;
    }
    
    .service-card,
    .value-card,
    .process-card {
      padding: 20px;
    }
    
    .service-card h3,
    .value-card h3,
    .process-card h3 {
      font-size: 16px;
    }
    
    .service-card p,
    .value-card p,
    .process-card p {
      font-size: 13px;
    }
    
    .blog-card-content h3 {
      font-size: 16px;
    }
    
    .blog-card-content p {
      font-size: 13px;
    }
    
    footer {
      padding: 30px 15px;
    }
    
    .footer-column h3 {
      font-size: 14px;
    }
    
    .footer-column ul li,
    .footer-column p {
      font-size: 12px;
    }
  }
