/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alexandria', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: #003350;
}

h1 {
    font-size: 50px;
    color: #FFFFFF;
    line-height: 120%;
}

h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background-color: #FFCC29;
    margin: 15px auto;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: #6B6B6B;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button, .btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 34px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 20px;
}

.btn svg {
    margin-right: 10px;
}

.btn.full {
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: #00C807;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #00A040;
}

.btn-secondary {
    background-color: #003754;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #002233;
}

.btn-yellow {
    background-color: #FFD700;
    color: #003350;
    border: none;
}

.btn-yellow:hover {
    background-color: #FFCC00;
}

.area-center {
    text-align: center;
    padding-top: 20px;
}

.section {
    padding: 60px 20px;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 32px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background-color: #FFCC29;
    margin: 15px 0;
}

/* HEADER */
header {
    background-color: #003350;
    padding:15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: solid 13px #FFCC29;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    padding-top: 15px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}

nav a:hover {
    color: #FFD700;
}

/* HERO */
.hero {
    background: url(img/bg-hero.png) no-repeat center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.hero p {
    font-size: 30px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #FFFFFF;
    font-weight: 200;
    line-height: 120%;
}

/* SOBRE */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    font-weight: 300;
}

@media (min-width: 768px) {
    .about-content {
    flex-direction: row;
    align-items: center;
    }

    .about-text {
    flex: 1;
    }

    .about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid #FFD700;
    }
}

/* OFERTAS */
.offers {
    background-color: #FFD700;
    text-align: center;
}

.offers h4 {
    margin: 10px 0 30px 0;
    font-weight: 500;
}

.offer-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.discount-badge {
    background: #FF4E4E;
    color: white;
    padding: 8px 40px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ribbon {
    margin:5px auto 10px auto;
    display: inline-block;
}

/* MARCAS */
.brands {
    background-color: white;
}

.brands h4 {
    color: #6B6B6B;
    font-weight: 300;
    line-height: 140%;
    font-size: 18px;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.brand-placeholder {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOJA */
.store {
    background-color: #f9f9f9;
}

.store .section-title {
    text-align: center;
}

.store .section-title::after {
    margin: 10px auto 0 auto;
}

.store-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {

    .header-container {
        justify-content: space-between;
    }

    .hero {
        height: 603px;
    }

    .store-content {
    flex-direction: row;
    }

    .map-placeholder {
    flex: 2;
    }

    .info-cards {
    flex: 1;
    }

    .brands-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    margin-top: 30px;
    }
    .brands-grid > :nth-child(-n+4) {
    grid-column: span 3;
    }

    .brands-grid > :nth-child(5) {
    grid-column: 3 / span 3;
    }
    .brands-grid > :nth-child(6) {
    grid-column: 6 / span 3;
    }
    .brands-grid > :nth-child(7) {
    grid-column: 9 / span 3;
    }

    .brands h4 {
        max-width: 70%;
    }
}

.map-placeholder {
    border-radius: 10px;

}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.info-card .icon img {
    min-width: 55px;
    margin-right: 15px;
}

.info-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-card p {
    font-weight: 300;
}

/* FOOTER */
footer {
    background-color: #003350;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .footer-content {
    flex-direction: row;
    justify-content: space-between;
    }
}

.footer-section h3 {
    color: #FFCC29;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.footer-section p {
    color: #FFFFFF;
    line-height: 130%;
    font-weight: 300;
}

.footer-section p svg {
    margin-bottom: -3px;
    margin-right: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 0.95rem;
}

.contact-item span {
    font-weight: 300;
}

.contact-item svg {
    width: 20px;
    text-align: center;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #FFCC29;
    font-size: 0.85rem;
    color: #FFFFFF;
    text-align: center;
    font-weight: 200;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    .menu-toggle {
    display: flex;
    }

    nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #003350;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    }

    nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    }

    nav ul {
    flex-direction: column;
    width: 100%;
    }

    nav li {
    margin: 12px 0;
    }

    .store-content,
    .about-content {
    flex-direction: column;
    }
}
