/*Base*/
#AC-body
{
    margin: 0;
    padding: 0;
}

#AC-body .showDesktop
{
    display: block;
}

#AC-body .showMobile
{
    display: none;
}

#AC-body .showDesktop-inline
{
    display: inline-block;
}

#AC-body .showMobile-inline
{
    display: none;
}

#AC-body h1, h2, h3, h4, h5, p, a
{
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

#AC-body a:hover, a:focus, a:active, a:visited
{
    text-decoration: none;
    color: inherit;
}

/* Fonts */

@font-face {
    font-family: 'Jovial Sans';
    src: url('../fonts/JovialSans-Regular.eot');
    src: url('../fonts/JovialSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/JovialSans-Regular.woff2') format('woff2'),
        url('../fonts/JovialSans-Regular.woff') format('woff'),
        url('../fonts/JovialSans-Regular.ttf') format('truetype'),
        url('../fonts/JovialSans-Regular.svg#JovialSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face
{
    font-family:'PhosphateSolid';
    src: url('../fonts/PhosphateSolid.eot');
    src: url('../fonts/PhosphateSolid.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PhosphateSolid.woff2') format('woff2'),
    url('../fonts/PhosphateSolid.woff') format('woff'),
    url('../fonts/PhosphateSolid.ttf') format('truetype'),
    url('../fonts/PhosphateSolid.otf') format('opentype'),
    url('../fonts/PhosphateSolid.svg#PhosphateSolid') format('svg');
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FC;
}

.no-padding
{
    padding-left: 0;
    padding-right: 0;
}

.landing-bg
{
	background-color: #0AACD8;
}

.overlay
{
    position: fixed;
    background-color: rgba(0 ,0 , 0, 0.4);
    width: 100vw;
    height: 100vh;
    z-index: 7;
    display: none;
}

.header
{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 8;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
}

.menu-open
{
    display: inline-block;
    cursor: pointer;
    width: 90px;
    padding: 25px;
    text-align: center;
    border-radius: 50px;
    background-color: white;
}

.logo-menu
{
    display: inline-block;
    float: right;
    width: 90px;
    padding: 15px;
    text-align: center;
    border-radius: 50px;
    background-color: white;
}

.landing img
{
    width: 100%;
}

.arrow-landing
{
    position: absolute;
    bottom: 20px;
    text-align: center;
    /*width: 100%;*/
	left: calc(50% - 22px);
}

.arrow-landing img
{
    cursor: pointer;
}

.product-container
{
    padding-top: 100px;
    padding-bottom: 50px;
    margin-top: 30px;
}

#pdr-container1
{
    background-image: url("../assets/desktop/trina-zero.png");
    background-repeat: no-repeat;
    background-position-x: 200px;
	background-position-y: bottom;
	background-size: 45%;
	
}

#pdr-container2
{
    background-image: url("../assets/desktop/trina-mini.png");
    background-repeat: no-repeat;
    background-position-x: 200px;
	background-position-y: bottom;
	background-size: 45%;
}

.product-section
{
    width: 40%;
}

.product-title
{
    font-family: "PhosphateSolid";
    font-size: 20px;
    letter-spacing: 2px;
}

.product-title span
{
    color: #09a8d5;
    font-size: 35px;
    line-height: 40px;
}

.product-text
{
    font-family: "Jovial Sans";
    font-size: 23px;
    line-height: 30px;
    margin-top: 15px;
    letter-spacing: 1px;
}

.product-button-container
{
    margin-top: 30px;
}

.product-button
{
    width: 170px;
    background-color: #09a8d5;
    text-align: center;
    font-family: "PhosphateSolid";
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
    letter-spacing: 2px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.lost-fruit
{
    position: absolute;
}

#fruit-1
{
    right: 65px;
    bottom: 80px;
}

#fruit-1 img
{
    width: 110px;
}

#fruit-2
{
    right: 65px;
    top: 30px;
}

#fruit-2 img
{
    width: 110px;
}

#fruit-3 img
{
    width: 110px;
}

#fruit-3
{
    right: 0px;
    top: 0px;
}

.menu
{
    position: fixed;
    width: 320px;
    left: -1000px;
    height: 100vh;
    z-index: 9;
    background-color: white;
    padding-left: 30px;
    padding-top: 30px;
}

.close-arrow
{
    padding-bottom: 10px;
    display: inline-block;
    cursor: pointer;
}

.big-entry
{
    margin-top: 20px;
    font-family: "PhosphateSolid";
    font-size: 20px;
    line-height: 20px;
    display: inline-block;
}

.big-entry:after
{
    display:block;
    content: '';
    border-bottom: solid 3px #09a8d5;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.big-entry:hover
{
    color: #09a8d5;
}

.big-entry:hover:after
{
    transform: scaleX(1);
    transform-origin:  0% 50%;
}

.sub-entry
{
    margin-top: 20px;
    margin-left: 20px;
    font-family: "PhosphateSolid";
    font-size: 20px;
    line-height: 20px;
}

.sub-entry a
{
    display: inline-block;
}

.sub-entry a:after
{
    display:block;
    content: '';
    border-bottom: solid 3px #09a8d5;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.sub-entry a:hover
{
    color: #09a8d5 !important;
}

.sub-entry a:hover:after
{
    transform: scaleX(1);
    transform-origin:  0% 50%;
}

.menu-bottom
{
    position: absolute;
    bottom: 30px;
}

.social-icons
{
    margin-bottom: 5px;
}

#facebook
{
    background-image: url(../assets/desktop/facebook.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: inline-block;
    background-position: center center;
}

#yt
{
    background-image: url(../assets/desktop/youtube.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: inline-block;
    background-position: center center;
}

#facebook:hover
{
    background-image: url(../assets/desktop/icon-fb-blue.png);
}

#yt:hover
{
    background-image: url(../assets/desktop/icon-yt-blue.png);
}

.social-icons a
{
    margin-right: 10px;
}

.bottom-entries-container a
{
    font-family: "Jovial Sans";
    font-size: 23px;
    line-height: 50px;
    display: inline-block;
}

.bottom-entries-container a:after
{
    display:block;
    content: '';
    border-bottom: solid 3px #09a8d5;
    transform: scaleX(0);
    margin-top: -10px;
    width: 100%;
    transition: transform 250ms ease-in-out;
    font-family: "Jovial Sans";
}

.bottom-entries-container a:hover
{
    color: #09a8d5 !important;
}

.bottom-entries-container a:hover:after
{
    transform: scaleX(1);
    transform-origin:  0% 50%;
}


.slider-title
{
    margin-top: 80px;
    text-align: center;
    font-family: "PhosphateSolid";
    font-size: 20px;
}

.slider-title span
{
    color: #09a8d5;
    font-size: 70px;
    line-height: 60px;
}

.product-slider-container
{
    margin-top: 40px;
}

.img-product-slider img
{
    width: 70%;
	margin: 0 auto;
}

.title-product-slider
{
    text-align: center;
    font-family: "Jovial Sans";
    font-size: 30px;
}

.arrow-left
{
    position: absolute;
    top: 50%;
    left: 5px;
    z-index: 3;
    cursor: pointer;
    display: block !important;
    width: 60px;
    background-color: orange;
    text-align: center;
    border-radius: 50px;
    padding: 10px;
}

.arrow-right
{
    position: absolute;
    top: 50%;
    right: -50px;
    z-index: 3;
    cursor: pointer;
    display: block !important;
    width: 60px;
    background-color: orange;
    text-align: center;
    border-radius: 50px;
    padding: 10px;
}

.product-button-slider
{
    width: 170px;
    background-color: #09a8d5;
    text-align: center;
    font-family: "PhosphateSolid";
    color: white;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
    letter-spacing: 2px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.scroll-to-top {
	float:right;
	}

.arrow-scroll-up
{
    /*position: absolute;*/
    right: 0;
    /*bottom: -30px;*/
    background-color: #FF9300;
    border-radius: 30px;
    padding: 5px;
    cursor: pointer;
	margin-right: 10px;
}

.arrow-scroll-up img
{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.footer
{
    margin-top: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #FF9300;
    text-align: center;
    color: white;
    font-family: "Jovial Sans";
    font-size: 23px;
}

.footer a
{
    margin-left: 30px;
    margin-right: 30px;
}

/* Gamas */
.gama-container
{
    padding-top: 60px;
    padding-bottom: 40px;
    text-align: center;
    height: 100%;
}

#zero-laranja
{
    background-color: #FF9300;
}

#zero-limao
{
    background-color: #FFE500;
}

#zero-maca
{
    background-color: #7BC72F;
}

#lost-image
{
    background-color: #FFFFFF;
}

#mini-laranja-zero
{
    background-color: white;
}

#gama-limao-zero
{
    background-color: white;
}

#gama-maca-zero
{
    background-color: white;
}

#gama-tropical
{
    background-color: #F85F1B;
}

.gama-final
{
    text-align: center;
    background-color: #0AACD8;
    height: 100%;
}

.back-arrow
{
    margin-left: 13px;
    width: 58px;
    padding: 10px;
    background-color: white;
    border-radius: 50px;
    text-align: center;
    margin-top: 20px;
}

.gama-s-title
{
    font-family: "PhosphateSolid";
    font-size: 20px;
}

.gama-l-title
{
    font-family: "PhosphateSolid";
    font-size: 50px;
    line-height: 50px;
}

.gama-text
{
    padding-left: 80px;
    padding-right: 80px;
    font-family: "Jovial Sans";
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 30px;
    min-height: 60px;
}

.gama-button-container
{
    margin-top: 30px;
}

.gama-button
{
    width: 170px;
    background-color: white;
    color: #00A0D9;
    border-radius: 30px;
    font-family: "PhosphateSolid";
    line-height: 15px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    padding-top: 4px;
    padding-bottom: 4px;
    transition: all 0.2s;
}

#footer-gamas
{
    margin-top: 0;
}

.scroll-up-gamas
{
    right: 40px;
    bottom: 40px;
	position: absolute;
}

.tabela-container
{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: white;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 20px;
    display: none;
    padding-left: 15px;
    padding-right: 15px;
}

.table
{
    height: 100%;
    text-align: left;
    font-family: "Jovial Sans";
    font-size: 20px;
    letter-spacing: 2px;
}

.table td
{
    vertical-align: middle !important;
}

.table th
{
    vertical-align: middle !important;
}

.table-bordered
{
    border: none;
}

.no-border-top
{
    border-top: none !important;
}

.no-border-bottom
{
    border-bottom: none !important;
}

.no-border-left
{
    border-left: none !important;
}

.no-border-right
{
    border-right: none !important;
}

.no-border
{
    border: none !important;
}

.table-spacing
{
    padding-left: 25px !important;
}

.table span
{
    color: #00A0D9;
}

.close-tabela
{
    position: absolute;
    right: 40px;
    top: 30px;
    cursor: pointer;
}

#lost-image img
    {
        width: 100%;
		padding-top: 75px;
    }

/* End Gamas */

/* Effects */
.product-button:hover,
.product-button:focus {
    box-shadow: 0 1em 1em -0.4em rgba(0,0,0,0.25);
    transform: translateY(-0.50em);
}

.move-up
{
    transition: all 0.2s;
}

.move-up:hover,
.move-up:focus
{
    box-shadow: 0 1em 1em -0.4em rgba(0,0,0,0.25);
    transform: translateY(-0.50em);
}

.move-down
{
    transition: all 0.2s;
}

.move-down:hover,
.move-down:focus
{
    transform: translateY(0.50em);
}

.gama-button:hover,
.gama-button:focus
{
    box-shadow: 0 1em 1em -0.4em rgba(0,0,0,0.25);
    transform: translateY(-0.50em);
}

.product-button-slider:hover,
.product-button-slider:focus {
    box-shadow: 0 1em 1em -0.4em rgba(0,0,0,0.25);
    transform: translateY(-0.50em);
}

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.5); box-shadow: 0 1em 1em -0.4em rgba(0,0,0,0.25); }

.grow-slide { transition: all .2s ease-in-out; }
.grow-slide:hover { transform: scale(1.1); box-shadow: 0 1em 1em -0.4em rgba(0,0,0,0.25); }

.grow-header { transition: all .2s ease-in-out; }
.grow-header:hover { transform: scale(1.1); box-shadow: 0 1em 1em -0.4em rgba(0,0,0,0.25);}



/* CONTACTE-NOS MODAL */
	
.modal-content
{
	background: rgba(255, 255, 255, 1);	
    font-size: 23px;
    line-height: 30px;
    margin-top: 15px;
    letter-spacing: 1px;
	font-family: 'Jovial Sans';
}

.modal-header {
    display: block;
	padding: 1rem 1rem 0 1rem;
	border:none;
}


.contactmodal label {
    font-weight: normal;
 	font-family: "PhosphateSolid"; 
	font-size: 18px;
	color: #000000;
}

.campos_obrig {
	font-size:20px;
	}

span.obrig {
	font-weight: bold;
	font-size:20px;
	color: #0AACD8;
}

.contactmodal .modal-content{
    border-radius: 10px;
    padding: 10px;	
}

.contactmodal .form-group {
	margin-bottom: 15px;
}

.contactmodal .form-group label{
	width: 100%;
    margin-bottom: .2rem;
}

.contactmodal .form-group input, .contactmodal .form-group textarea{
	border-radius: 5px;
	font-size: 23px;
    line-height: 30px;
    letter-spacing: 1px;
}

.opcao_checkbox {
	font-size:20px;
	margin-bottom: 5px !important;
	}

.contactmodal .form-control {
	border-radius: 0px;
    padding: .15rem .50rem;
}


.contactmodal .modal-title {
 	font-family: "PhosphateSolid"; 
	font-size: 28px;
	color: #0AACD8;
}

.contactmodal .modal_sendbtn {
    border: none;
	
}

#aceitotermos, #aceitocomunicacoes {
	width: auto;
	display: inline;
	}


.contactmodal .submit_container {
	text-align: right;
	margin-top: 10px;
}

.contactmodal #success_message {
	width:100%; height:100%; display:none; 
}

.contactmodal #error_message {
	width:100%; height:100%; display:none; 
}

.contacto_click {
	
	cursor: pointer;
	} 
	
@media (max-width: 950px) {
	.contactmodal .submit_container {
		text-align: left;
		}
}

/* End CONTACTE-NOS MODAL */

/* End Effects */

/* Media Queries */
@media(max-width: 1350px)
{
    .gama-final img
    {
        width: 500px;
    }

    .gama-final
    {
        padding-top: 60px;
    }

    #lost-image
    {
        padding-top: 75px;
    }

    #lost-image img
    {
        width: 100%;
		padding-top: 100px;
    }
}

@media(max-width: 1250px)
{
    .arrow-right
    {
        right: -10px;
    }
}
@media (max-width: 1199px)
{
    #pdr-container1
    {
        background-image: url("../assets/desktop/trina-zero.png");
        background-repeat: no-repeat;
        background-position-x: 135px;
		background-position-y: bottom;
		background-size: 60%;
    }

    #pdr-container2
    {
        background-image: url("../assets/desktop/trina-mini.png");
        background-repeat: no-repeat;
        background-position-x: 135px;
		background-position-y: bottom;
		background-size: 60%;
    }

    #fruit-1 img
    {
        width: 90px;
    }
	
	#fruit-2 {
		top: 70px;
	}
    #fruit-2 img
    {
        width: 90px;
    }
}

@media (max-width: 1176px)
{
    .gama-final
    {
        padding-top: 80px;
    }
}

@media (max-width: 1005px)
{
    .gama-final img
    {
        width: 350px;
    }

    .gama-final
    {
        padding-top: 130px;
    }

    #lost-image
    {
       padding-top: 110px;
    }

    #lost-image img
    {
       width: 100%;
    }
}

@media (max-width: 991px)
{
    .product-container
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .product-text
    {
        font-size: 21px;
    }

    .product-title
    {
        font-size: 18px;
    }

    .product-title span
    {
        font-size: 25px;
    }

    .product-button
    {
        width: 100%;
    }

    #pdr-container1
    {
        background-position-x: 132px;
        background-size: 200px;
        background-position-y: 60px;
    }

    #pdr-container2
    {
        background-position-x: 132px;
        background-size: 200px;
        background-position-y: 55px;
    }
	
	.product-section {
    width: 50%;
	}

    #fruit-1 img
    {
        width: 70px;
    }

    #fruit-1
    {
        bottom: 60px;
    }

    #fruit-2 img
    {
        width: 70px;
    }

    #fruit-2
    {
        top: 50px;
    }

    .slider-title
    {
        font-size: 18px;
    }

    .product-button-slider
    {
        width: 70%;
    }

    .arrow-right
    {
        right: -20px;
    }

    .gama-image img
    {
        width: 350px;
    }
}

@media (max-width: 860px)
{
    .table
    {
        font-size: 18px;
    }
}

@media (max-width: 767px)
{
    #AC-body .showDesktop
    {
        display: none;
    }

    #AC-body .showMobile
    {
        display: block;
    }

    #AC-body .showDesktop-inline
    {
        display: none;
    }

    #AC-body .showMobile-inline
    {
        display: inline-block;
    }

    .header
    {
        padding-left: 15px;
        padding-right: 15px;
    }

    .menu-open
    {
        width: auto;
        padding: 0;
        background-color: inherit;
        text-align: left;
    }

    .menu-open img
    {
        width: 70px;
    }

    .logo-menu
    {
        width: auto;
        padding: 0;
        background-color: inherit;
    }

    .logo-menu img
    {
        width: 100px;
        margin-top: -13px;
    }

    .menu
    {
        width: 100%;
        left: -100%;
    }

    .sub-entry
    {
        margin-left: 0;
    }

    .big-entry
    {
        line-height: 30px;
        font-size: 30px;
    }
    .sub-entry
    {
        line-height: 30px;
        font-size: 30px;
    }

    .lost-fruit
    {
        display: none;
    }

    .product-container
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .product-section
    {
        width: 50%;
    }

    #pdr-container1
    {
        background-position-x: 100%;
        background-position-y: 50%;
		padding: 40px 0;
    }

    #pdr-container2
    {
        background-position-x: -10%;
        background-position-y: 50%;
		padding: 40px 0;
        float: left;
        width: 100%;
    }

    #pdr-container2 .product-section
    {
        float: right;
    }

    .arrow-left
    {
        left: 13px;
        width: 50px;
    }

    .arrow-left img
    {
        width: 30px;
    }

    .arrow-right
    {
        right: 10px;
        width: 50px;
    }

    .arrow-right img
    {
        width: 30px;
    }

    .arrow-scroll-up
    {
        right: 10px;
        bottom: 10px;
        z-index: 3;
    }

    .table
    {
        font-size: 18px;
    }

    .table td
    {
        padding: 0.50rem;
    }

    .gama-image img
    {
        width: 100%;
        max-width: 400px;
    }

    .gama-final img
    {
        width: 100%;
    }

    .gama-final
    {
        padding-top: 0;
    }

    .gama-text
    {
        padding-left: 15px;
        padding-right: 15px;
    }

    .gama-container
    {
        padding-top: 30px;
    }

    .grow-slide { transition: none; }
    .grow-slide:hover { transform: none }

    .back-arrow
    {
        margin-left: 0;
    }

    #lost-image img
    {
        width: 100%;
    }

    .homepage-scroll-up
    {
        bottom: -40px;
    }

    #lost-image
    {
        padding-top: 10px;
    }
}

@media (max-width: 540px)
{
}

@media(max-width: 360px) and (max-height: 500px)
{
    .big-entry
    {
        font-size: 16px;
        line-height: 16px;
    }

    .sub-entry
    {
        font-size: 16px;
        line-height: 16px;
    }

    .bottom-entries-container a
    {
        font-size: 16px;
        line-height: 16px;
    }

    #facebook
    {
        width: 30px;
        height: 30px;
        background-size: 30px;
    }

    #yt
    {
        width: 30px;
        height: 30px;
        background-size: 30px;
    }

    .gama-container
    {
        padding-top: 50px;
    }

    .table
    {
        font-size: 16px;
    }
}

.carousel-control-prev-icon {
	background-image: url(../assets/desktop/orange-arrow-left.png);
	width: 40px;
	height: 40px;	
	}

.carousel-control-next-icon {
	background-image: url(../assets/desktop/orange-arrow-right.png);
	width: 40px;
	height: 40px;
	}
	
.mini-verao-container {
	background-color:#4EC4E3;
	padding-bottom: 40px;
	padding-top: 40px;
}


.logo-trina-verao {
	text-align: center;	
}

/*	
.minis-trina-verao div div div {
	margin: 0 auto;
	}

@media (max-width: 992px)
{
	.minis-trina-verao img{
	width: 100%;
	}
	
	.hide992 {
	display: none;
	}
}
@media (max-width: 767px)
{
	.minis-trina-verao img{
		max-width: 280px;
	}	
	.minis-trina-verao div div div{
	margin: 0;
	}
	
}
@media (max-width: 575px){
	.logo-trina-verao img {
		max-width: 90%;
		
	}
	.minis-trina-verao img{
		max-width:100%;
	}
	.minis-trina-verao div div div {
	margin: 0 auto;
	}
}

.texto-trina-verao {
	text-align: center;
	font-family: "Jovial Sans";
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 30px;
    min-height: 60px;
	width: 90%;
	margin: 0 auto;
	}
	
*/

.mini-verao-left {
	width: 49%;
	display: inline-block;
	text-align: center;
}

.mini-verao-right {
	width: 49%;
	display: inline-block;
	text-align: center;
}

.texto-trina-verao {
	text-align: center;
	font-family: "Jovial Sans";
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 30px;
    min-height: 60px;
	width: 90%;
	margin: 0 auto;
	}

@media (min-width: 1201px){
	.mini-verao-right {
    padding-right: 200px;
	}
	.mini-verao-left {
    padding-left: 200px;
	}
}

@media (max-width: 1200px){
	.mini-verao-right {
    padding-right: 100px;
	}
	.mini-verao-left {
    padding-left: 100px;
	}
}
@media (max-width: 992px){
	.mini-verao-right {
    padding-right: 0px;
	}
	.mini-verao-left {
    padding-left: 0px;
	}
}
@media (max-width: 767px){
	.mini-verao-right img {
    width: 100%;
	}
	.mini-verao-left img {
    width: 100%;
	}
}
@media (max-width: 575px){
	.logo-trina-verao img {
		max-width: 90%;
		padding-top: 70px;
		
	}
}