:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --secondary-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #024089;
    --gray-color: #95a5a6;
    --white-color: #ffffff;
    --black-color: #333333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--black-color);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Header */
.header {

    background-color: #024089;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.navbar .menu {
    display: flex;
}

.navbar .menu li {
    margin-left: 30px;
    position: relative;
}

.navbar .menu li a {
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: #ffcc00;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    font-weight: 500;
}

.whatsapp-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    color: white;
}

.whatsapp-btn:hover{
    color: white;
}

.whatsapp-btn i {
    margin-right: 8px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsivo - Menu Mobile */
@media (max-width: 991px) {
  .menu-wrapper {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #024089;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

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

  .navbar .menu {
    flex-direction: column;
    width: 100%;
  }

  .navbar .menu li {
    margin: 15px 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .whatsapp-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    color: #ffffff;
  }
}


/* Hero Banner */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/luis-eduardo-magalhaes.jpg') no-repeat  center center /cover;
    height: 40vh;
    min-height: 800px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    padding-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    color:white;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color:white;
}

.cta-btn.secondary {
    background-color: transparent;
    border: 2px solid var(--white-color);
}

.cta-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-btn i {
    margin-right: 8px;
}

/* Destaques */
.destaques {
    padding: 60px 0;
    background-color: var(--light-color);
}

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

.destaque-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.destaque-item:hover {
    transform: translateY(-10px);
}

.destaque-item i {
    font-size: 40px;
    color: #ffcc00;
    margin-bottom: 20px;
}

.destaque-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.destaque-item p {
    color: var(--gray-color);
}

/* Seção de Equipamentos */
.equipamentos-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    margin: 15px auto;
}

.section-title2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-title2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    margin: 15px auto;
}

/* Subtítulo da Seção */
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

/* Botões de Categoria */
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #ffcc00;
    background-color: transparent;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: black;
}

.category-btn:hover {
    background-color: #ffcc00;
    color: var(--white-color);
}

.category-btn.active {
    background-color: #ffcc00;
    color: var(--white-color);
}


/* Cards de Equipamentos */
.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.equipamento-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
    text-align: center;
    transition: transform 0.3s ease;
}

.equipamento-card:hover {
    transform: translateY(-10px);
}

.equipamento-card img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.equipamento-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.equipamento-card .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.equipamento-card .whatsapp-btn i {
    margin-right: 8px;
}

.equipamento-card .whatsapp-btn:hover {
    background-color: var(--primary-dark);
}

/* Seção CTA */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-section .cta-btn {
    background-color: var(--white-color);
    color: var(--primary-dark);
    border: 2px solid transparent;
}

.cta-section .cta-btn:hover {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

/* Seção de Contato */
.contato-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contato-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 24px;
    color: #ffcc00;
    min-width: 30px;
}

.info-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-text p {
    margin: 0;
    color: var(--gray-color);
    font-size: 15px;
}

.horario-item {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.horario-item h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.horario-item p {
    color: var(--gray-color);
    font-size: 15px;
}

.contato-mapa iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .contato-content {
        flex-direction: row;
    }

    .contato-info, .contato-mapa {
        flex: 1;
    }
}


/* Footer */
.footer {
    background-color: #3d3d3c;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: #ffffff;
}

.footer-links,
.footer-contato {
    flex: 1;
}

.footer-links h3,
.footer-contato h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.footer-links ul,
.footer-contato ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contato ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
}

.footer-contato ul li a:hover {
    color: #ffffff;
}


.footer-links ul li a {
    color: #ffffff;
}

.footer-links ul li a:hover {
    color: #ffcc00;
}

.footer-contato ul li i {
    margin-right: 8px;
    color: #ffcc00;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

.social-links a {
    color: var(--white-color);
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffcc00;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-logo {
        flex: 1;
    }

    .footer-links,
    .footer-contato {
        flex: 1;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
