* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 15px;
}

.profile-card {
    background: #2a2a2a;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.profile-slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.profile-img.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.profile-img.prev {
    transform: translateX(-100%) scale(0.95);
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #e91e63;
}

.control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.control-btn.prev {
    left: 10px;
}

.control-btn.next {
    right: 10px;
}

.profile-header {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 5px;
}

.tagline {
    font-size: 16px;
    color: #bbbbbb;
    font-style: italic;
}

.profile-info {
    padding: 20px;
    text-align: left;
    background: #333333;
}

.profile-info p {
    font-size: 16px;
    color: #ffffff;
    margin: 12px 0;
}

.profile-info strong {
    color: #e91e63;
    font-weight: 600;
}

.profile-actions {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.btn {
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    color: white;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.whatsapp {
    background: #25D366;
}

.btn.whatsapp:hover {
    background: #20b358;
}

.btn.mail {
    background: #1E90FF;
}

.btn.mail:hover {
    background: #1c86e6;
}

.btn.instagram {
    background: #C13584;
}

.btn.instagram:hover {
    background: #ad2f77;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .profile-slider {
        height: 300px;
    }

    h1 {
        font-size: 24px;
    }

    .tagline {
        font-size: 14px;
    }

    .profile-info p {
        font-size: 14px;
    }

    .btn {
        padding: 10px;
        font-size: 14px;
    }

    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .container {
        max-width: 600px;
    }

    .profile-slider {
        height: 450px;
    }
}