* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-image: url("../images/Vector(1).svg");
    /* Caminho do seu SVG */
    background-size: cover;
    /* cobre a tela inteira */
    background-repeat: no-repeat;
    /* não repete */
    background-position: center;
    /* centraliza */
    background-attachment: fixed;
    /* efeito "parallax" */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container {
    display: flex;
    /* background-color: rgba(255, 255, 255, 0.95); */
    border-radius: 30px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
    padding: 60px;
    max-width: 1400px;
    width: 95%;
    gap: 80px;
}

/* Coluna Esquerda */
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-picture-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    border: 8px solid #f8f9fa;
}

.profile-picture {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.name-box {
    max-width: fit-content;
    background: linear-gradient(135deg, #c8ff00 0%, #b3ff00 100%);
    padding: 12px 30px;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(200, 255, 0, 0.3);
}

.name {
    margin: 0;
    font-size: 2.2em;
    color: #2c3e50;
    font-weight: 700;
}

.description {
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 80%;
}

.description p {
    margin: 8px 0;
    color: #5a6c7d;
    font-size: 1.1em;
    font-weight: 400;
}

.description span {
    font-weight: 800;
    font-size: 1.2em;
}

.bottom-phrase-box {
    max-width: fit-content;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.bottom-phrase {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
}

/* Coluna Direita com GRID */
.right-column {
    flex: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Instagram maior que WhatsApp */
    grid-template-rows: auto auto;
    align-content: center;
    gap: 20px;
    align-items: stretch;
}

.instagram-pessoal {
    grid-column: 1 / 2;
}

.whatsapp {
    cursor: pointer;
    grid-column: 2 / 3;
}

.instagram-profissional {
    margin-top: 4%;
    grid-column: 1 / 3;
}

/* Cards Base */
.card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 40px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 250px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Padrão no lado direito */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background-image: url("https://i.ibb.co/7tyctrdd/Pattern.png");
    background-repeat: repeat-y;
    background-size: cover;
    opacity: 0.8;
    border-radius: 0 20px 20px 0;
    z-index: 0;
}

.card>* {
    position: relative;
    z-index: 1;
}

.icon {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}

/* Instagram Titles */
.instagram-pessoal .card-title1,
.instagram-profissional .card-title {
    background: linear-gradient(45deg, #ff8a00 0%, #e52e71 50%, #8b3dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-title1 {
    font-size: 1.7em;
    max-width: min-content;
    font-weight: 700;
    margin-bottom: 8px;
}

.tittle-prof {
    font-size: 2.2em;
}

.username {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 1em;
    font-weight: 500;
}

.button {
    max-width: fit-content;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.button:hover {
    background: linear-gradient(135deg, #357abd 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.button i {
    width: 18px;
    height: 18px;
}

.button svg {
    margin-left: 5px;
}

/* WhatsApp Card */
.whatsapp {
    padding: 45px 30px !important;
    /* max-width: 85%; */
    background: #00D64F;
    color: #fff;
}

.whatsapp::after {
    display: none;
}

.whatsapp .card-title {
    color: #fff;
    font-size: 2em;
}

.whatsapp .subtext {
    font-size: 1em;
    margin: 0;
    color: #e8f5e8;
}

.whatsapp .icon {
    width: 78px;
    height: 78px;
    margin-bottom: 40px;
}

.corner-icon {
    position: absolute;
    top: 8%;
    right: 8%;
    width: 20px;
    /* tamanho fixo */
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    /* círculo com leve contraste */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    /* rotate: 0deg; não precisa mais girar */
    rotate: -45deg;
}

.corner-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    /* seta branca */
    stroke-width: 2.5;
}

/* =========================
RESPONSIVIDADE
   ========================= */

/* Tablet médio e notebooks pequenos */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        padding: 50px 40px;
        /* mais margem nas bordas */
        gap: 45px;
        max-width: 900px;
    }
    .card-title1{
        max-width: 100%;
        font-size: 2.2em;
    }

    .right-column {
        grid-template-columns: 1fr;
        /* força cards em coluna */
    }

    .instagram-profissional {
        grid-column: 1;
    }
}

/* Tablets menores e celulares grandes */
@media (max-width: 768px) {
    .container {
        padding: 45px 35px;
        /* margem maior ainda */
        gap: 35px;
    }

    .profile-picture-container {
        width: 140px;
        height: 140px;
        margin: 0 auto 20px auto;
        /* centralizar */
    }

    .name-box {
        margin: 0 auto 20px auto;
    }

        .card-title1{
        max-width: 100%;
        font-size: 2.2em;
    }
    .whatsapp .icon{
        margin-bottom: 10px;
    }

    .name {
        font-size: 1.8em;
        text-align: center;
    }

    .description {
        max-width: 100%;
        font-size: 1em;
        text-align: center;
    }

    .bottom-phrase-box {
        margin: 0 auto;
        text-align: center;
    }

    .right-column {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .card {
        padding: 30px;
        text-align: center;
        align-items: center;
    }

    .button {
        margin: 0 auto;
    }

    .corner-icon {
        top: 5%;
        right: 5%;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    body {
        align-items: center;
    }

    .container {
        padding: 40px 25px;
        /* bastante respiro nas laterais */
        gap: 30px;
    }
    .card-title1{
        max-width: 100%;
        font-size: 2.2em;
    }

        .whatsapp .icon{
        margin-bottom: 10px;
    }
    .name {
        font-size: 1.5em;
    }

    .description {
        font-size: 0.95em;
    }

    .card {
        border-radius: 25px;
        padding: 25px;
        max-height: none;
        text-align: center;
        align-items: center;
    }

    .button {
        width: 100%;
        justify-content: center;
    }

    .whatsapp .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
}

/* Animação genérica */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Coluna esquerda */
.left-column {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

/* Cards da direita em sequência */
.right-column .card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.right-column .card:nth-child(1) {
  animation-delay: 0.6s;
}

.right-column .card:nth-child(2) {
  animation-delay: 0.9s;
}

.right-column .card:nth-child(3) {
  animation-delay: 1.2s;
}
