*{
    --verde:#56b39f;
    --verde-oscuro:rgb(83, 173, 154);
    --violeta:rgb(127,50,152);
    --blanco:rgb(245,230,245);
    --negro:rgb(65, 25, 85);
    font-family: 'Roboto','Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    letter-spacing: 1px;
    box-sizing: border-box;
}
body{
    background-color: var(--blanco);
    margin: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header{
    position: relative;
    background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde) 100%);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-right: 150px solid var(--violeta);
    border-bottom: 150px solid transparent;
    opacity: 0.4;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 120px solid var(--blanco);
    border-right: 120px solid transparent;
    opacity: 0.2;
}

.navbar {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.navbar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.navbar a:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.navbar img {
    width: 30px;
    height: 30px;
}

.header-content {
    text-align: center;
    z-index: 5;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header-text h2 {
    color: var(--violeta);
    font-size: 3rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Kanit','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
}

.header-content h3 {
    color: var(--violeta);
    font-size: 8rem;
    margin: 20px 0 0 0;
    opacity: 0.9;
    font-weight: 100;
}
.arrow::after{
    content: "";
    position: absolute;
    height: 16px;
    width: 3px;
    background-color: var(--violeta);
    transform: rotate(45deg);
    bottom: -1px;
    left: 6px;
}
.arrow::before{
    content: "";
    position: absolute;
    height: 16px;
    width: 3px;
    background-color: var(--violeta);
    transform: rotate(-45deg);
    bottom: -1px;
    left: -6px;
}

.main-content{
    display: grid;
    flex: 1;
    grid-template-columns: repeat(2,1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding: 50px 20px;
    align-content: start;
}
.pregunta{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    border-bottom: 3px solid var(--verde);
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pregunta:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.pregunta h2{
    font-weight: bold;
    font-style: italic;
    color: var(--negro);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.pregunta p{
    color: var(--negro);
    line-height: 1.6;
    margin: 0;
}
.precio-dolar{
    color: #00a650;
    background-color: var(--blanco);
}
.contacto{
    color: white;
    background-color: var(--violeta);
    padding: 6px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}
.contacto:hover{
    background-color: var(--negro);
}

@media (max-width:675px){
    .main-content{
        grid-template-columns: 1fr;
        padding: 30px 15px;
        gap: 20px;
    }
    .header{
        height: 280px;
    }
    .header-text h2{
        font-size: 2.2rem;
    }
    .header-content h3{
        font-size: 5rem;
        margin-top: 10px;
    }
    .pregunta{
        padding: 20px;
    }
    .pregunta h2{
        font-size: 1.2rem;
    }
}


