body {
    overflow: hidden; 
    margin: 0;
}
.secciongeneral {
height: 100vh;
}
.columnascontent {}
.cols {
    display: flex;
    flex-direction: row;
}

/*
.col-a {
    background-color: black;
    min-width: 50%;
    text-align: center;
    color: white;
    height: 100vh;
}
.col-b {
    background-color: red;
    min-width: 50%;
    text-align: center;
    color: white;
    height: 100vh;
}*/


.col-a, .col-b {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex: 1; /* Establece la flexibilidad del elemento */
    text-align: center;
     height: 100vh;
}

.col-a, .col-b {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.col-b {
    background-image: url("../media/backgrounds/background-ad.png");
}

.col-a {
    background-image: url("../media/backgrounds/background-ac-light.png");
}


.logo-c img,
.logo-d img {
	height: 120px;
    /*max-width: 50%;*/
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    
}

.btn {
 background-color: transparent;
    color: #242c38;
    text-transform: uppercase;
            border: 2px solid #242c38;
            border-radius: 20px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            text-decoration: none;
            display: inline-block;
            font-family: roboto, sans-serif;
}

.btn:hover {
    background-color: #242c38;
    color: white; 
}

.btn a{
    text-decoration: none;
}



.btn-2 {
 background-color: transparent;
    color: white;
    text-transform: uppercase;
            border: 2px solid white;
            border-radius: 20px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            text-decoration: none;
            display: inline-block;
            font-family: roboto, sans-serif;
}

.btn-2:hover {
    background-color: white;
    color: #1e3a8a; /* Azul oscuro */
}

.btn-2 a{
    text-decoration: none;
}


@media only screen and (max-width: 830px) {
    
.logo-c img,
.logo-d img {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    
}

@media only screen and (max-width: 500px) {
    
.logo-c img,
.logo-d img {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    
}


 }







