@charset "utf-8";
/* CSS Document */

/*------------------------------------------------------------------
[General Stylesheet for Portfolio]

Project:	FAJAR
Version:	1.0
Last change:	Initial RELEASED 
Primary use:	Portfolio
-------------------------------------------------------------------*/



/*  ---------------------------------------------------------------
    general style
    --------------------------------------------------------------- */

/* apply a natural box layout model to all elements  - http://www.paulirish.com/2012/box-sizing-border-box-ftw/*/
*,:after,:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:focus {
    outline: 0;
}

::-moz-focus-inner {
    padding: 0;
    border: 0;
}

body,html {
    width: 100%;
    min-height: 100%;
}

.wrapper {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    padding: 15px 20px;
    box-shadow: 2px 2px 5px #999;
    z-index: 1000;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-icon {
    margin-right: 10px;
    font-size: 24px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        padding: 10px 15px;
        font-size: 14px;
    }

    .whatsapp-icon {
        font-size: 20px;
    }
}


/* Responsivo */
@media (max-width: 768px) {
  .cookieConsentContainer {
    max-width: 90%;
    left: 5%;
    right: 5%;
  }
}