:root {
  --color-1: #1A9F57;
  --color-2: #143b70;
  --color-3: #27C06D;
  --color-4: #000;
  --color-5: #222;
  --color-6: #ff8c00;
  --color-7: rgba(255,255,255,0.1);
  --color-8: rgba(255,255,255,0.15);
  --color-9: rgba(255,255,255,0.5);
  --color-10: #246AD1;
  --color-11: #1A9F57;
  --color-12: #0d3e91;
  --font-2: "Unbounded", sans-serif;
  --font-1: "Inter", sans-serif;
    --insppe-bg-color: var(--color-2); /* Cor de fundo baseada no layout */
    --insppe-text-color: #ffffff;

    --main-font: var(--font-2); /* Fonte secundária */
    --secondary-font: var(--font-1); /* Fonte principal */
  }

  .font-main{
    font-family: var(--main-font);
  }

  body {
    margin: 0;
    background-color: var(--insppe-text-color); /* Cor de fundo padrão */
    font-family: var(--secondary-font);
  }

  /* header styles */
  .navbar {
    background-color: var(--insppe-text-color);
    box-shadow: 0px 6px 6px 0px rgba(36, 106, 209, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .nav-link {
    color: var(--color-12);
    font-weight: 500;
    margin-right: 1rem;
  }

  .nav-link:hover {
    color: var(--color-10);
    text-decoration: underline
  }

  .btn-account {
    background-color: var(--color-10);
    color: var(--insppe-text-color);
    font-weight: 500;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }

  .btn-account:hover {
    background-color: var(--color-10);
    color: var(--insppe-text-color);
    text-decoration: none;
  }

  .navbar-brand img {
    height: 32px;
    width: auto;
  }


  /* section hero styles */

  .hero {
    background-color: #14294d;
    color: var(--insppe-text-color);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    
    background: url('../img/hero-bg.png') center/cover no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }

  .hero-title {
    font-family: var(--font-2);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
  }

  .highlight {
    background-color: var(--color-6);
    color: var(--insppe-text-color);
    padding: 0 4px;
    border-radius: 3px;
  }

  .store-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--insppe-text-color);
    border: 1px solid var(--color-9);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    margin-right: 1rem;
    transition: background-color 0.3s;
  }

  .store-buttons a:hover {
    background-color: var(--color-7);
    text-decoration: none;
  }


  @media (max-width: 991.98px) {
    .hero {
      padding: 3rem 1.5rem;
    }
    .hero-image {
      position: static;
      width: 100%;
      height: 250px;
      border-radius: 1rem;
      margin-bottom: 2rem;
    }
  }

  /* header styles */
  .headline-section {
    padding: 4rem 0;
  }

  .headline-title {
    font-family: var(--font-2);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-11); /* verde */
    line-height: 1.2;
  }

  .headline-text {
    font-size: 1rem;
    opacity: 0.75;
    margin-bottom: 1rem;
  }

  .headline-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-11);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
  }

  .headline-link::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--color-11);
    margin-right: 0.5rem;
    display: inline-block;
  }

  .headline-link:hover {
    text-decoration: underline;
  }


  /* ******************************************** */
  /* ************* solution styles*/  
  /* ******************************************** */

  .solution-subtitle {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
  }

  .solution-title {
    font-family: var(--font-2);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-11);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .solution-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .feature-icon {
    background: #fff;
    color: var(--color-4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 1rem;
  }

  .feature-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .feature-text {
  }

  .feature-divider {
    border-top: 1px solid var(--color-8);
    margin: 2rem 0;
  }

  @media (max-width: 767.98px) {
    .solution-title {
      font-size: 1.5rem;
    }
    .feature-item {
      flex-direction: row;
    }
  }
  /******************************************/
  /************* services styles*/
  /******************************************/
  .services-section {
    
    background: linear-gradient(170deg, var(--Primitive-Primary-100, #DDFBEA) 0.48%, rgba(255, 255, 255, 0.00) 50%);
    border-image: linear-gradient(to right, rgba(57, 213, 128, 1) 0, rgba(53, 217, 168, 0)  100%) 1;
    border-width: 4px;
    border-bottom-width: 1px;
    border-style: solid;
    border-left-width: 0;
    border-right-width: 0;
  }

  .services-title {
    font-family: var(--font-2);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-11);
    margin-bottom: 1rem;
  }

  .services-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .service-icon {
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #DCEFFD;
  }

  .service-title {
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-5);
  }

  .service-text {
    font-size: 1rem;
  }

  .service-divider {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    height: auto;
  }

  .btn-green {
    background-color: var(--color-11);
    color: var(--insppe-text-color);
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 2rem;
  }

  .btn-green:hover {
    background-color: var(--color-1);
    text-decoration: none;
  }

  .btn-green i {
    margin-left: 0.5rem;
    font-size: 1rem;
  }

  @media (max-width: 767.98px) {
    .service-divider {
      display: none;
    }
  }

  /* news styles */
  .highlight-section {
    padding: 4rem 0;
  }

  .highlight-subtitle {
    font-family: var(--main-font);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .highlight-title {
    font-family: var(--main-font);
    font-size: 2rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 1.5rem;
  }

  .analysis-headline {
    font-family: var(--main-font);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-12);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .category-badge {
    background-color: #ffb300;
    color: var(--color-4);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    display: inline-block;
  }

  .analysis-date {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-left: 0.75rem;
  }

  .insight-hat {
    font-weight: 300;
  }

  .insight-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
  }

  .insight-separator {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 1rem 0;
  }

  .highlight-img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
  }

  .read-more {
    color: #0d6efd;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
  }

  .read-more i {
    margin-left: 0.3rem;
  }

  .section-title {
    font-family: var(--main-font);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }

  .analysis-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
  }

  .analysis-card:hover {
    transform: translateY(-5px);
  }

  .analysis-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    display: block;
  }

  .category {
    font-weight: 600;
    font-size: 0.95rem;
  }

  .category-esportes {
    color: var(--color-3);
  }

  .category-negocios {
    color: #0d6efd;
  }

  .category-politica {
    color: #ffb300;
  }

  .category-business {
    color: #e91e63;
  }

  .analysis-date {
    opacity: 0.7;
    font-size: 0.85rem;
  }

  .analysis-title {
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0.25rem 0;
    opacity: 0.85;
  }

  .explore-more {
    display: inline-flex;
    align-items: center;
    color: #0d6efd;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 1rem;
  }

  .explore-more i {
    margin-left: 0.25rem;
  }

  /* newsletter Styles */
  .newsletter-section {
    background: url('../img/pattern-newsletter.svg')  no-repeat left top;/* opcional, se quiser o background gráfico */
    background-color: var(--color-2);
    color: var(--insppe-text-color);
    padding: 3rem 0;
    position: relative;
  }


  .newsletter-icon {
    margin-bottom: 1rem;
  }

  .newsletter-title {
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .newsletter-text {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .newsletter-form {
    background-color: var(--insppe-text-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0.25rem;
  }

  .newsletter-form input[type="email"] {
    border: none;
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px 0 0 8px;
    font-size: 0.95rem;
    outline: none;
  }

  .newsletter-form button {
    background-color: var(--color-10);
    color: var(--insppe-text-color);
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 0.3s;
  }

  .newsletter-form button:hover {
    background-color: var(--color-10);
  }

  @media (max-width: 767.98px) {
    .newsletter-form {
      flex-direction: column;
      align-items: stretch;
    }

    .newsletter-form input[type="email"] {
      border-radius: 8px 8px 0 0;
      margin-bottom: 0.5rem;
    }

    .newsletter-form button {
      border-radius: 0 0 8px 8px;
    }
  }


/* faq Styles */

    h2 {
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .faq-title {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-weight: 300;
    opacity: 0.7;
    text-transform: uppercase;
  }

  .accordion-button {
    font-weight: 500;
    font-family: var(--font-1);
    color: var(--color-10);
    padding: 1.5rem 1.5rem;
  }

  .accordion-button:not(.collapsed) {
    background-color: var(--color-10);
    color: var(--insppe-text-color);
    box-shadow: none;
  }

  .accordion-button::after {
    content: '+';
    background-image: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-10);
  }

  .accordion-button:not(.collapsed)::after {
    content: ''; /* símbolo de menos */
    color: var(--insppe-text-color);
  }

  .accordion-body {
    background-color: var(--color-10);
    color: var(--insppe-text-color);
    border-top: none;
  }

  .whatsapp-box {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-top: 2rem;
  }
  

  .whatsapp-box p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
  }

  .whatsapp-box strong {
    color: var(--color-3);
    font-weight: 600;
  }

  /* Footer Styles */

  footer {
    color: var(--insppe-text-color);
    padding: 2rem;
    border-radius: 10px;
    background: radial-gradient(405.42% 100% at 0% 50%, #284473 0%, #192E52 100%);
  }

  footer h6 {
    font-family: var(--font-2);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }
  
  footer a {
    color: var(--insppe-text-color);
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
    padding-top: .5em;
  }
  
  footer a:hover {
    color: var(--insppe-text-color);
    text-decoration: underline;
  }

  .footer-logo {
    max-width: 150px;
    height: auto;
  }

  .footer-icons img {
    transition: transform 0.2s;
  }


  .footer-bottom {
    font-family: var(--main-font);
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 300 !important;
    letter-spacing: .5px;
  }

  hr {
    border-color: rgba(255, 255, 255, 0.2);
  }