/* Estilos Gerais */
body {
    font-family: 'Montserrat', sans-serif; /* Sugestão de fonte mais moderna para design */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700; /* Negrito para títulos */
}

p {
    margin-bottom: 15px;
}

/* Botão Primário */
.btn-primary {
    display: inline-block;
    background-color: #FFA500; /* Laranja primário */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #CC8400; /* Laranja mais escuro para hover */
}

/* Cabeçalho (Header) */
.main-header {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 60px; /* Ajuste o tamanho do logo */
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.main-nav ul li a:hover {
    color: #FFA500; /* Laranja de destaque no hover */
}

/* Menu Hamburger (inicialmente oculto) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.contact-info {
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    margin-right: 5px;
    color: #FFA500; /* Laranja de destaque para os ícones */
}
.contact-info a {
    color: #fff;
    transition: color 0.3s ease;
}
.contact-info a:hover {
    color: #FFA500;
}

/* Seção Principal/Hero */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('368.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.1;

    opacity: 0;
    transform: translateY(-30px);
    animation: aparecer 1.2s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-content .subtitle {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #FFA500;
    font-weight: 500;

    opacity: 0;
    transform: translateY(20px);
    animation: aparecer 1s ease-out forwards;
    animation-delay: 1s;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;

    opacity: 0;
    transform: translateY(20px);
    animation: aparecer 1s ease-out forwards;
    animation-delay: 1.6s;
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seção de Destaques/Serviços */
.highlight-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.highlight-item {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #FFA500; /* Laranja de destaque na borda inferior */
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.highlight-item .icon-big {
    font-size: 3.5em;
    color: #FFA500; /* Laranja de destaque para os ícones */
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
}
.highlight-item p {
    font-size: 0.95em;
    color: #666;
}

/* Seção de Benefícios/Diferenciais (Sobre Mim) */
.benefits-section {
    position: relative;
    height: 500px;
    background: url('https://via.placeholder.com/1920x500/333/eee?text=Creative+Workspace') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
}

.benefits-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.benefits-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.benefits-content p {
    font-size: 1.15em;
    color: #eee;
}

/* Seção de Portfólio (Projetos) */
.projects-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.projects-section h2 {
    font-size: 3em;
    margin-bottom: 50px;
    color: #222;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.portfolio-item-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-item-link img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item-link:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    text-align: left;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.portfolio-item-link:hover .project-info {
    transform: translateY(0);
}

.project-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: #fff;
}

.project-info span {
    font-size: 0.85em;
    color: #bbb;
}

/* Seção de Depoimentos/Metodologia */
.quality-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.quality-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.quality-content h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #222;
}

.testimonial {
    font-size: 1.2em;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Rodapé (Footer) */
.main-footer {
    background-color: #222;
    color: #eee;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-grid h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-grid p {
    font-size: 0.9em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-grid p i {
    margin-right: 10px;
    color: #FFA500; /* Laranja de destaque para ícones do rodapé */
}
.footer-social p a {
    color: #eee;
    transition: color 0.3s ease;
}
.footer-social p a:hover {
    color: #FFA500;
}

.footer-logo img {
    height: 60px;
    display: block;
    margin: 0 auto;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 15px 0;
    text-align: center;
    font-size: 0.8em;
    color: #bbb;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1c1c1c;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    padding: 15px;
    width: 100%;
    max-width: 350px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.newsletter-form button {
    padding: 15px 25px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #333;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed; /* Fixa o botão na tela */
    width: 60px;
    height: 60px;
    bottom: 30px; /* Distância da parte inferior */
    right: 30px; /* Distância da parte direita */
    background-color: #25d366; /* Cor verde do WhatsApp */
    color: #FFF;
    border-radius: 50px; /* Deixa o botão redondo */
    text-align: center;
    font-size: 22px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Garante que o botão fique acima de tudo */
    display: flex; /* Para centralizar o ícone */
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1DA851; /* Tom um pouco mais escuro no hover */
    transform: scale(1.05); /* Pequena animação ao passar o mouse */
}

.whatsapp-icon {
    margin-top: 0; /* Ajuste para centralizar o ícone se necessário */
}

/* ========== MEDIA QUERIES - RESPONSIVIDADE ========== */

/* Tablets e telas menores */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 3.5em;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
}

/* Tablets Portrait */
@media (max-width: 768px) {
    /* Header responsivo */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-content {
        flex-wrap: nowrap;
    }
    
    .logo img {
        height: 50px;
    }
    
    /* Hero section */
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.8em;
    }
    
    .hero-content .subtitle {
        font-size: 1.2em;
    }
    
    .hero-content p {
        font-size: 1.1em;
    }
    
    /* Benefits section */
    .benefits-section {
        height: auto;
        padding: 60px 0;
    }
    
    .benefits-content h2 {
        font-size: 2.2em;
    }
    
    .benefits-content p {
        font-size: 1em;
    }
    
    /* Projects section */
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-section h2 {
        font-size: 2.2em;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    /* Highlights section */
    .highlight-section {
        padding: 60px 0;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-grid p {
        justify-content: center;
    }
    
    /* Newsletter */
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input[type="email"] {
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    .logo img {
        height: 40px;
    }
    
    /* Hero section */
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    
    .hero-content .subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    /* Benefits section */
    .benefits-content h2 {
        font-size: 1.8em;
    }
    
    .benefits-content p {
        font-size: 0.9em;
    }
    
    /* Projects section */
    .projects-section {
        padding: 40px 0;
    }
    
    .projects-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Highlights section */
    .highlight-section {
        padding: 40px 0;
    }
    
    .highlight-item {
        padding: 25px 15px;
    }
    
    .highlight-item .icon-big {
        font-size: 2.5em;
    }
    
    .highlight-item h3 {
        font-size: 1.2em;
    }
    
    /* Newsletter */
    .newsletter-section {
        padding: 40px 15px;
    }
    
    .newsletter-content h2 {
        font-size: 1.6rem;
    }
    
    .newsletter-content p {
        font-size: 0.95rem;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 18px;
    }
}

/* Smartphones muito pequenos */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .hero-content .subtitle {
        font-size: 0.9em;
    }
    
    .hero-content p {
        font-size: 0.85em;
    }
    
    .projects-section h2,
    .benefits-content h2 {
        font-size: 1.5em;
    }
    
    .newsletter-content h2 {
        font-size: 1.4rem;
    }
}

