/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    color: #222;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f39c12;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

nav ul li a:hover {
    color: #f39c12;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f39c12;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://www.conciergerie.com.br/wp-content/uploads/2025/05/sjc-ponte-estaiada-noite.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 0;
    color: white;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color:white;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Destaques */
.destaques {
    padding: 80px 0;
    background-color: white;
}

.destaques-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.destaque-item {
    padding: 40px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.destaque-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: white;
}

.destaque-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.destaque-item i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 20px;
    display: block;
}

/* Serviços */
.servicos {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #f39c12;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.servico-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.servico-content {
    padding: 25px;
}

.servico-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.servico-link {
    color: #f39c12;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
}

.servico-link:hover {
    color: #e67e22;
    transform: translateX(5px);
}

/* Sobre Nós */
.sobre {
    padding: 80px 0;
    background-color: white;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sobre-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-content ul {
    list-style: none;
    margin-top: 20px;
}

.sobre-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.sobre-content ul li:before {
    content: '✓';
    color: #f39c12;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Projetos */
.projetos {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.projeto-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background-color: white;
}

.projeto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.projeto-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.projeto-content {
    padding: 20px;
}

.projeto-categoria {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.projeto-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.projeto-local {
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
    background-color: white;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eee;
}

.depoimento-card:before {
    content: '"';
    font-size: 5rem;
    color: #f39c12;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: Georgia, serif;
}

.depoimento-cliente {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.depoimento-categoria {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.stars {
    color: #f39c12;
    margin-top: 10px;
    font-size: 1.2rem;
    display: flex;
    gap: 3px;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Contato */
.contato {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #f39c12;
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #f39c12;
    bottom: 0;
    left: 0;
}

.info-item p {
    color: #555;
}

/* Rodapé */
footer {
    background-color: #1a252f;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #f39c12;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #f39c12;
    bottom: 0;
    left: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.footer-col ul li a:hover {
    color: #f39c12;
    transform: translateX(5px);
}

.newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #f39c12;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    color: #bbb;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: #2c3e50;
        transition: all 0.3s;
        z-index: 99;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        margin-top: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .destaques-container,
    .servicos-grid,
    .projetos-grid,
    .depoimentos-grid,
    .contato-container,
    .sobre-container {
        grid-template-columns: 1fr;
    }
    
    .sobre-img {
        order: -1;
    }
    
    .hero {
        padding: 100px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}