* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    display: flex;
    justify-content: center; 
    align-items: center;     
    min-height: 100vh;        
    padding: 20px;          
    box-sizing: border-box;   
}

#imagemLogo{
    margin-top: 60px;
    width: 200px;
    height: 150px;
}

#depoimentos, #associe-se, #sobre-nos {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    text-align: center;      
}

section#depoimentos,
section#associe-se,
section#sobre-nos {
    min-height: 100vh;  
}

section p, section h2, section h3, section ul {
    margin: 0;  
    padding: 0;
}

section#depoimentos,
section#associe-se,
section#sobre-nos {
    margin-bottom: 20px;
}

.desktop-nav
{
    color: white;
}

.desktop-nav ul li a.active {
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #111143;
    color: white;
}

.btn-primary:hover {
    background-color: #1b1b70;
}

.btn-secondary {
    background-color: white;
    color: #111143;
    border: 1px solid #111143;
}

.btn-secondary:hover {
    background-color: #f0f9ff;
}

.btn-outline {
    background-color: rgba(246, 191, 26, 0.1);
    color: white;
    border: 1px solid #F6BF1A;
}

.btn-outline:hover {
    background-color: rgba(246, 191, 26, 0.8);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.text-primary {
    color: #111143;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.p-6 {
    padding: 1.5rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.w-full {
    width: 100%;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.bg-white {
    background-color: white;
}

.bg-primary {
    background-color: #111143;
}

.bg-muted {
    background-color: #f5f5f5;
}

.bg-primary-light {
    background-color: rgba(26, 140, 186, 0.1);
}

.text-white {
    color: white;
}

.text-brown
{
    color: #a94b00;
}

.text-prata
{
    color: silver;
}

.text-dourado
{
    color: gold;
}

.text-muted {
    color: #6b7280;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    border-bottom: 1px solid #111143;
    background-color: #111143;
    backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0.5rem 1rem;
  height: 70px;
  width: 100%;
  box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav a {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: grey;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: white;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    z-index: -1;
}


.hero-content {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
}
/* Catálogo Section */
.card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-img {
    height: 12rem;
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1;
    height: 36px;
    width: 36px;
    border-radius: 50%;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

/* Depoimentos Section */
.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.stars {
    display: flex;
    margin-top: 1rem;
}

.star {
    color: #fbbf24;
    margin-right: 0.25rem;
}

.star-empty {
    color: #d1d5db;
}

/* Associe-se Section */
.benefits-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    flex-shrink: 0; 
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: #111143; 
    font-size: 1rem; 
}


form, .form-container {
    width: 100%;
    max-width: 100%;
}

.form-group {
    width: 100%;
    padding: 0 1rem;
}

input,
textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
}

textarea {
    min-height: 6rem;
    resize: vertical;
}

/* Sobre Nós Section */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(26, 140, 186, 0.1);
    color: #F6BF1A;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F6BF1A;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #6b7280;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #F6BF1A;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

#contato {
    display: block;
    padding: 0 1rem 1rem 1rem;
    min-height: auto;
}

#contato input,
#contato textarea {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 0.75rem;
    box-sizing: border-box;
}

#contato .form-group {
    width: 100%;
    margin-bottom: 1rem;
}

.contact-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.border-color-bronze
{
    border: 1px solid #a94b00;
}

.border-color-prata
{
    border: 1px solid silver;
}
.border-color-ouro
{
    border: 1px solid gold;
}

/* Responsividade */
@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    section {
        flex-direction: column;
        min-height: auto;
        padding: 1.5rem 1rem;

    input,
    textarea {
        font-size: 0.875rem;
        padding: 0.5rem;
    }
}

}

@media (min-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .desktop-nav, .desktop-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .py-24 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Responsivo para telas de 375px ou menores */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    .card-img {
        height: 8rem;
    }

    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsivo para telas de 320px ou menores */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.875rem;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .testimonial-header {
        gap: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 1rem;
    }
}

/* Reforço para tablets (até 768px) */
@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-list {
        align-items: center;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
