



/* HOME SECTION */
.navbar{
    position: fixed;
    
    top: 0;
    left: 0;
    backdrop-filter: blur(20px);
    width: 100%;
    z-index: 10000;
    gap: 0;
    

}
@media (min-width: 390px) and (max-width:1366px){
.hero-section{
    height: 40vh;
}
}
.logo{
    padding: 0;
}
.logo a{
    padding: 0!important;
}

.text-rotate {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease-in-out;
  }
  
  
  .text-rotate::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; 
    height: 2px; 
    background-color: white; 
    transition: width 0.4s ease; 
  }
  
  
  .text-rotate:hover::after {
    width: 100%; 
  }
  
 
  .text-rotate:hover {
    transform: scale(1.1); 
    opacity: 1; 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); 
}
*{
    margin: 0;
}
@media (min-width: 379px) and (max-width:1366px){
    .row-column{
    flex-direction:column;
    
    }
    }
@media only screen and (max-width: 769px){
    h1 { font-size: 70px!important; line-height: 1.2; }
    h2 { font-size: 28px!important;; line-height: 1.3; }
    h3 { font-size: 24px!important;; line-height: 1.4; }
    h4 { font-size: 20px!important;; line-height: 1.5; }
    h5 { font-size: 18px!important;; line-height: 1.5; }
    h6 { font-size: 16px!important;; line-height: 1.6; }

}

.main{
    overflow: hidden!important;
    position: relative;


    
}
.main-about{
    padding: 50px 10px 50px 10px!important;
}
.background-site{
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -10000;

}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: -9999;
}






.main * {
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}


.main .visible {
    opacity: 1; 
    transform: translateY(0); 
}
.footer{
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}
.footer .visible {
    opacity: 1; 
    transform: translateY(0); 
}
.marquee-wrapper {
    display: flex;
    gap: 2rem;
   animation: marquee 30s linear infinite;
    white-space: nowrap;
    position: relative;
  
  }
  
  .marquee-content {
    flex: 0 0 auto;
  }
  @keyframes marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
.star{
    animation: spin 5s linear infinite; 
   
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg);}
}




.flip-image {
    background-size: cover;
    background-position: center;
    animation: flip 2s ease-in-out forwards;
    display: block;
}

@keyframes flip {
    0% {
        transform: rotateX(0deg); 
    }
    50% {
        transform: rotateX(180deg); 
    }
    100% {
        transform: rotateX(0deg); 
}
}

.immersive-image {
    transition: transform 0.3s ease; 
    cursor: pointer;
}

.immersive-image:hover {
    transform: scale(1.1); 
}




.creative {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.creative-words {
    position: relative;
    line-height: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 50vh; /* Diminuindo a altura da seção */
    width: 100%;
    overflow: hidden;
}

.creative-words h2 {
    position: absolute;
    width: 100%;
    letter-spacing: 50px; 
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(100%); 
}
.image-3d {
    position: absolute;
    width: 400px; 
    height: auto;
    z-index: 10; 
    pointer-events: none; 
    transition: transform 0.2s ease-out;
    
   
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}

.creating-impact-row {
    position: relative;
    width: 100%;
    overflow: hidden; 
    transform: translateX(100%); 
    transition: transform 1s ease-out; 
}


.creating-impact-row.slide {
    transform: translateX(0); 
}

.numbers-creating-impact{
    
    justify-content: space-between;
    padding: 20px;
    
}

  
.form-container {
    /* max-width: 100%!important; */
    padding: 20px;
    max-width: 90%!important;
    
   
  }
  
  .form-row {
    max-width: 90%;
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  
  .form-fields {
    display: flex;
    position: relative;
  }
  
  .form-input {
    max-width: 90%;
    flex: 1;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    padding: 25px 20px 25px 20px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
    outline: none;
  }
  
  .form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .form-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
  }
  

.form-row:first-child .form-fields {
    flex-direction: row; 
    gap: 10px;
}

.form-row:first-child .form-input {
    width: 48%; 
}

  /* For email and fingerprint button */
  .form-row:last-child .form-fields {
    position: relative;
  }
  
  .fingerprint-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: -7px;
  }
  
  .fingerprint-icon {
    width: 24px;
    height: 24px;
    color: #333;
  }
  


@media (min-width: 1024px) and (max-width: 1366px) {
    .wp-block-video video {
        vertical-align: middle;
        width: 100%;
        object-fit: cover;
        height: 100%;
    }
}
@media (min-width: 1024px) and (max-width: 1366px) {
    .main{
        overflow: hidden!important;
    }
    .marquee-wrapper {
        animation: marquee 20s linear infinite; 
    }

    .marquee-content {
        margin-right: 10px; 
    }

    .immersive3d-grid {
        display: flex !important;
        flex-direction: column !important;
    }

    .immersive-journey {
        display: flex !important;
        padding: 0px 20px 0px 20px !important;
    }

    .button-home a {
        padding: 25px 70px 25px 70px !important;
    }

    .numbers-creating-impact {
        width: 100%;
        padding: 0; 
    }

    .creative-title {
        padding: 50px 20px 50px 20px;
        width: 100%;
        font-size: 100px!important;
    }

    .creative-title h2 {
        font-size: 100px !important;
        letter-spacing: 0 !important; 
    }
  
    .form-container {
        width: 100%;
        padding: 15px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    label {
        font-size: 11px; 
        margin-bottom: 4px;
    }

    .input-row {
        flex-direction: column;
    }

    input, textarea {
        font-size: 12px; 
        padding: 10px 12px;
    }

    textarea {
        min-height: 80px; 
    }

    .fingerprint-button {
        margin-top: -20px;
        margin-right: 5px;
        width: 40px;
        height: 40px;
    }

    .fingerprint-icon {
        width: 18px;
        height: 18px;
    }
}
   
  
@media (min-width: 820px) and (max-width:1023px) {     
    .stack-column-contact{
        display: grid!important;
        align-items: center;
    }
    
    }


@media (max-width: 1024px) {
    .wp-block-video video {
        vertical-align: middle;
        width: 100%;
        object-fit: cover;
        height: 100%;
    }
    
    
    .main {
        overflow: hidden!important;
    }
    .star{
        width: 100px;
        height: 100px;
    }
    .marquee-wrapper {
        animation: marquee 20s linear infinite;
    }

    .marquee-content {
        margin-right: 30px;
    }
    .immersive3d-grid{
        display: flex!important;
        flex-direction: column!important;
    }
    .immersive-journey{
        display: flex!important;
        padding: 0px 20px 0px 20px!important;

    }
 
    .button-home a{
        padding: 25px 200px 25px 200px!important;
    }
    .creating-impact-row{
        padding: 0px 0px 30px 20px!important;
        margin:0!important ;
    }  
    .creative-title {
        padding: 50px 20px 50px 20px;
        width: 100%;
        font-size: 200px!important;
        letter-spacing: 0px!important;
    }

    .creative-title h2 {
        letter-spacing: 0px;
      
    } 
    .image-3d{
        
        width: 300px;
    
        height: auto;
        top: 50%;
        left: 50%;
        transform:translate(-50%, -50%);
    }
    .row-avaliations{
        padding: 0!important;
        gap: 0!important;
    }
    .numbers-creating-impact {
        width: 100%; 
        padding: 10px; 
    }

    .form-container {
        width: 90%;
        max-width: 700px;
        padding: 30px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    label {
        font-size: 12px; 
        margin-bottom: 8px;
    }

    .input-row {
        flex-direction: column; 
    }

    input, textarea {
        font-size: 14px; 
        padding: 14px 20px;
    }

    textarea {
        min-height: 120px; 
    }

    .fingerprint-button {
        margin-top: -40px;
        margin-right: 5px;
        width: 50px;
        height: 50px;
    }

    .fingerprint-icon {
        width: 25px;
        height: 25px;
    }
}


@media (max-width: 768px) {
    .wp-block-video video {
        vertical-align: middle;
        width: 100%;
        object-fit: cover;
        height: 100%;
    }
}
    .main{
        overflow: hidden!important;
    }
    .star{
        width: 100px;
        height: 100px;
    }
    .marquee-wrapper {
        animation: marquee 20s linear infinite; 
    }

    .marquee-content {
        margin-right: 20px; 
    }
    .immersive3d-grid{
        display: flex!important;
        flex-direction: column!important;
    }
    .immersive-journey{
        display: flex!important;
        padding: 0px 20px 0px 20px!important;

    }
  
    .button-home a{
        padding: 25px 70px 25px 70px!important;
    }    
  
    .numbers-creating-impact {
        width: 100%;
        padding: 5px; 
    }

    .form-container {
        width: 100%;
        max-width: 600px;
        padding: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .input-row {
        flex-direction: column; 
    }

    input, textarea {
        font-size: 14px; 
        padding: 12px 15px;
    }

    textarea {
        min-height: 100px; 
    }

    .fingerprint-button {
        margin-top: -30px;
        margin-right: 5px;
        width: 45px;
        height: 45px;
    }

    .fingerprint-icon {
        width: 20px;
        height: 20px;
    }

    
 



@media (max-width: 480px) {
    
    .main{
        overflow: hidden!important;
    }
    .buttons-works-dallas{
        gap: 0!important;
    }
    .marquee-wrapper {
        animation: marquee 20s linear infinite; 
    }

    .marquee-content {
        margin-right: 10px; 
    }
    .immersive3d-grid{
        display: flex!important;
        flex-direction: column!important;
    }
    .immersive-journey{
        display: flex!important;
        padding: 0px 20px 0px 20px!important;

    }
    .button-home a{
        padding: 25px 70px 25px 70px!important;
    }    
  
   
    .creating-impact-stack{
        padding: 0px 0px 100px 0px!important;
        margin:0!important ;
      
    }
    .creating-impact-row {
        position: relative;
        width: 100%;
        overflow: hidden;
        transform: translateX(100%); 
        transition: transform 1s ease-out; 
        padding: 0 !important;
    }
    .row-avaliations{
        padding: 0!important;
        gap: 0!important;
    }
    .numbers-creating-impact {
        width: 100vw;
        padding: 0; 
        gap: 0;
    }
    .creating-impact-title{
        padding-left: 10px;
    }
    .image-3d{
        
        width: 200px;
    
        height: auto;
        top: 45%;
        left: 45%;
        transform:translate(-50%, -45%);
    }
    
    .creative-title {
        padding: 50px 20px 50px 20px;
        width: 100%;
        font-size: 120px!important;
        letter-spacing: 0px!important;
    }

    .creative-title h2 {
        letter-spacing: 0px;
      
    }
    .form-container {
        width: 100%;
        padding: 15px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    label {
        font-size: 11px; 
        margin-bottom: 4px;
    }

    .input-row {
        flex-direction: column;
    }

    input, textarea {
        font-size: 12px; 
        padding: 10px 12px;
    }

    textarea {
        min-height: 80px; 
    }

    .fingerprint-button {
        margin-top: -20px;
        margin-right: 5px;
        width: 40px;
        height: 40px;
    }

    .fingerprint-icon {
        width: 18px;
        height: 18px;
    }

   
 

 


/* ///////////////////////////////////// */
/* About SECTION////////////// */

.numbers-aboutus{
    width:100%;
   
    justify-content:space-around;
    gap: 0;
}

/* ////////////////////// */

/* PRICING SECTION//////////////// */

.bold-agency-wrapper {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
    background-color: #370057; 
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat !important;
    animation: bgAnimation 6s infinite alternate; 
}

.bold-agency-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 40px;
    text-align: center;
    z-index: 2; 
}

.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;  
    text-align: center; 
    padding-top: 30%; 
}






@keyframes bgAnimation{
    0% {background-color: #370057; }
    33% { background-color: rgb(55,0,87); }  
    66% { background-color: rgb(37,4,88); }
    100% { background-color: rgb(87,0,78); }
}
/* ///////////////////////////// */

/* ///////////////////////////creative titles */



/* /////////////////immersivejourney/////// */

.immersive-3d{
    display: flex;
  justify-content: space-between;
  position: sticky;
}





/* ////////////////// BLOG // */
.queryloop{
    background-color: #0a0a0a;
    padding: 20px 20px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
}
.querytitle{
    background-color: #0a0a0a;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
}
.search-input {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .search-input input {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }
  
  .search-input input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .search-input button {
    width: 100%;
    height: 50px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .search-input button:hover {
    background-color: #f0f0f0;
  }
  .categories {
    background-color: #0a0a0a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    color: white;
    max-width: 610px;
  }
  
  .categories h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
  
  .categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .categories li {
    display: inline-block;
  }
  
  .categories a {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border: 1px solid #333;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
  }
  
  .categories a:hover {
    background-color: #252525;
  }
/* ////////////////blog  */


/* //////////CONTACT US///// */
.row-contactus{
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .search-input,
    .search-button,
    .search-form {
      width: 350px !important;
      align-items: center!important;
      
    }
  }
  
 
  @media screen and (max-width: 480px) {
    .search-input,
    .search-button,
    .search-form  {
      width: 350px !important;
      align-items: center!important;
      
    }
  }

@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .column-blog {
      padding: 0 !important;
      margin: 0 !important;
    }
  }
  
  
  @media screen and (max-width: 1024px) {
    .column-blog {
      padding: 0 !important;
      margin: 0 !important;
    }
  }
  

  @media screen and (max-width: 768px) {
    .column-blog {
      padding: 0 !important;
      margin: 0 !important;
    }
  }
  
 
  @media screen and (max-width: 480px) {
    .column-blog {
      padding: 0 !important;
      margin: 0 !important;
    }
  }
/* //////////////////blog */






/* FOOTER//////////////////// */

.footer-wrapper{
    position: relative;
    z-index: 10001;

}

.footer-column{
    margin: 0!important;
    padding: 0!important;
}
.social-media-home{
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: row;
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .footer{
        position: relative;
    }
    .footer-wrapper{
        position: fixed;
        z-index: 10001;
    
    }
    .column-right-footer {
        padding:0px!important;
        word-break: break-word!important;
    }
   
    .licensing{
        text-align: center;
    }
    .social-media-home{
        max-width:100%;
        flex-direction: column!important;
    }
    .mediasocial-size{
        padding: 10px 20px 10px 20px!important;
    }
    .column-left-footer{
        padding-right: 0!important;
    }
}
}


@media (max-width: 1024px) {
    .footer{
        position: relative;
    }
    .footer-wrapper{
        position: fixed;
        z-index: 10001;
    
    }
    .column-right-footer{
        padding-left: 0!important;
        word-break: break-word!important;
        
    }
  
    .footer-wrapper {
        padding: 30px 0px 0px 0px!important;
        margin: 0!important;
        padding: 0!important;
    }
    .licensing{
        text-align: center;
    }
    .social-media-home{
        max-width:100%;
        flex-direction: column!important;
    }
    .mediasocial-size{
        padding: 10px 20px 10px 20px!important;
    }
    .column-left-footer{
        padding-right: 0!important;
    }
    }



@media (max-width: 768px) {
    .footer{
        position: relative;
    }
    .footer-wrapper{
        position: relative;
        z-index: 10001;
    
    }
    .column-right-footer{
        padding-left: 0!important;
        word-break: break-word!important;
        
    }
    .footer-wrapper {
        padding: 30px 0px 0px 0px!important;
        margin: 0!important;
        padding: 0!important;
    }
    .licensing{
        text-align: center;
    }
    .social-media-home{
        max-width:100%;
        flex-direction: row;
    }
    .mediasocial-size{
        padding: 10px 10px 10px 10px!important;
    }
    .column-left-footer{
        padding-right: 0!important;
    }
    }   
       


    

@media (max-width: 480px) {
    .footer{
        position: relative;
    }
    .footer-wrapper{
        position: relative;
        z-index: 10001;
    
    }
    .column-right-footer{
        padding-left: 0!important;
        word-break: break-word!important;
        
    }
    .footer-wrapper {
        padding: 30px 0px 0px 0px!important;
        margin: 0!important;
        padding: 0!important;
    }
    .licensing{
        text-align: center;
    }
    .social-media-home {
    
      
        max-width:100%;
        flex-direction: row !important;
       
    }
    .mediasocial-size{
        padding: 10px 10px 10px 10px;
    }
    .column-left-footer{
        padding-right: 0!important;
    }
}

@media (min-width: 782px) {
    .footer {
        position: relative;
    }

    .footer-wrapper {
        position: relative;
        z-index: 10001;
        padding: 20px 0 0 0 !important;  
        margin: 0 !important;
    }
    .footer-column{
        padding: 0!important;
    }
    .column-right-footer {
        padding:0!important;
        word-break: break-word !important;
    }

    .licensing {
        text-align: center;
    }

    .social-media-home {
        max-width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;  
        gap: 15px; 
    }

    .mediasocial-size {
        padding: 8px 8px!important;  /* Slightly smaller padding for icons */
    }

    .column-left-footer {
        padding-right: 0!important;
    }

    /* Additional specific adjustments for tablet views */
    .footer-wrapper {
        padding-top: 20px;  /* Adjust padding for better alignment */
    }

    .footer {
        padding: 10px;  /* Provide consistent padding */
    }
    h2 {
        font-size: 30px; /* Adjust the font size for smaller screens */
        line-height: 1.4; /* Slightly increase line height for readability */
        margin-bottom: 15px; /* Add some space after h2 */
    }

    p {
        font-size: 16px; /* Adjust the font size for paragraphs */
        line-height: 1.6; /* Increase line height for better readability */
        margin-bottom: 15px; /* Ensure there's space after paragraphs */
        text-align: justify; /* Justify text for a neat look */
    }
}
