@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');
* {
    margin: 0;
    padding: 0;    
    box-sizing: border-box;
}

main {
    margin-left: 9%;
    margin-right: 9%;
}

a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

.logo {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-weight: bold;
    background: rgba(105, 50, 152, 1);
    height: 8vh;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    letter-spacing: 3px;
    margin-right: 45px;
}

.titulo-principal {
   font-family: "Sofia Sans Extra Condensed", sans-serif;
   color: #202020;
   font-weight: bold;
   font-size: 5rem;
   line-height: 1.2;
   text-align: center;
   margin-top: 2%;
}

.bubble-section {
    display: flex;
    align-items: center;
    gap: 8%; 
    padding: 20px;
}

.bubble-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bubble1 { width: 260px; height: 260px; }
.bubble2 { width: 310px; height: 310px; }
.bubble3 { width: 220px; height: 220px; }

.bubble-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: justify;
    font-family: "Sofia Sans Condensed", sans-serif;
    text-indent: 30px;
}

.bubble:hover {
    transform: scale(1.2) translateY(-10px);
    z-index: 10;
}

@keyframes floatBubble {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(0px) translateX(0px); }
    75% { transform: translateY(-5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.bubble1 { animation: floatBubble 6s ease-in-out infinite; }
.bubble2 { animation: floatBubble 8s ease-in-out infinite; }
.bubble3 { animation: floatBubble 7s ease-in-out infinite; }

footer {
    background: rgba(94, 94, 94, 1);
    padding: 20px 40px;
    color: white;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    margin-top: -4px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 9%;
    margin-right: 9%;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    margin-right: 15px;
    background-image: url("../img/mariana\ sem\ fundo\ -\ Copia.png");
    background-size: cover;
    background-position: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-name {
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.footer-links li a {
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover {
    opacity: 0.7;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social.github i {
  color: #333; 
}

.social.instagram i {
  color: #E1306C; 
}

.social.linkedin i {
  color: #0077b5; 
}

.social.email i {
  color: #fbbc05; 
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social:hover {
    transform: scale(1.15);
    background: #d6d6d6;
}
