* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #333;
}

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

h1, h2, h3 {
    font-family: "Playfair Display", serif;
    color: #000;
    font-style: normal;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

p {
    color: #333;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider,
.hero-slide,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    z-index: 1;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    width: 90%;
    max-width: 500px;
    height: auto;
    margin-bottom: 30px;
    filter: brightness(1.1);
}

.hero-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 4;
}

@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

main {
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 40px auto;
    max-width: 800px;
}

.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section p {
    font-size: 1.1rem;
    color: #555;
}

.services-section {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
}

.contact-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.whatsapp {
    background: #128C7E;
    color: #fff;
}

.cta-button.whatsapp:hover {
    background: #0d6e5f;
}

.cta-button.instagram {
    background: #833AB4;
    color: #fff;
}

.cta-button.instagram:hover {
    background: #6a2d91;
}

footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    color: #ccc;
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-logo {
        width: 80%;
        max-width: 350px;
    }

    .hero-text {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

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

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .about-photographer {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-photographer > div {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 0.9rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .about-photographer {
        gap: 1.5rem;
    }
    
    .about-text {
        padding: 1.5rem !important;
    }
}
