/* General body styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light background for readability */
    color: #333; /* Dark text for contrast */
}

body, input, textarea {
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
  }
  
  h1,h2,h3,h4,h5,h6, .navigation a, .btn, .filters .filter {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  }

/* Navbar positioning */
/* Header & Navigation */
header {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}


#top-header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    padding: 23px 0;
  /*transition*/
    -webkit-transition: all .15s linear;
       -moz-transition: all .15s linear;
         -o-transition: all .15s linear;
            transition: all .15s linear;
  }
  
  #top-header .grid {
    overflow: visible;
  }
  
  .logo {
    display: block;
    float: left;
    width: 104px;
    height: 46px;
    padding-left: 10px;
    text-indent: -9999px;
    background: url("images/imagens-ivo/logo pvr.png") no-repeat;
    background-size: 104px 46px;
  }
  
  .logo:hover, .logo:focus {
    -webkit-animation: rubberBand 0.5s 1;
       -moz-animation: rubberBand 0.5s 1;
         -o-animation: rubberBand 0.5s 1;
            animation: rubberBand 0.5s 1;
  }
  
  .header-default {
    background: linear-gradient(to right, #ECF0F1, #484f58);
    opacity: 0.8;
  }
  
  .header-home {
    background: linear-gradient(to right, #ECF0F1, #484f58);
    opacity: 0.8;
  }
  
  .header-home .navigation a {
    color: #000000;
  }

  @keyframes rubberBand {
    0% {
       -webkit-transform: scale3d(1, 1, 1);
       transform: scale3d(1, 1, 1);
     }
   
     30% {
       -webkit-transform: scale3d(1.15, 0.9, 1);
       transform: scale3d(1.15, 0.9, 1);
     }
   
     40% {
       -webkit-transform: scale3d(0.8, 1.15, 1);
       transform: scale3d(0.8, 1.15, 1);
     }
   
     50% {
       -webkit-transform: scale3d(1.15, 0.85, 1);
       transform: scale3d(1.15, 0.85, 1);
     }
   
     65% {
       -webkit-transform: scale3d(.95, 1.05, 1);
       transform: scale3d(.95, 1.05, 1);
     }
   
     75% {
       -webkit-transform: scale3d(1.05, .95, 1);
       transform: scale3d(1.05, .95, 1);
     }
   
     100% {
       -webkit-transform: scale3d(1, 1, 1);
       transform: scale3d(1, 1, 1);
     }
   }
   
   .rubberBand {
     -webkit-animation-name: rubberBand;
     animation-name: rubberBand;
   }

.grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.col-1-1 {
    width: 100%;
    padding: 0;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo-wrap {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-wrap img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.navigation {
    display: flex;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1002;
    margin-left: auto;
}

.nav-container {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.nav-container li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    padding: 5px 10px;
    display: block;
}

.nav-container li a:hover {
    color: #ccc;
}

/* Responsive Styles */
@media (max-width: 876px) {
    #top-header {
        padding: 0;
    }
    .content {
        padding: 10px 0;
    }
    
    .menu-icon {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .logo {
        margin: 10px;
    }
    
    .nav-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #ECF0F1, #484f58);
        opacity: 0.8;
        padding: 20px 0;
        gap: 0px;
        z-index: 1000;
        transition: all 0.3s ease;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
    }
    
    #menu-toggle:checked ~ .nav-container {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        z-index: 1001;
        transition: transform 0.3s ease;
      }
    
    
    .nav-container li {
        padding: 10px 20px;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-container li a {
        color: white !important;
        font-weight: bold;
        padding: 12px 20px;
        display: block;
      }
    }

      @media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .nav-container {
        top: 60px; /* Reduced from 70px to eliminate gap */
        padding: 15px 0; /* Adjusted padding */
    }

    .content {
        padding: 0;
    }

    .logo-wrap img {
        max-height: 40px;
    }

    .menu-icon {
        padding: 5px;
      }
    }



/* Main content styling */
main.privacy-policy {
    padding: 20px 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main.privacy-policy header {
    padding: 80px 20px;
    text-align: center;
}

/* Headings */
main.privacy-policy h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333; /* Accent color for headings */
    text-align: center;
}

main.privacy-policy h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

/* Paragraphs */
main.privacy-policy p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

/* Lists */
main.privacy-policy ul {
    list-style-type: disc; /* Use disc for unordered lists */
    margin: 10px 0 20px 20px;
    padding: 0;
}

main.privacy-policy ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Links */
main.privacy-policy a {
    color: #007BFF;
    text-decoration: none;
}

main.privacy-policy a:hover {
    text-decoration: underline;
}

/* Ensure bold text is styled correctly */
b, strong {
    font-weight: bold; /* Explicitly set bold font weight */
}


/* **********************************
Footer
********************************** */

footer {
    background: #2C2D31;
    padding-top: 10px; /* Ensure consistent padding */
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  footer .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* Adds spacing between columns */
    padding: 4em 0;
    text-align: center;
  }

  footer .content {
    display: flex; /* keep flex */
    justify-content: center; /* center videos */
    align-items: center;
    flex-wrap: wrap; /* allow wrapping if needed */
    gap: 0; /* remove unwanted gaps */
    width: 100%;
    text-align: center;
    position: relative;
    }
  
  footer .col-1-3 {
    flex: 1 1 30%; /* Flexible width, minimum 30% */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  footer h3 {
    color: #fff;
    text-align: center; /* Center the heading */
    margin-bottom: 1rem; /* Space between heading and content */
    font-size: 1.8em;
    line-height: .9em;
    font-weight: lighter;
  }
  
  footer p, footer a {
    color: #f4f4f4;
  }
  
  .footer-widget {
    text-align: center;
  }
  
  /* Headings (centered with margin below) */
  .footer-widget h3 {
    margin-bottom: 1em;
    text-align: center;
    color: #fff;
  }
  
  /* Text content - justified */
  .footer-widget .textwidget p {
    text-align: justify;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .footer-widget li {
    position: relative;
    padding: 0.6em 0;
    color: #1abc9c;
    list-style-type: none;
  }
  
  .footer-widget li:first-child {
    padding-top: 0;
    border-top: 0;
  }
  
  .footer-widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: center;
  }
  
  .footer-widget ul li {
    padding: 0.3em 0;
  }
  
  
  /* Videos section */
  .video-widget {
    text-align: center;
  }
  
  .video-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 80px;
    gap: 2px; /* Remove spacing between videos */
    justify-items: center;
    align-items: center;
    margin: 10px auto 0; /* Margin below heading */
    padding: 0; /* Remove padding around the list */
  }
  
  .video-list li {
    width: 80px; /* Set a fixed width for each video */
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 80px;
    line-height: 0;
    box-sizing: border-box;
  }
  
  .video-list iframe {
    width: 80px;
    height: 80px;
    margin: 0;
    padding: 0;
    display: block;
    vertical-align: top;
    border-radius: 5px; /* Optional: Add rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  }
  
  .video-list li:first-child {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Social Footer */
  .social-set {
    width: 100%;
    margin: 0 0 .5em;
    padding: 0 0 1em 0;
    text-align: center;
  }
  
  .social-set a {
    font-size: 2.5em;
    margin-right: .5em;
    padding: 1em;
  }
  
  .social-footer .grid.grid-pad {
    margin-bottom: 0; /* Remove any extra margin */
    padding: 0; /* Remove any extra padding */
    justify-items: center;
  }
  
  footer.wrap {
    position: relative;
  }
  
  .footer-selo {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 150px;
    height: auto;
  }
  
  .copyright {
    text-align: center;
    margin: 0; /* Remove any extra margin */
    padding: 0;
  }
  
  
  #whatsapp-container {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: auto;
    height: auto;
    pointer-events: all;
  }
  
  /* Prevent any space from being reserved in the flow */
  .elfsight-app-14408a1b-976a-4be7-9f3c-d8ae4a3d3ddc {
    display: block !important;
    height: 0 !important;
    overflow: visible !important;
  }

/* *********************************
Media Queries Footer
********************************* */
@media screen and (max-width: 768px) {
  
    .grid {
      flex-direction: column;
    }
  
    .col-1-3,
    .col-1-1 {
      width: 100%;
      padding: 10px 0;
    }
  
    .footer-widget {
      margin-bottom: 30px;
    }
  
    .footer-widget .textwidget p {
      padding: 20px;
    }
    .footer-selo {
      position: static;
      margin: 20px auto 20px;
      display: block;
    }
    
    .social-set {
      text-align: center;
      margin-bottom: 10px;
    }
  
    .social-set a {
      margin: 0 10px;
    }
  
    .copyright {
      text-align: center;
      margin-top: 10px;
    }
  
    .video-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 100px;
      gap: 5px;
      justify-items: center;
      align-items: center;
      margin: 20px auto 0;
      padding: 0;
  }
  }
  
  .grid::after,
  .wrap::after {
    content: "";
    display: table;
    clear: both;
  }

/* *************************************
Loader
************************************* */

.loader-overlay {
    width: 100%;
    height: 100%;
    background: #ECF0F1;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 9999;
  }
  
  .loader {
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -75px;
    position: absolute;
    top: 50%;
    width: 150px;
  }
  .loader .bar {
    background-color: #69C98C;
    font-size: 0;
    height: 6px;
    border-radius: 3px;
    opacity: 0;
    width: 25px;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: subtleIn;
    -webkit-animation-timing-function: ease-in-out;
    display: inline-block;
  }
  .loader .bar:nth-child(1) {
    -webkit-animation-delay: 0s;
  }
  .loader .bar:nth-child(2) {
    background-color: #1abc9c;
    -webkit-animation-delay: .3s;
  }
  .loader .bar:nth-child(3) {
    background-color: #1AB4BC;
    -webkit-animation-delay: .6s;
  }
  .loader .bar:nth-child(4) {
    background-color: #1AA1BC;
    -webkit-animation-delay: .9s;
  }
  .loader .bar:nth-child(5) {
    background-color: #1A7EBC;
    -webkit-animation-delay: 1.2s;
  }
  
  @-webkit-keyframes subtleIn {
    0% {
      opacity: 0;
      -webkit-transform: translateY(300%);
      transform: translateY(300%);
    }
  
    30% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }