* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #1e3a8a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Carousel Section */
.carousel-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.carousel-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(30, 58, 138, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(30, 58, 138, 0.9);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #1e3a8a;
}

/* Sobre */
.sobre {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.sobre h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #1e3a8a;
}

.sobre-text ul {
    list-style: none;
    margin-top: 2rem;
}

.sobre-text li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #1e3a8a;
    border-bottom: 1px solid #e2e8f0;
}

/* Produtos */
.produtos {
    padding: 4rem 0;
    background-color: #ffffff;
}

.produtos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.produto-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #1e3a8a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
}

.produto-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.produto-card > p {
    color: #1e40af;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.produto-card ul {
    list-style: none;
}

.produto-card li {
    padding: 0.5rem 0;
    color: #1e3a8a;
    border-bottom: 1px solid #e2e8f0;
}

.produto-card li:before {
    content: "✓ ";
    color: #1e40af;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Depoimentos */
.depoimentos {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.depoimentos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #1e3a8a;
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.depoimento-texto {
    font-style: italic;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.depoimento-autor {
    color: #1e40af;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contato */
.contato {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contato h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.contato > .container > p {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contato-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid #1e3a8a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: #1e3a8a;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.btn-enviar {
    width: 100%;
    padding: 1rem;
    background-color: #1e3a8a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-enviar:hover {
    background-color: #1e40af;
}

/* Footer */
.footer {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .carousel-container {
        height: 300px;
    }

    .carousel-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }

    .produtos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 1.5rem;
    }
}
