/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 0;
    color: #333;
}

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

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px 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: 44px;
    width: auto;
}

.whatsapp-btn {
    background: #1e4bd1;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1a3fb8;
}

.whatsapp-btn i {
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e4bd1;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #74409D;
    line-height: 1.7;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Portfolio Section */
.portfolio {
    background: #1e4bd1;
    padding: 80px 0;
    text-align: center;
}

.portfolio h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Plugins Section */
.plugins {
    display: flex;
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.plugins h2 {
    color: #1e4bd1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.plugins h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.plugins-container {
    display: flex;
    gap: 15px;
}

.plugins-content {
    max-width: 450px;
    display: flex;
    margin: auto;
    gap: 15px;
    padding: 10px;
    text-align: left;
}

.plugins-content img {
    width: 140px;
    height: 140px;
}

.plugins-content p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #74409D;
}
.btn {
    background: #1e4bd1;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    margin-top: 2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 500;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #1a3fb8;
}

.btn i {
    font-size: 1.2rem;
}
/* Services Section */
.services {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    color: #1e4bd1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.services-intro {
    font-size: 1.1rem;
    color: #74409D;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    text-align: left;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    color: #1e4bd1;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-item p {
    color: #74409D;
    line-height: 1.6;
}

/* About Section */


.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #74409D;
}

/* Contact Section */
.contact-container {
        display: flex; /* Transforma o contêiner em um flex container */
        flex-wrap: wrap; /* Permite que os itens quebrem a linha em telas menores */
        gap: 40px; /* Adiciona espaçamento entre as colunas */
        justify-content: space-between; /* Distribui o espaço entre os itens */
    }

    .contact-content-1,
    .contact-content-2 {
        flex: 1; /* Faz com que cada item ocupe um espaço igual disponível */
        min-width: 300px; /* Largura mínima antes de quebrar a linha */
        padding: 20px;
    }
.contact {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    color: #1e4bd1;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}
 .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centraliza os itens de contato */
    }
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}
.contact-item a{
    color: #74409D;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e4bd1;
}

.submit-btn {
    background: #1e4bd1;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: lowercase;
}

.submit-btn:hover {
    background: #1a3fb8;
}

/* Footer */
.footer {
    background: #1e4bd1;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .portfolio,
    .plugins,
    .services,
    .about,
    .contact {
        padding: 60px 0;
    }

    .portfolio h2,
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

.portfolio-item {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.service-item {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service-item:nth-child(6) {
    animation-delay: 0.6s;
}