 :root {
     --primary: #E31837;
     --primary-dark: #C1122D;
     --secondary: #FFC72C;
     --dark: #1F1F1F;
     --light: #FFFFFF;
     --gray: #F5F5F5;
     --dark-gray: #6B6B6B;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 body {
     background-color: var(--light);
     color: var(--dark);
     line-height: 1.6;
     overflow-x: hidden;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header */
 header {
     background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%),
         url('img/IMG_1442.jpg');
     background-size: cover;
     background-position: center 70%;
     min-height: 70vh;
     display: flex;
     align-items: center;
     position: relative;
 }

 .header-content {
     max-width: 600px;
     color: var(--light);
     padding: 40px 0;
     position: relative;
     z-index: 2;
 }

 .logo {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--secondary);
 }

 .logo span {
     color: var(--light);
 }

 .tagline {
     font-size: 1.8rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     line-height: 1.3;
 }

 .header-text {
     font-size: 1.1rem;
     margin-bottom: 2.5rem;
     opacity: 0.9;
 }

 .btn {
     display: inline-block;
     background-color: #f88934;
     color: var(--light);
     padding: 15px 35px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .btn:hover {
     background-color: var(--primary-dark);
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .btn-secondary {
     background-color: var(--secondary);
     color: var(--dark);
 }

 .btn-secondary:hover {
     background-color: #e6b400;
 }

 /* Sections */
 section {
     padding: 80px 0;
 }

 .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: black;
     text-align: center;
 }

 .section-subtitle {
     font-size: 1.2rem;
     color: black;
     text-align: center;
     max-width: 700px;
     margin: 0 auto 50px;
 }

 /* About */
 .about-section {
     display: flex;
     align-items: center;
     gap: 50px;
     margin: 80px auto;
 }

 .about-image {
     flex: 1;
     min-width: 100px;
     /* Evita que fique muito pequena */
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     align-self: center;
     /* Garante alinhamento */
 }

 .about-image img {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.5s ease;
 }

 .about-image:hover img {
     transform: scale(1.05);
 }

 .about-content {
     flex: 1;
 }

 .about-content h2 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: var(--dark);
 }

 .about-content p {
     margin-bottom: 1.5rem;
     font-size: 1.1rem;
 }

 /* Why Section */
 .why-section {
     background-color: var(--gray);
 }

 .why-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .why-card {
     background-color: var(--light);
     border-radius: 15px;
     padding: 40px 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .why-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .why-card i {
     font-size: 2.5rem;
     color: #f88934;
     margin-bottom: 20px;
 }

 .why-card h3 {
     font-size: 1.5rem;
     margin-bottom: 15px;
     color: var(--dark);
 }

 /* Numbers */
 .numbers-section {
     background-color: #f88934;
     color: black;
     text-align: center;
 }

 .numbers-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin-top: 50px;
 }

 .number-item h3 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 10px;
 }

 /* Testimonials */
 .testimonials-section {
     background-color: var(--light);
 }

 .testimonial-slider {
     max-width: 800px;
     margin: 50px auto 0;
 }

 .testimonial-card {
     background-color: var(--light);
     border-radius: 15px;
     padding: 40px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     margin: 0 20px;
 }

 .testimonial-text {
     font-size: 1.1rem;
     font-style: italic;
     margin-bottom: 25px;
     position: relative;
 }

 .testimonial-text::before {
     content: '"';
     font-size: 4rem;
     color: var(--primary);
     opacity: 0.2;
     position: absolute;
     top: -20px;
     left: -15px;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
 }

 .testimonial-author img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 15px;
 }

 .author-info h4 {
     font-size: 1.2rem;
     margin-bottom: 5px;
 }

 .author-info p {
     color: var(--dark-gray);
     font-size: 0.9rem;
 }

 /* Gallery */
 .gallery-section {
     background-color: var(--gray);
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 50px;
 }

 .gallery-item {
     border-radius: 15px;
     overflow: hidden;
     position: relative;
     height: 250px;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 /* Form */
 .form-section {
     background-color: var(--light);
 }

 .form-container {
     max-width: 700px;
     margin: 0 auto;
     background-color: var(--light);
     border-radius: 15px;
     padding: 50px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .form-title {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: var(--primary);
     text-align: center;
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 15px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 1rem;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: var(--primary);
     outline: none;
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical;
 }

 .form-submit {
     width: 100%;
     padding: 15px;
     font-size: 1.1rem;
 }

 /* Footer */
 footer {
     background-color: var(--dark);
     color: var(--light);
     padding: 60px 0 30px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-logo {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--secondary);
 }

 .footer-text {
     opacity: 0.8;
     margin-bottom: 20px;
 }

 .social-links {
     display: flex;
     gap: 15px;
 }

 .btn-alt:hover {
     background-color: #E31837 !important;
     /* laranja mais escuro */
     color: var(--light) !important;
     border-color: #111010 !important;
     transform: translateY(-2px);
     /* efeito de levantar */
 }

 .social-links a {
     color: var(--light);
     font-size: 1.2rem;
     transition: color 0.3s ease;
 }

 .social-links a:hover {
     color: var(--secondary);
 }

 .footer-links h3 {
     font-size: 1.3rem;
     margin-bottom: 20px;
     color: var(--secondary);
 }

 .footer-links ul {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: var(--light);
     text-decoration: none;
     opacity: 0.8;
     transition: opacity 0.3s ease;
 }

 .footer-links a:hover {
     opacity: 1;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     opacity: 0.7;
     font-size: 0.9rem;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .about-section {
         flex-direction: column;
     }

     .about-image {
         margin-bottom: 40px;
     }

     .section-title {
         font-size: 2.2rem;
     }
 }

 @media (max-width: 768px) {
     .header-content {
         max-width: 100%;
         text-align: center;
     }

     .logo {
         font-size: 2.2rem;
     }

     .tagline {
         font-size: 1.5rem;
     }

     section {
         padding: 60px 0;
     }

     .form-container {
         padding: 30px;
     }
 }

 @media (max-width: 576px) {
     .numbers-grid {
         grid-template-columns: 1fr 1fr;
         gap: 20px;
     }

     .number-item h3 {
         font-size: 2.5rem;
     }
 }