/**
* 2007-2021 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.dbhomefeatures {
    padding: 32px;
    background-color: #033730;
    border-radius: 8px;
    border: none;
    width: 100%;
    color: #fff;
    align-items: center;
}

.dbhomefeatures .dbhomefeatures_content {
    display: flex;
    align-items: flex-start !important;
    gap: 52px !important;
}

/* Columna de imagen izquierda */
.dbhomefeatures_img {
    width: 187px;
    height: 187px;
    object-fit: cover;
}

/* Contenido central */
.dbhomefeatures_left {
    flex: 1 1 0;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: flex-start;
}

.dbhomefeatures_left .title-before {
    font-family: Merriweather;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
}

.dbhomefeatures_left .title,
.dbhomefeatures_left .title p {
    text-align: start;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin: 0 !important;
    color: #ffffff !important;
}

.dbhomefeatures_left .subtitle,
.dbhomefeatures_left .subtitle p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #ffffff !important;
    margin: 0 !important;
}

.dbhomefeatures_left .btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
}

.dbhomefeatures_left .btn:hover {
    color: #9AB12B;
}

.dbhomefeatures_left .btn-primary:active,
.dbhomefeatures_left .btn-primary:focus {
    background: none;
    border: 1px solid #ffffff;
}

/* Features derecha */
.dbhomefeatures_right {
    flex: 1 1 0;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}

.dbhomefeatures_right .dbhomefeatures_feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #C1FF63;
    font-size: 1.09rem;
}

.dbhomefeatures_right .dbhomefeatures_feature_text p {
    margin-bottom: 20px !important;
}

.dbhomefeatures_right .dbhomefeatures_feature_text p:last-child {
    margin-bottom: 0 !important;
}

.dbhomefeatures_right .dbhomefeatures_feature_text span {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.dbhomefeatures_right .dbhomefeatures_feature_text,
.dbhomefeatures_right .dbhomefeatures_feature_text p {
    color: #ffffff !important;
    display: flex;
    gap: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .dbhomefeatures .dbhomefeatures_content {
        gap: 40px !important;
    }
}

@media (max-width: 991px) {
    .dbhomefeatures {
        padding: 32px 20px;
    }

    .dbhomefeatures .dbhomefeatures_content {
        flex-direction: column;
        align-items: stretch;
    }

    .dbhomefeatures_img-col {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .dbhomefeatures_img {
        width: 288px;
        height: 288px;
        object-fit: cover;
    }

    .dbhomefeatures_left .btn {
        padding: 12px 24px;
    }
}