/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f5f5f5;
    color: #333;
    padding-bottom: 70px; /* Space for fixed bottom bar */
}

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

/* Typography */
h1, h2, h3, h4 {
    color: #1a2a40; /* Brandão Dark Blue */
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* Topbar */
.topbar {
    background-color: #0b111a;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.topbar-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.1rem;
    text-decoration: none;
}

/* Header & Menu */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #0265ae; /* Brandão Blue */
}

/* Buttons */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1562564055-71e051d33c19?auto=format&fit=crop&w=1920&q=80'); /* Temporary generic print shop bg */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Numbers Section */
.numbers-section {
    background-color: #f7a800; /* Brandão Yellow */
    padding: 40px 0;
    color: #1a2a40;
}

.numbers-content {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.number-box {
    flex: 1;
    min-width: 250px;
}

.number-box span {
    font-size: 3.5rem;
    font-weight: 800;
}

.number-box p {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.service-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #0265ae; /* Brandão Blue */
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    margin-bottom: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card li i {
    color: #0265ae;
    font-size: 0.9rem;
}

/* Quem Somos */
.about {
    background-color: #0265ae;
    color: #fff;
    padding: 80px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.about h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Galeria */
.gallery {
    padding: 80px 0;
    background-color: #fff;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1;
    background-color: #eee; /* Placeholder bg */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 42, 64, 0.85);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-user span {
    font-size: 0.8rem;
    color: #888;
}

.stars {
    color: #FFC107;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0265ae;
    outline: none;
}

.form-row {
    display: flex;
    gap: 15px;
}

.col-ddd {
    flex: 1;
}

.col-phone {
    flex: 3;
}

.btn-submit {
    width: 100%;
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #128C7E;
}

/* Footer & Contato */
.footer {
    background-color: #1a2a40; /* Dark Blue */
    color: #fff;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 20px;
}

.footer-contact-box {
    flex: 1;
    min-width: 300px;
    background-color: #0b111a;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    margin-top: -100px; /* Overlap effect from PDF */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.footer-contact-box h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.icon-wrapper {
    background-color: #fff;
    color: #1a2a40;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-map {
    flex: 2;
    min-width: 300px;
    min-height: 400px;
    margin-left: -50px; /* Pull map under contact box */
}

.footer-bottom {
    background-color: #0b111a;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #888;
}

/* Fixed Bottom Action Bar */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
    z-index: 999;
}

.fixed-bottom-bar p {
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Media Queries */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
    }
    .footer-contact-box {
        margin-top: 0;
        margin-bottom: 30px;
    }
    .footer-map {
        margin-left: 0;
    }
    .fixed-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    body {
        padding-bottom: 110px;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none; /* Hide menu on mobile for simplicity, or implement hamburger */
    }
    .header-content {
        justify-content: space-between;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
