@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-repeat: no-repeat;
    background: linear-gradient(180deg, #012e40 10%, #011c26 50%, #00080d 100%);
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.background-layers {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 164px 164px;
    width: 100%;
    height: 100%;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.hero-section {
    background-image: url("../assets/code.jpg"),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 70%,
            rgba(0, 0, 0, 0.8) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100dvh;
}

header {
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 24px;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.desktop-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.desktop-menu li {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 0.5rem 0.8rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.desktop-menu li a:hover {
    opacity: 0.5;
}

.desktop-menu li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 40, 0.9);
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    min-width: 160px;
    z-index: 100;
}

.desktop-menu li.has-submenu:hover .submenu {
    display: block;
}

.desktop-menu li .submenu li {
    display: block;
    width: 100%;
}

.desktop-menu li .submenu li a {
    padding: 0.5rem 1rem;
    color: white;
    white-space: nowrap;
}

desktop-menu li .submenu li a:hover {
    opacity: 0.5;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #011c26;
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 20px 20px;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .logo {
    position: absolute;
    top: 24px;
    left: 20px;
    z-index: 1001;
}

.mobile-menu-overlay.active .logo {
    opacity: 1;
}

.mobile-menu-overlay.active .logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.mobile-menu-overlay .logo i {
    font-size: 24px;
}

.mobile-menu-overlay .logo h1 {
    font-size: 24px;
}

.mobile-menu-content {
    margin: 0 auto;
}

.mobile-menu-section,
.mobile-menu-single {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-section,
.mobile-menu-overlay.active .mobile-menu-single {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-section:nth-child(1),
.mobile-menu-overlay.active .mobile-menu-single:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu-overlay.active .mobile-menu-section:nth-child(2),
.mobile-menu-overlay.active .mobile-menu-single:nth-child(2) {
    transition-delay: 0.06s;
}

.mobile-menu-overlay.active .mobile-menu-section:nth-child(3),
.mobile-menu-overlay.active .mobile-menu-single:nth-child(3) {
    transition-delay: 0.07s;
}

.mobile-menu-overlay.active .mobile-menu-section:nth-child(4),
.mobile-menu-overlay.active .mobile-menu-single:nth-child(4) {
    transition-delay: 0.08s;
}

.mobile-menu-section h3 {
    color: white;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: normal;
}

.mobile-menu-section h3 i {
    transition: transform 0.3s ease;
    padding: 10px;
}

.mobile-menu-section.expanded h3 i {
    transform: rotate(180deg);
}

.mobile-menu-items {
    display: none;
    padding-top: 10px;
    list-style: none;
}

.mobile-menu-section.expanded .mobile-menu-items {
    display: block;
}

.mobile-menu-items a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-menu-items a:hover,
.mobile-menu-section h3:hover {
    color: white;
    padding-left: 5px;
    opacity: 0.5;
}

.mobile-menu-single a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-single a:hover {
    padding-left: 5px;
    opacity: 0.5;
}

.profile {
    width: 160px;
    height: auto;
    display: block;
    background: transparent;
    color: #fff;
    border: 1px solid #ffffff61;
    border-radius: 15px;
    box-shadow: 0px 0px 7px #a5a8b496;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

.profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.6s;
}

.profile:hover {
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 10px #a5a8b4cc;
}

.profile:hover::before {
    left: 100%;
}

.profile:active {
    transform: translateY(1px);
    box-shadow: 0px 0px 5px #a5a8b496;
}

.mobile-profile {
    margin-top: 40px;
    text-align: center;
}

.mobile-profile .profile {
    width: 100%;
    max-width: 300px;
}

.central_start {
    padding: 0 50px;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* svg{
        max-width: 70px;
        max-height: 70px;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #012e40 5%, #011c26 30%, #00080d 100%);
        padding: 15px;
        border-radius: 24px;
        margin: 0 auto 1rem auto;
        box-shadow: 0 0 14px 4px rgba(0, 0, 0, 0.3);
    } */
}

.developers {
    line-height: 1;
    text-wrap: balance;
    font-size: clamp(1.5rem, 6vw, 3.5rem);
    background: linear-gradient(to top, #ffffff, #b5b7ba, #6b7280);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text {
    font-size: 1.1rem;
    color: #fafafa;
    max-width: 600px;
    margin-bottom: 40px;
    color: #9ca3af;
}

.button_start {
    background: transparent;
    color: #fff;
    border: 1px solid #ffffff61;
    border-radius: 15px;
    box-shadow: 0px 0px 7px #a5a8b496;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    padding: 10px 50px;
}

.button_start::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.6s;
}

.button_start:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.button_start:hover::before {
    left: 100%;
}

.button_start:active {
    transform: translateY(1px);
    box-shadow: 0px 0px 5px #a5a8b496;
}

.button_start a {
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services {
    position: relative;
    top: 5px;
    left: -10px;
    margin-bottom: 1rem;
    color: #9ca3af;
    display: inline-block;
    transition: all 0.3s ease;
}

.services:hover {
    color: #fafafa;
    scale: 1.05;
}

@media (max-width: 768px) {
    .text {
        font-size: 0.95rem;
    }

    .button_start {
        width: 100%;
        max-width: 300px;
        align-self: center;
        align-content: center;
        align-items: center;
    }
}

.terminal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.description {
    color: #fafafa;
    position: relative;
    margin: 40px auto;
    text-align: center;
}

.description h2 {
    font-size: 42px;
    font-weight: 800;
    font-style: italic;
    color: #fafafa;
    text-align: center;
    margin-bottom: 25px;
    text-wrap: balance;
}

.description p {
    max-width: 656px;
    margin: 0 auto;
    height: auto;
    color: #9ca3af;
    text-align: center;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    margin: auto;
    height: 550px;
    background: #011c26;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.terminal::-webkit-scrollbar {
    width: 10px;
}

.terminal::-webkit-scrollbar-track {
    border-radius: 10px;
}

.terminal::-webkit-scrollbar-thumb {
    background: #3a3a3a63;
    border-radius: 10px;
}

.terminal::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a63;
}

.terminal-header {
    background: #073f56;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #00b6ff;
}

.terminal-buttons {
    display: flex;
    margin-right: 15px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.close {
    background: #ff5f56;
}

.minimize {
    background: #ffbd2e;
}

.maximize {
    background: #27c93f;
}

.terminal-title {
    color: #ddd;
    font-size: 14px;
}

.terminal-output {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    color: #fafafa;
    font-size: 18px;
    line-height: 1.5;
}

.terminal-input-line {
    display: flex;
    padding: 10px;
    border-top: 1px solid #333;
}

.prompt {
    color: #00b6ff;
    margin-right: 8px;
    font-weight: bold;
}

#terminal-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #b5b7ba;
    font-size: 14px;
}

#terminal-input::placeholder {
    font-size: 16px;
}

.output-line {
    margin-bottom: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.command-line {
    margin-bottom: 10px;
}

.command-prompt {
    color: #00b6ff;
    font-weight: bold;
}

.command-text {
    margin-left: 8px;
}

.welcome-message {
    color: #77ff77;
    margin-bottom: 15px;
}

.user-info {
    margin-top: 10px;
}

.info-header {
    color: #00b6ff;
    font-weight: bold;
    margin-bottom: 5px;
    border-bottom: 1px solid #444;
    padding-bottom: 3px;
}

.info-section {
    margin-left: 15px;
    margin-bottom: 10px;
}

.error-message {
    color: #ff6b6b;
}

.thought {
    text-align: center;
}

.thought_info {
    margin: 40px;
    padding: auto 40px;
    font-size: 45px;
    color: #fff;
}

.thought_developed {
    font-size: 20px;
    color: #9ca3af;
    text-align: center;
}

.circles {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 40px;
    width: 200px;
    background-color: #073f56;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.circle1,
.circle2,
.circle3,
.circle4 {
    height: 30px;
    width: 30px;
    background-color: #d9d9d9;
    border-radius: 50%;
    margin: 1px;
    box-shadow: 0 0 10px rgba(0, 182, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url("../assets/c5c09e66-44e4-4554-9e4d-a4c83749b3a8.jpeg");
    background-size: cover;
    background-position: center;
}

.circle4 {
    background-image: url("../assets/mateo.jpeg");
}

.circle1:hover,
.circle2:hover,
.circle3:hover,
.circle4:hover {
    transform: translateX(50);
    transform: scale(3);
    box-shadow: 0 0 15px rgba(0, 182, 255, 0.8);
}

.us {
    color: #fff;
    text-decoration: none;
}

.promotion {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("../assets/promotion.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fafafa;
    width: 100%;
    margin-top: 50px;
}

.promotion h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-wrap: balance;
    text-align: center;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.btn {
    background: #0003;
    color: #fff;
    border: 1px solid #ffffff61;
    border-radius: 15px;
    box-shadow: 0 0 7px #a5a8b496;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
    width: 200px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.6s;
}

.btn:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 0 5px #a5a8b496;
}

.btn-primary {
    color: white;
}

.btn-secondary {
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #011c26 0%, #00080d 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #012e40;
    border-radius: 10px;
    border: 2px solid #00080d;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #01475f;
}

* {
    scrollbar-color: #012e40 #00080d;
}

.suggestions {
    margin-bottom: 120px;
    padding-top: 8%;
    color: white;
    font-size: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.suggestions h4 {
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #ffffff, #cccccc, #ffffff);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 4s ease infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

details {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #fff;
    width: 40%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transition: all 0.5s ease;
}

details:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
}

details:hover::before {
    left: 100%;
}

details[open] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);

}

summary {
    list-style: none;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

summary::-webkit-details-marker {
    display: none;
}

.summary-text {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

summary span {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
}

details:hover summary span {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

details[open] summary span {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.25);
    color: #000000;
}

details p {
    padding: 0 20px 20px 20px;
    margin: 0;
    font-style: normal;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

details[open] p {
    opacity: 1;
    max-height: 200px;
    padding: 10px 20px 20px 20px;
    animation: fadeInUp 0.4s ease forwards;
}

.foooter {
    font-style: italic;
    margin-top: 100px;
}

.content-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.title-footer {
    font-size: 14rem;
    color: #b5b7ba;
    text-align: center;
}

.footer-contact {
    font-size: 20px;
}

.footer-contact p {
    color: #b5b7ba;
    font-size: 20px;
    margin: 10px 0;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 25px;
    text-align: left;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    text-align: start;
}

.footer-contact ul li:first-child {
    text-decoration: underline;
    color: #b5b7ba;
}

.footer-links ul li a, 
.footer-contact ul li a {
    text-decoration: none;
    color: #b5b7ba;
    font-size: 17px;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    color: #615e5e44;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.603);
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-5px) rotate(1deg);
    }
}

@media (max-width: 1054px) {
    .title-footer {
        flex-basis: 100%;
    }
}

@media (max-width: 1024px) {
    .title-footer {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    .suggestions {
        padding-top: 10%;
        font-size: 32px;
    }

    details {
        width: 85%;
        font-size: 18px;
    }

    summary {
        padding: 12px 16px;
        font-size: 1em;
    }

    .summary-text {
        padding: 0 15px;
    }

    details p {
        padding: 0 16px 16px 16px;
        font-size: 15px;
    }

    details[open] p {
        padding: 8px 16px 16px 16px;
    }

    .content-footer {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .profile {
        display: none;
    }

    .mobile-profile>.profile {
        display: block;
        margin: auto;
    }

    nav {
        justify-content: space-between;
    }

    .central_start {
        flex-direction: column;
        justify-content: center;
    }

    nav ul {
        justify-content: center;
        padding: 10px 0;
    }

    .button_start {
        margin-top: 50px;
        left: 0;
    }

    .services {
        left: 0;
    }

    .description h2 {
        font-size: 2rem;
    }

    .container {
        width: 100%;
    }

    .thought_info {
        font-size: 2rem;
    }

    .thought_developed {
        font-size: 1.2rem;
    }

    .promotion h2 {
        font-size: 2rem;
    }

    details {
        font-size: 1rem;
    }

    summary {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 16px;
        padding: 0.5rem;
        text-align: center;
    }

    .profile {
        width: 120px;
        padding: 8px 15px;
        font-size: 14px;
    }

    .central_start {
        padding: 0 20px;
    }

    .thought_info {
        margin: 40px auto;
    }

    .developers {
        font-size: 1.8rem;
    }

    .button_start {
        width: 150px;
        padding: 8px 20px;
        font-size: 1rem;
        margin-top: 30px;
    }

    .btn {
        font-size: 1rem;
        width: 150px;
    }

    .services {
        left: 0;
        font-size: 0.8rem;
    }

    .buttons {
        flex-direction: column;
    }

    .content-footer {
        gap: 20px;
        margin-bottom: 50px;
    }

    .title-footer {
        font-size: 8.5rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.4rem;
    }

    .footer-links ul li a,
    .footer-contact p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .suggestions {
        font-size: 28px;
        padding-top: 12%;
    }

    details {
        width: 92%;
        margin-top: 20px;
    }

    .footer-links ul {
        padding: 0;
    }

    .title-footer {
        font-size: 6rem;
    }
}

