
:root {
    --primary-color: #005A9C;  
    --secondary-color: #FFA500; 
    --dark-color: #333333;
    --light-color: #f4f4f4;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}


.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-color);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #004a80;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
}
.btn-secondary:hover {
    background-color: #e69500;
    transform: translateY(-2px);
}


header {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    font-weight: 700;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.nav-btn {
    margin-left: 20px;
    box-shadow: 0 4px 10px rgba(0, 90, 156, 0.3);
}


.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: var(--primary-color);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}


#hero {
 background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imagens/papa.PNG');
  
  background-size: cover;      
  background-position: center;  
  background-repeat: no-repeat; 

  
  color: white; 
  height: 80vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; 
  padding: 0 20px;  
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white-color);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    margin-bottom: 20px;
    background: var(--light-color);
    border-radius: 50%;
    padding: 10px;
}


#why-us {
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    margin-bottom: 15px;
    background: var(--white-color);
    border-radius: 50%;
    padding: 10px;
}


.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}



#testimonials {
    background-color: var(--primary-color);
}

#testimonials h2 {
    color: var(--white-color);
}



    .testimonial-grid {
        display: flex !important;          
        flex-direction: row !important;     
        flex-wrap: nowrap !important;    
        overflow-x: auto !important;      
        
        gap: 30px;                          
        padding: 40px 20px;                 
        align-items: stretch;              
        scroll-behavior: smooth;            
        -webkit-overflow-scrolling: touch;  
        width: 100%;                        
    }

   
    .testimonial-card {
        flex: 0 0 auto !important;         
        width: 320px;                       
        min-width: 320px;                   
        
        background: #ffffff;
        border-radius: 16px;
        padding: 30px;
        
      
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0,0,0,0.03);
        border-left: 5px solid #007BFF;    
        
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        scroll-snap-align: center;
        margin-bottom: 0 !important;       
    }

  
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        transition: transform 0.3s ease;
    }

  
    .testimonial-card p {
        font-family: 'Roboto', sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #555;
        font-style: italic;
        margin-bottom: 20px;
        white-space: normal; 
    }

  
    .testimonial-card p::before {
        content: "“";
        font-size: 60px;
        color: #e0e0e0;
        font-family: serif;
        position: absolute;
        top: 10px;
        right: 20px;
        line-height: 1;
    }

    .client-name {
        display: block;
        font-weight: 700;
        color: #004494;
        font-size: 14px;
        text-transform: uppercase;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

   
    .testimonial-grid::-webkit-scrollbar {
        height: 8px;
    }
    .testimonial-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .testimonial-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    
    @media (max-width: 768px) {
        .testimonial-card {
            width: 85vw;      
            min-width: 85vw;  
        }
    }




.contact-header-box {
  background-color: #c7c7c7; 
  
  padding: 25px;           
  border-radius: 8px;      
  margin-bottom: 30px;     
}
.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -20px;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    gap: 40px;
    background: var(--light-color);
    padding: 40px;
    border-radius: 8px;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.contact-info p a {
    font-weight: 700;
}

.contact-form {
    flex: 1.5;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form select {

 
  width: 100%;            
  padding: 15px;          
  font-size: 16px;        
 
  border: 1px solid #ccc; 
  border-radius: 8px;     
  background-color: #fff; 

  
  margin-bottom: 20px;    
  box-sizing: border-box; 
  font-family: 'Roboto', sans-serif; 
}

footer {
    background: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    padding: 30px 0;
}


.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2rem;
    }

   
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--white-color);
        position: absolute;
        top: 80px; 
        left: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-btn {
        margin: 10px 0;
    }
  
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

  
    #hero {
        height: 80vh;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}


.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
   object-fit: cover; 
  vertical-align: middle;
  margin-right: 10px;

  border: 3px solid #f0f0f0; 
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}



.hero-impact {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-family: "Poppins", "Montserrat", sans-serif;
  z-index: 2;
}

.hero-box {
  position: relative;
  padding: 45px 50px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.2s ease;

  max-width: 700px;
  margin: 0 auto;
}
.hero-box h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.hero-box .highlight {
  color: #ff7b00;
  text-shadow: 0 0 20px rgba(255, 123, 0, 0.8);
}

.hero-box .brand {
  color: #2ea3ff;
  text-shadow: 0 0 15px rgba(46, 163, 255, 0.8);
}

.hero-box p {
  font-size: 1.25rem;
  color: #eaeaea;
  margin-bottom: 40px;
}

.hero-box .subtext {
  font-size: 1.05rem;
  color: #cfd3d7;
}

.btn-hero {
  background: linear-gradient(135deg, #ff7b00, #2ea3ff);
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 25px rgba(46, 163, 255, 0.4);
  transition: all 0.4s ease;
  display: inline-block;
  animation: pulse 2.5s infinite;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #2ea3ff, #ff7b00);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.final-photo {
  text-align: center;
  margin: 60px 0;
}

.final-photo img {
  width: 85%;
  max-width: 900px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.final-photo img:hover {
  transform: scale(1.03);
}

.service-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;

  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.galeria-section {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.galeria-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 30px 20px;
  scroll-behavior: smooth;
}

.galeria-scroll::-webkit-scrollbar {
  height: 8px;
}

.galeria-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.galeria-scroll img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  flex: 0 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.galeria-scroll img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}




.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}


.btn-whatsapp-strong {
    display: inline-block;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
    padding: 16px 28px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse 1.5s infinite;
    transition: all 0.3s ease;
}


.btn-whatsapp-strong:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}




.btn-glow {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    background: linear-gradient(45deg, #00c853, #00e676);
    overflow: hidden;
    transition: 0.3s;
}

.btn-glow:hover {
    transform: scale(1.05);
}


.btn-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}


.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}


.popup-content {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    width: 90%;
    max-width: 380px;
    position: relative;
    animation: zoomIn 0.5s ease;
}


.btn-whats {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    
    animation: pulse 1.5s infinite;
    transition: 0.3s;
}

.btn-whats:hover {
    transform: scale(1.08);
}


.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@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); }
}


@media (max-width: 768px) {

    header .container {
        height: 70px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

}


body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#hero {
    position: relative;
    overflow: hidden;
}


    /* Algumas correções feitas para o mobile */

@media (max-width: 768px) {

   
    #hero {
        padding: 110px 15px 50px;
        height: auto;
    }

    .hero-box {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 25px 20px;
        border-radius: 15px;
    }

    .hero-box h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-box p {
        font-size: 0.95rem;
    }

    .btn-hero {
        width: 100%;
        padding: 16px;
        font-size: 15px;
    }

 
    .services-grid {
        grid-template-columns: 1fr;
    }


    .about-content {
        flex-direction: column;
        text-align: center;
    }

 
    .galeria-scroll img {
        width: 250px;
    }

   
    header .container {
        height: 70px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

}