@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #f0f0f0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background-color: #000;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: "Italianno", cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    display: flex;
    flex-direction: column;
    line-height: 1.2;

}

.logo-text span {
    color: #71249e;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    margin-left: 5px;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #71249e;
}

/* Hero Section Modificada */
.hero {
    padding: 4rem 0;
    background-color: #000;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(173, 126, 200, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.hero-text {
    padding: 2rem;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #71249e;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ccc;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: #71249e;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn:hover {
    background: #71249e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(173, 126, 200, 0.3);
}

.btn i {
    margin-left: 0.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #71249e;
    margin: 0.5rem auto;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background: #111;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 3px solid #71249e;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: #71249e;
    margin-bottom: 1rem;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

/* Ajustes para o portfólio com 6 fotos */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    height: 280px;
    background: #111;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Contact */
.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: #71249e;
    margin-right: 0.5rem;
    width: 20px;
}

/* Map */
.map {
    height: 400px;
    background: #111;
    margin-bottom: 3rem;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #71249e;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        height: 400px;
        order: -1;
    }

    .hero-text {
        text-align: center;
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1.5rem;
    }

    nav ul li {
        margin: 0 0.5rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* Responsividade para o portfólio */
@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}


/* Para telas maiores */
@media (min-width: 768px) {
    .logo-text {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .logo-text span {
        margin-top: 0;
    }
}