/* ===== VARIÁVEIS E RESET ===== */
:root {
    --primary-yellow: #FFD700;
    --dark-black: #000000;
    --pure-white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


   


body, html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--pure-white);
    
    scroll-behavior: smooth;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 .logo-gas {
    width: 110px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.logo-gas2 {
    width: 130px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* ===== NAVEGAÇÃO ===== */
.navbar {
    background: var(--dark-black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    color: var(--primary-yellow);
}

.brand-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.brand-text p {
    font-size: 12px;
    margin: 0;
    font-style: italic;
    color: var(--pure-white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 5px 0;
    transition: var(--transition);
}
/* ===== HERO CAROUSEL (Compacto e Responsivo) ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: brightness(70%);
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero .cta-button {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero .cta-button:hover {
  background: #ff8533;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero .cta-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 55vh;
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}

/* ===== SEÇÃO SOBRE ===== */
.about {
    padding: 80px 20px;
    background: var(--light-gray);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-black);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    color: var(--dark-black);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.about-list i {
    color: var(--primary-yellow);
    font-size: 20px;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFC700 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--dark-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== SEÇÃO SERVIÇOS ===== */
.services {
    padding: 80px 20px;
    background: var(--pure-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid transparent;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-yellow);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-black);
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===== SEÇÃO COLABORADORES E PARCERIAS ===== */
.partners {
    padding: 80px 20px;
    background: var(--light-gray);
}

.partners-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 60px;
    font-style: italic;
}

.partners-section {
    margin-bottom: 80px;
}

.partners-section h3 {
    font-size: 28px;
    color: var(--dark-black);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-yellow);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFC700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--dark-black);
}

.partner-card h4 {
    font-size: 20px;
    color: var(--dark-black);
    margin-bottom: 10px;
}

.partner-card p {
    color: var(--dark-gray);
    font-size: 14px;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.instructor-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.instructor-avatar {
    font-size: 80px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    
}

 .rost-h{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    
 }

.instructor-card h4 {
    font-size: 22px;
    color: var(--dark-black);
    margin-bottom: 10px;
}

.instructor-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.instructor-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.instructor-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--dark-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.instructor-social a:hover {
    background: var(--dark-black);
    color: var(--primary-yellow);
    transform: scale(1.1);
}

/* ===== SEÇÃO GALERIA ===== */
.gallery {
    padding: 80px 20px;
    background: var(--pure-white);
}

.gallery-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-style: italic;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--light-gray);
    color: var(--dark-black);
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-yellow);
    color: var(--dark-black);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.gallery-image {
    position: relative;
    width: 90%;
    height: 250px;
    overflow: hidden;
    background: var(--dark-gray);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    color: var(--dark-black);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--pure-white);
    transform: scale(1.1);
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark-black);
    opacity: 0.8;
    transition: var(--transition);
}

.gallery-item:hover .video-icon {
    opacity: 0;
}

.gallery-info {
    padding: 20px;
    text-align: center;
}

.gallery-info h4 {
    font-size: 18px;
    color: var(--dark-black);
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* ===== MODAIS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
}

.modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.modal-content h3 {
    font-size: 28px;
    color: var(--dark-black);
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-black);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-yellow);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== SEÇÃO CONTATO ===== */
.contact {
    padding: 80px 20px;
    background: var(--pure-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-yellow);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    color: var(--dark-black);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.submit-button {
    background: var(--primary-yellow);
    color: var(--dark-black);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-black);
    color: var(--pure-white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.footer-section p {
    color: #CCCCCC;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--dark-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--pure-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 2px solid var(--primary-yellow);
    padding-top: 20px;
    text-align: center;
    color: #CCCCCC;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-black);
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .placeholder-image {
        height: 300px;
        font-size: 80px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .partners-grid,
    .instructors-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-content h3 {
        font-size: 22px;
    }

    .modal-content p {
        font-size: 14px;
    }

    .close {
        font-size: 24px;
    }

    .logo-container {
        gap: 10px;
    }

    .brand-text h1 {
        font-size: 18px;
    }

    .brand-text p {
        font-size: 10px;
    }

    .logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .service-card,
    .partner-card,
    .instructor-card {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
}

.zap-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3ef05;
  color: rgb(57, 199, 21);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: 0.3s;
}

.zap-btn:hover {
  background: #1ebe5b;
}

.localizacao {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.03);
}

.localizacao .section-title {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 15px;
 color: #61615ec4;
 text-transform: uppercase;
 white-space: nowrap; 
 overflow: hidden;
 text-overflow: ellipsis;
}


.loc {
  width: 30px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.map-container {
  max-width: 1200px;
  margin: 40px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(190, 255, 27, 0.3);
}